Search results

  1. pbaldy

    how to resolve inconsistent query results

    Try % instead of * as the wildcard.
  2. pbaldy

    Loop gets limited

    I will let @Pat Hartman respond, as it was her code. I just noticed you weren't using it.
  3. pbaldy

    Loop gets limited

    Sure, copy Pat's code.
  4. pbaldy

    Loop gets limited

    Pay attention to Pat's code. She's looping backwards, you're still looping forwards. My gut tells me you'll keep overwriting the same file since strFile never changes, though maybe I'm missing something.
  5. pbaldy

    Hello AccessWorld

    Welcome aboard!
  6. pbaldy

    Hello World - I'm Caroline

    Welcome aboard Caroline! One of my daughters and her husband lived on a boat for a couple of years. Got a little too small when they had their first child. :p
  7. pbaldy

    Connect / Import MariaDB table(s) into Access

    Hopefully Steve replies, I've never worked with MariaDB. My first thought was TransferDatabase to import the tables: https://learn.microsoft.com/en-us/office/vba/api/Access.DoCmd.TransferDatabase Presuming that works, it would be relatively simple to drop/import the table(s) on start up.
  8. pbaldy

    Text Box Middle Alignment

    Welcome. I moved your thread to a more appropriate forum. Note to others, this is cross posted: https://www.accessforums.net/showthread.php?t=89505 https://excelguru.ca/a-message-to-forum-cross-posters/
  9. pbaldy

    "Balls Out"

    That expression is also used in the US, and I've heard of the steam engine self-regulating mechanism as the origin.
  10. pbaldy

    Login Form

    If password is a numeric field try If IsNull(DLookup("userID", "tbluser", "username = '" & Me.txtUserName & "' and password = " & Me.txtPAssword)) Then
  11. pbaldy

    Introduction

    Welcome aboard!
  12. pbaldy

    The Qur'an

    You got it. ;) I unsubscribed after Adam answered and will again after posting this, so forgive me for that. :p I probably fall into the "spiritual but not religious" camp. I don't believe any of the books are "divine", they're written by people trying to understand the unknowable. I simply...
  13. pbaldy

    Solved Multiselect listbox loop showing there isn't data

    If all you want is to see if anything is selected: If ctl.ItemsSelected.Count = 0 Then
  14. pbaldy

    The Qur'an

    Adam, I'm wondering how your priest/preacher/God would feel about your calling people names. Not favorably I'm guessing. You can treat people with respect even if you disagree with them.
  15. pbaldy

    Virtual Reality Headsets - worth the money?

    Will you be able to tolerate taking 4 hours to play instead of 30 minutes? :ROFLMAO:
  16. pbaldy

    Solved Moved to New Computer, New Version of Access Issue with acFormatPDF

    Happy to help! I also mentioned trying that back in post 6. ;)
  17. pbaldy

    Solved Moved to New Computer, New Version of Access Issue with acFormatPDF

    Again, it's not required. See post 14.
  18. pbaldy

    Solved Moved to New Computer, New Version of Access Issue with acFormatPDF

    I create PDF's on this computer all day long, printers below. Can you open the report manually? If so try creating a PDF from print preview.
  19. pbaldy

    DCount

    It would need to be CLng(). ;)
Back
Top Bottom