View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
[email protected] paul.robinson@it-tallaght.ie is offline
external usenet poster
 
Posts: 789
Default Running UserForm1 routines from UserForm 2

Hi
In a normal code module have

Public mysub(parameterlist)
'stuff
End Sub

For each Userform simply do

Sub userform1_initialize() 'or whatever
Call mysub parameterlist
End sub

regards
Paul

Userform1 might
On Feb 12, 8:41*pm, chuckm wrote:
Hi,
I have 2 userforms. * *Userform1 works great and now I'm creating
userform2. * In userform 2 I'd like to call a couple of the routines
from Userform1. * * * Is this possible? *and if yes, how should I
approach it.
Thanks
Chuck