Search results

  1. D

    Code doesn't work without MsgBox

    Your suggestion about SendKeys was right on point--I commented both it and the MsgBox out, and now the code is working without the stop for the MsgBox. Thanks! Hank
  2. D

    Code doesn't work without MsgBox

    You take out the MsgBox, and the code doesn't work. I'll give a try at removing the SendKeys, and see what that does. Hank
  3. D

    Code doesn't work without MsgBox

    The Sendkeys command was a first attempt at hiding the navigation pane. It causes the pane to close. I really need to delete it, but it wasn't hurting anything, so I've left it in. Hank
  4. D

    Code doesn't work without MsgBox

    I have some code in a module that will not work UNLESS I put in a MsgBox just before the code that's running. This is the code: Private Sub Form_Open(Cancel As Integer) SendKeys "{F11}" MsgBox "Welcome to the Request Tracker", , "Request Tracker" 'select the navigation pane...
Top Bottom