A Stupid Question

  • Thread starter Thread starter DavidW
  • Start date Start date
D

DavidW

Can you deifne your own procedure(if that is the right word)

Private Sub Form_Current() is the default

can it be made to work as and will it work as
Private Sub Form_Current(Cancel as Integrer)
if so how do you do that?

or am I barking up the wrong tree?
 
Hi,
Not sure what you're asking. You can create your own Sub Routines and functions.
In your example, you have chosen an event, which is a sub that is called when a particular
message is sent by Windows to a form.
So, are you asking whether you can create an event or a sub that *you* will call elsewhere
in your code?
 
Back
Top