Search results for query: *

  1. C

    Where is IsInitializing property?

    Finally some help Hi Tony, Thanks -- that link at least gets to a place that explains a whole lot more than the help files.
  2. C

    Where is IsInitializing property?

    Still missing something OK, I found the InitializeComponent call as suggested. However, the help file says to "Add an IsInitializing property to the form." I examined the form's property window, and there is no property named IsInitializing. Is there some method for adding a property to a...
  3. C

    Where is IsInitializing property?

    Upon converting a VB 6.0 app to VB.net I find several comments warning that an event may fire when the form is initialized. The Help file says to add an IsInitializing property to the form and then set it to True in the form's constructor just prior to the InitializeComponent call. However, I...
  4. C

    VB 6 Conversion Problem

    Thanks for making me look closer at the Open Form calls in my Startup program. I discovered that I had a Me.Close statement just ahead of the call to open the next form. Why it's there I don't know -- I'll have to inspect my original code to see. Anyway, removing the Me.Close statement solved...
  5. C

    VB 6 Conversion Problem

    I upgraded from a Windows based VB 6.0 application and the program opens OK with the Startup form. However, when it attempts to open another form the form doesn't open, exits the run state and displays the code window for the form it was attempting to open. This happens on all forms except one...
Back
Top