1. Dead Buttons
- Posted by David Roach <roachd_76 at YAHOO.COM>
Dec 05, 1999
-
Last edited Dec 06, 1999
Also I forgot this in my last post. How would I go about making a button
do nothing until another button is pressed first. I am using winlib3244e.
Thanks again.
2. Re: Dead Buttons
- Posted by "Brian K. Broker" <bkb at CNW.COM>
Dec 05, 1999
-
Last edited Dec 06, 1999
----- Original Message -----
From: "David Roach" <roachd_76 at YAHOO.COM>
Sent: Sunday, December 05, 1999 7:51 PM
Subject: Dead Buttons
> Also I forgot this in my last post. How would I go about making a button
> do nothing until another button is pressed first. I am using winlib3244e.
> Thanks again.
David,
I think the easiest way to go about this using win32lib is to use the
"setEnable" routine. You can even hide the button using the "setVisible"
routine. You can check the status of a control by using "isEnabled" and
"isVisible". Refer to 'Win32Lib.htm' for more details.
As far as your subscripting an atom problem, you might want to look at my
card library I referred you to (privately) to see how I created a sequence
of sequences containing information about each card. When a card is dealt
to a window, another element (a sequence) is added to the "cardInfo"
structure (also a sequence) that contains information about it's value,
location, status, and background.
It may seem confusing to a beginner. You might want to start with some
smaller projects until you get a good feel for how the language works (in
terms of handling sequences).
-- Brian