M morlan Registered User. Local time Today, 06:51 Joined Apr 23, 2003 Messages 143 Jun 17, 2003 #1 Is it possible to make two events run the same sub routine? eg. Private Sub cmdGo_Click(), txtInfo_Click So if you click the cmdGo button or the cmdInfo button access would run the same routine.
Is it possible to make two events run the same sub routine? eg. Private Sub cmdGo_Click(), txtInfo_Click So if you click the cmdGo button or the cmdInfo button access would run the same routine.
Mile-O Back once again... Local time Today, 06:51 Joined Dec 10, 2002 Messages 11,305 Jun 17, 2003 #2 Like this: Code: Private Sub cmdGo_Click() Call txtInfo_Click End Sub