Recent content by JasperK

  1. J

    Disable 'Display all tables' when designing a form - MS Access 2007

    Hi all, Is there a possibility to disable the feature 'Display all tables' when designing a form? Every time i open a form in design mode, access is accessing all tables (around 700 tables). This takes about a minute every time I open the form in design mode. There is a possibility to click...
  2. J

    Access 2007 - Navigation Pane Is Locked. Please help.

    I had just the same problem. When this happens, just press F11 and you can resize it again. Greets Jasper
  3. J

    Cancel keydown event when editing textbox

    No problem! Your last post is what i meant! The edit mode can be captured by pressing the F2 button and the left mouse button in the textbox. Thanks jal!
  4. J

    Cancel keydown event when editing textbox

    No i am sorry, this is not what i meant. Back to the example: I have a textbox named TextBox2. On the keydown event i have : Private Sub TextBox2_KeyDown(KeyCode As Integer, Shift As Integer) if keycode = 39 then Textbox1.setfocus end if End Sub When that textbox has the focus, and i...
  5. J

    Cancel keydown event when editing textbox

    Hi all, Like it says in the topic, i want to cancel a keydown event when i am editing a textbox, but not when a textbox has the focus. For example: Private Sub TextBox2_KeyDown(KeyCode As Integer, Shift As Integer) if keycode = 39 then Textbox1.setfocus end if End Sub In...
  6. J

    Get the name of current control

    Thanks! That's it! Marvellous!!
  7. J

    Get the name of current control

    Can somebody tell me how i can get the name of the current control?! For example, on a form with a textfield with the name Text1: Private sub Text1_Afterupdate() Msgbox Text1.name End sub Only now i want to also to work with Text2. It is possible to do the same als in the text1 example, but...
Back
Top Bottom