<< Larry: My notes show this: PROPERTY <comp id> PMAUTO 'True' >>
That property command simply checks or unchecks the "Automatic Pop-Up" check box for the field, which specifies whether the pop-up will appear automatically when the user enters the field (which I don't want, I want the user to have to click the button). However, this code produces the effect I'm after: PROPERTY edtSupervisor PMAUTO 'TRUE' PROPERTY edtSupervisor SET_FOCUS 'TRUE' PROPERTY edtSupervisor PMAUTO 'FALSE' The first command sets the menu to pop-up automatically when the field is entered. The second command enters the field and causes the menu to appear. The third command causes the menu to no longer appear automatically when the user next tabs into the field. But since the second command has already displayed the menu, it stays on the screen. Thanks to your help (and Jan's) I have it working the way I want. -- Larry

