Events in Visio

T

Tomislav

Hello,

since I am totally new to Visio VBA ( and VBA in general ) I have some
trouble
to handle events here ( my experience is focused mostly on Borland
environments ).

How to create an event in VBA which is triggered when form is loaded ?

Thanks,

Tomislav
 
T

Tomcat

It seems so simple now ...

Thanks


John Marshall said:
Open the form in the VBA environment and press F7 (This will open the
code window). In the right drop down list on the code page, choose
Initialize.

Private Sub UserForm_Initialize()

End Sub

John... Visio MVP

Need stencils or ideas? http://www.mvps.org/visio/3rdparty.htm
Need VBA examples? http://www.mvps.org/visio/VBA.htm
Common Visio Questions http://www.mvps.org/visio/common_questions.htm
Visio Wishlist http://www.mvps.org/visio/wish_list.htm
 
Top