P Pass-the-Reality Mar 25, 2009 #1 In VB Code, how do you write a command that says run Macro named SubmitRequest.
B Bryan Mar 25, 2009 #2 Reality - DoCmd.RunMacro "YourMacroName" Check RunMacro in the Help file for details. Bryan..
D dmills Mar 25, 2009 #3 Pass-the-Reality said: In VB Code, how do you write a command that says run Macro named SubmitRequest. Click to expand... Try this: Dim SubmitRequest As String SubmitRequest = "Processdata" DoCmd.RunMacro SubmitRequest
Pass-the-Reality said: In VB Code, how do you write a command that says run Macro named SubmitRequest. Click to expand... Try this: Dim SubmitRequest As String SubmitRequest = "Processdata" DoCmd.RunMacro SubmitRequest