I have a form that must display a lengthy Security Message prior to the user logging into the application. The form has an editbox, set to transparent, where the text message is displayed; an OK button to use to exit the form, and a Warning icon. The form's Show Window property is set as "Top-level form", the Window Type property is set to "Modeless", and the Border Style is "Fixed Single". This form is basically just mimicking a very large messagebox. I couldn't use a Messagebox() because the string length limitation chopped off the last two sentences.
This form is displayed during the beginning stage of the main startup program. It instantiates, but then closes immediately, way too fast before the user has a chance to select the OK button to close the form. I can't wait until the READ EVENTS occurs because by then the whole application has been instantiated, with user logged in and everything. I have tried using a timer class but that put the mouse cursor into an "hour glass" wait state and the Ok button never became active. I may be doing something way wrong here but I am not figuring it out. Any ideas?
Thanks
This form is displayed during the beginning stage of the main startup program. It instantiates, but then closes immediately, way too fast before the user has a chance to select the OK button to close the form. I can't wait until the READ EVENTS occurs because by then the whole application has been instantiated, with user logged in and everything. I have tried using a timer class but that put the mouse cursor into an "hour glass" wait state and the Ok button never became active. I may be doing something way wrong here but I am not figuring it out. Any ideas?
Thanks