I have created form dynamically in VBA. The below query will create the form with MouseupEvent.But it doesnt contain any code inside the event. I want to know how to insert VBA code for this particular event. Do we need to use any Modules or Functions or Macro ??
Set frm = CreateForm()
frm.AllowAdditions = False
frm.AllowDeletions = False
frm.AllowEdits = False
frm.OnMouseUp = "[Event Procedure]"
Waiting for your valuable response...
Set frm = CreateForm()
frm.AllowAdditions = False
frm.AllowDeletions = False
frm.AllowEdits = False
frm.OnMouseUp = "[Event Procedure]"
Waiting for your valuable response...