Open the Immediate Window

  • Thread starter Thread starter Ross
  • Start date Start date
R

Ross

Please help:

1. How can I open the immediate window using vba (Alt G) so that when I
open a module, the immediate window is already open?

2. How can I move focus to the "Modules" window with vba?

3. How can I open a specific module in design mode (ie modProcedures)
using VBA?
 
1. How can I open the immediate window using vba (Alt G) so that when I
open a module, the immediate window is already open?

DoCmd.RunCommand acCmdDebugWindow
 
Back
Top