Form Open vs Form Load

smig

Registered User.
Local time
Today, 23:02
Joined
Nov 25, 2009
Messages
2,209
What is the difference between these two ?
Which one run first ?


Thank you
Tal
 
Put a breakpoint in both events, the you'll know which one are trigged first.
 
I used this reference when I wanted to know the answer
 
the thing about the open event is that it is cancellable.

you can put some tests in there and decide not to open the form, which will give you a 2501 error.

once you "pass" the open event, then the form will open.


otherwise, there is no difference between the open and load events, I think.
 
the thing about the open event is that it is cancellable.

you can put some tests in there and decide not to open the form, which will give you a 2501 error.

once you "pass" the open event, then the form will open.


otherwise, there is no difference between the open and load events, I think.
This can be an important issue

Thank you,
Tal
 

Users who are viewing this thread

Back
Top Bottom