Jul 6, 2001 #1 acin0026 Technical User Feb 5, 2001 12 TH Hello Question 1 In module, how can I write module to run update query that need to pop up parameter dialog box to get data from user? Question 2 How can I write module to run macro? thanks.
Hello Question 1 In module, how can I write module to run update query that need to pop up parameter dialog box to get data from user? Question 2 How can I write module to run macro? thanks.
Jul 8, 2001 #2 ninash Technical User Jul 6, 2001 163 GB 1. I might be getting old but the field you require the input from the user would just have the parameter listed as you would use it normally. 2. include the line DoCmd.RunMacro "Macro1", , "" Where Macro1 is the name of your macro I am not sure if this is at all helpful but if it is let me know Upvote 0 Downvote
1. I might be getting old but the field you require the input from the user would just have the parameter listed as you would use it normally. 2. include the line DoCmd.RunMacro "Macro1", , "" Where Macro1 is the name of your macro I am not sure if this is at all helpful but if it is let me know
Jul 9, 2001 #3 Cagliostro Programmer Sep 13, 2000 4,226 GB Also you can do DoCmd.RunSQL YourTextControlNameFromYourForm John Fill ivfmd@mail.md Upvote 0 Downvote