The module is a separate Access object. Like you have tables, queries, forms, macros, I've created a module.
To simplify things, say it does the following:
Private Sub modUpdateTables()
msgbox "hello world!"
End Sub
I have a button that I would like to call this from
Private Sub Command_Click()
'Here I would like to call modUpdateTables to execute it, but nothing seems to work.
'I've tried GoSub modUpdateTables????
'Call modUpdateTables?????
'GoTo modUpdateTables????
'None of these commands work
End Sub
Any ideas? Hope that makes sense.
Any ideas.