snw1969
Member
- Joined
- Dec 19, 2008
- Messages
- 9
- Programming Experience
- 10+
I'm running into an issue with a form being called programmatically. The scenario is as follows:
My app listens to events being generated from a remote server. When the remote server fires an event my app captures the event message and makes an asynchronous call to a function that parses out the message. If the message has particular data contained in it, then it pops up a form with that data for the user sitting in a call center to view.
The issue that I am running into is that the form being called, once it displays on the desktop with the information is unresponsive. I can't modify the data, I can't close the window, I can't do anything with it. So I'm not sure how to go about resolving this.
My instinct tells me that because the form is being called from within the asynchronous function, it is holding on to the form somehow and not releasing it back to the user and therefore they can't do anything with it.
Now, I can move the form around the screen, but then it gets the "Not Responding" in the title bar...
Any ideas?
Thanks,
Shawn
(Also, I forgot to mention - this is not an MDI application)
My app listens to events being generated from a remote server. When the remote server fires an event my app captures the event message and makes an asynchronous call to a function that parses out the message. If the message has particular data contained in it, then it pops up a form with that data for the user sitting in a call center to view.
The issue that I am running into is that the form being called, once it displays on the desktop with the information is unresponsive. I can't modify the data, I can't close the window, I can't do anything with it. So I'm not sure how to go about resolving this.
My instinct tells me that because the form is being called from within the asynchronous function, it is holding on to the form somehow and not releasing it back to the user and therefore they can't do anything with it.
Now, I can move the form around the screen, but then it gets the "Not Responding" in the title bar...
Any ideas?
Thanks,
Shawn
(Also, I forgot to mention - this is not an MDI application)
Last edited: