Help with Help

V

Victoria

greetings

I am quite new at code but finding this forum most helpful.

Is there a more extensive VBA Help file that can be loaded into Access? I
frequently get error messages like the one shown below, but am greeted with a
blank window when I click the Help Button. What's up with that?

---------------------------------------------------------------------------------
Microsoft Visual Basic
Runtime error 2164. You can't disable a control while it has the focus.

(Buttons) End Debug Help
---------------------------------------------------------------------------------
 
D

Damian S

Hi Victoria,

I generally use forums, google or support.microsoft.com for help when I need
it.

The specific message you quoted is self-explanatory. You can't disable a
control that has the focus, so use me.SOMEOTHERCONTROL.setfocus first then
disable your control.

Damian.
 
Top