Recent content by hooolagon

  1. H

    How to create a button which mimics a keyboard key

    Also should I use vbNullString where you have "", I read somewhere "" uses like 6 bytes of RAM and is only helpful when ""Thee API"" doesnt support vbNullString (equivalent to C# NULL) idk.
  2. H

    How to create a button which mimics a keyboard key

    Wow, awesome, thank you.. I figured I didn't need to mimic the keyboard up arrow, as I could just run a command to navigate my form table (I used acCmdRecordGoTo) and you can laugh at how I managed to solve my second riddle, compared to yours Dim boxasstring As String Dim boxoption1...
  3. H

    How to create a button which mimics a keyboard key

    And similarly an easier obstacle... How to enter numbers into a textbox sequentially with buttons on the form representing numbers 1-9 and 0 I will begin my research and get back if I find anything first. Cheers
  4. H

    How to create a button which mimics a keyboard key

    I want to place 4 buttons on my form, with an on click event which basically presses an arrow key. One button for each arrow. SendKeys doesn't work, and vbKeyUp/vbKeyLeft/vbKeyDown dont seem to run when I Call them.................. Thanks
  5. H

    Repeat Subform last field entry x amount of times using command button

    Thank you, took me a while to understand your genius and implement it! Much appreciated
  6. H

    Repeat Subform last field entry x amount of times using command button

    Okay so I have a "table1" and a "table2". Table1 has a primary key autonumber which is one to many into table2, a date and a type field which has two defined lookup options. table2 only has the primary key from table1 as a number input and an ID field which is linked to table3 which contains the...
Top Bottom