Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Calling a procedure 2

Status
Not open for further replies.

progressiverookie

Technical User
Apr 28, 2004
16
US
I presume this is a easy fix, but not for me! I am trying call a procdure that I have in a module when I open a form. How do I finish the code?

**********Start Code**********
Private Sub Form_Open(Cancel As Integer)

Call ReSizeForm ' Where do I go from here?

End Sub
***********End Code***********

Thanks
 
Either:
Call ReSizeForm(list of parameters)
Or if no expected parameter:
ReSizeForm

Hope This Help, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
A big part of the answer depends on what the procedure ReSizeForm is supposed to do, and where it's defined.

Good Luck
--------------
As a circle of light increases so does the circumference of darkness around it. - Albert Einstein
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top