Open the Immediate Window

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?
 
S

Stuart McCall

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
 
Top