What is the best way to create events and put them in the queue for
processing by a specific component.  For example:

class dialog : _Dialog (Button, DropDown, ...)
        method handle_Button(ev)
                # do something when button pushed
        end

        ...

        method handle_DropDown(ev)
                # get value selected from drop-down list
                # if a certain value, manipulate some data and simulate a button push
                #       by creating a button push event
                simev := ...            # create a push button event
                # call the Button handler
                handle_Button(simev)
                ...
        end

        ...

end


Any suggestions?

Regards,

Dan Boulet
[EMAIL PROTECTED]


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.713 / Virus Database: 469 - Release Date: 2004-06-30




-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
_______________________________________________
Unicon-group mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unicon-group

Reply via email to