Search results

  1. T

    Disable Shift Key Bypass

    Great stuff. Thank you very much!
  2. T

    Disable Shift Key Bypass

    @isladogs - I have not. I'm not familiar with that. What does Ctrl+G do? Also, I tried your code that you provided in your article and it worked beautifully. I was able to reverse the code from another database. Very elegant. Thanks!
  3. T

    Disable Shift Key Bypass

    @June7 - I hide the ribbon, hide the navigation pane and disabled all Access close out buttons. How can I get to the module that contains my function? Can I still get to the VBA editor?
  4. T

    Disable Shift Key Bypass

    Okay. I realize this is probably a stupid question - but how do I get back in after the shift key bypass is disabled? What if I want to turn it off so that I can modify something?
  5. T

    Disable Shift Key Bypass

    Many thanks isladogs!
  6. T

    Disable Shift Key Bypass

    Thank you both very much!
  7. T

    Disable Shift Key Bypass

    I'm trying to disable the Shift Key Bypass functionality. I found the following methodology in an AI website. It seems simple enough but it doesn't work. Can anyone help? I want the autoexec macro to run even if the Shift key is held down. To disable the shift key bypass in Microsoft Access...
  8. T

    Problem with NAME Statement

    Nevermind. I found the issue. There was a problem with my eyesight.
  9. T

    Problem with NAME Statement

    I wrote a procedure to rename a file and place it in a new directory. I am using the NAME statement to do this. I keep getting a "File not found" error on the first record. I tried it with the destination directory being blank. I tried it with the destination directory having the same files as...
  10. T

    Variable Name for Listbox

    Thanks MajP. Works perfectly now!
  11. T

    Variable Name for Listbox

    I'm getting a type mismatch error in the following code on the "Set lstname = txt_CurrentListBox" line. I realize that lstname is an object (listbox) and txt_CurrentListBox is a textbox holding a string so the error makes sense. However, what can I do to use a variable for the listbox name so...
  12. T

    Query Dilemma

    Pat - I wrote you a poem: If you said you were cold, I would wrap my arms around you. If you said you were thirsty, I would give you the ocean blue. I would give you anything: the moon, the stars, the sunset too. This heart in my hands I hold out to you.
  13. T

    Query Dilemma

    Thank you all for your responses. GPGeorge - thanks for the explanation. It seemed to simple to be true.
  14. T

    Query Dilemma

    My mistake. 2/22 is a Saturday. The only reason those queries work is because -2 and +5 are hard coded.
  15. T

    Query Dilemma

    If the date entered is a Monday I would want that date as the "Previous Monday". I don't quite understand that query. There is a dash before Weekday and also a "-2". How could the -2 be hard coded?
  16. T

    Query Dilemma

    The user enters a date on a form: 2/18/2025 I need a query that will calculate the previous Monday and the coming Saturday. The result should look like this: I'm familiar with DatePart and DateAdd but just can't figure out the logic. ANy help will be appreciated.
  17. T

    Table Displayed in Text Box?

    Nevermind. I used a non-proportional font and it solved my problem. Thanks so much for your help!
  18. T

    Table Displayed in Text Box?

    Okay. I guess this is a dumb question but what is a "non-proportional font"?
  19. T

    Table Displayed in Text Box?

    I have a listbox whose rowsource is a table consisting of two columns. Works great. However, the user wants the data to be displayed as text in a text box so that they can copy/paste into a Word document. I already wrote the code to loop through the table and write the table's rows into a text...
  20. T

    You can't hide a control that has the focus

    Yes. I see that now. Thanks everyone!
Back
Top Bottom