Search results

  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

    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...
  3. 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