Form_Load() alternative?

  • Thread starter Thread starter Kevin Lo
  • Start date Start date
K

Kevin Lo

I'm designing a custom address list form that will display
a web page as well as the basic address information. What
subroutine can I call from the code view that will allow
me to bring up a web page based on the user's name? I have
a button I can press that will do just that, but I would
rather have the form trigger the code automatically every
time it's opened. Using a form_load() sub doesn't seem to
work.

Thanks!
 
Try the VisibleChanged event, or the Activated Event

Check (Form.Visible = True) in each case.
 
Back
Top