What is the Open Event for a Windows Form?

  • Thread starter Thread starter Frank Reichenbacher
  • Start date Start date
F

Frank Reichenbacher

I'm using VB.NET to develop a small app that I originally did in MS Access
VB. I can't figure out what events are triggered as a form opens and
populates its controls? I see Activate, but that does not seem to be what I
want.

Frank
 
Hi,

The form first starts with the new procedure. New calls
initializecomponent which adds the controls to the form and set there
properties. Then the load event is fired.

Ken
--------------------------
I'm using VB.NET to develop a small app that I originally did in MS Access
VB. I can't figure out what events are triggered as a form opens and
populates its controls? I see Activate, but that does not seem to be what I
want.

Frank
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top