Alaska Software Inc. - pushbutton
Username: Password:
AuthorTopic: pushbutton
Xboppushbutton
on Wed, 28 Sep 2005 17:29:29 +0200
How can i get a pushbutton to activate a procedure (do demo) ?
Richard L. Hankins, Jr.
Re: pushbutton
on Wed, 28 Sep 2005 11:19:23 -0500
On Wed, 28 Sep 2005 17:29:29 +0200, Xbop wrote:

> How can i get a pushbutton to activate a procedure (do demo) ?

Look at C:\ALASKA\XPPW32\SOURCE\samples\basics\WINDOWS\Modality.prg

There is a pretty straight forward example there.


- richard hankins

"I've learned that no matter how you try to protect your children,
they will eventually get arrested and end up in the local paper."
Joe Carrick Re: pushbutton
on Wed, 28 Sep 2005 12:04:49 -0700
Xbop wrote:
> How can i get a pushbutton to activate a procedure (do demo) ? 
> 
> 
Use the :activate := {| uNIL1, uNIL2, self | ... }
callback slot.

In your case,

oXbp:activate := { | uNil1, uNil2, self | demo() }

-Joe
XbopRe: pushbutton Thanks
on Thu, 29 Sep 2005 15:36:13 +0200
Thanks

This really helpt me. (i wished the help was this clear)

And sorry about the double post.