Search results for query: *

  1. B

    How can I diasble user interaction until background processing complete?

    i agree that i could 'throw away' the gotFocus but having to handle it in the first place means that the user has moved within the windows form and is now not in step with the unix app, even if unix has ended-up where the user originally intended. I have looked at doing something similar to...
  2. B

    How can I diasble user interaction until background processing complete?

    the thing is i need to stop the user actually moving to another windows control, otherwise it'll fire another gotFocus event, which my app will attempt to handle, possibly while it's still talking to unix to get it in step. it seems to be far easier to stop the gotFocus ever being triggered...
  3. B

    How can I diasble user interaction until background processing complete?

    I am writing a screen-scraping app using some third-party VT/Telnet classes, which aims to drive a unix green-screen app as if the user were typing directly into it. I react to gotFocus events on my windows form controls, which triggers data to be sent to unix, possibly in several bursts. I...
Back
Top