HI,
On my VB form, i have a command button for which i want that whenever it is clicked, i should call a module. How do i do that?
Printable View
HI,
On my VB form, i have a command button for which i want that whenever it is clicked, i should call a module. How do i do that?
in the development environment double click on the command button. Then you should get something like this
private Sub Command1_Click()
call yourmodulenamehere
End sub