Results 1 to 2 of 2

Thread: Goto a different sub

  1. #1

    Thread Starter
    Frenzied Member TomGibbons's Avatar
    Join Date
    Feb 2002
    Location
    San Diego, CA Previous Location: UK
    Posts
    1,345

    Goto a different sub

    Does anyone know how to tell my program to go to a different sub once one has finished?

  2. #2
    Guru Aaron Young's Avatar
    Join Date
    Jun 1999
    Location
    Red Wing, MN, USA
    Posts
    2,177
    Just call it by name, i.e.
    VB Code:
    1. Private Sub Command1_Click()
    2.     Call MyFirstSub
    3.     Call MySecondSub
    4.     ' Etc..
    5. End Sub

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width