How do I handle modeless dialog events?
-
If I create several modeless dialogs, how do I keep track of what happens in each one of them? I couldn't find much information on this subject, so I'd really appreciate any help! Does anyone know some good links or samples on modeless dialogs? Thanks in advance!
-
If I create several modeless dialogs, how do I keep track of what happens in each one of them? I couldn't find much information on this subject, so I'd really appreciate any help! Does anyone know some good links or samples on modeless dialogs? Thanks in advance!
Could you give a little more info on what you are trying to do ? The message handling routines work the same, whether in Modal or Modeless. Are you having problems communicating data between the various modeless dialogs that you have set up ?
-
Could you give a little more info on what you are trying to do ? The message handling routines work the same, whether in Modal or Modeless. Are you having problems communicating data between the various modeless dialogs that you have set up ?
I don't know how to refer to a certain (open) modeless dialog from my program's MainFrame, where I create them. I would like to implement reference to a modeless dialog by checking the dialog's caption and then specifying whether or not the message was supposed to be sent to that dialog. This raises a question: Is there a useful function that I could use to check all open dialogs (and their captions)? If there isn't such a function, is there another way of knowing which (modeless) dialog is supposed to receive the message? I don't have to communicate between my program's various modeless dialogs, just send data to them.