Search results

  1. 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
  2. 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.
  3. 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/
  4. 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.
  5. pbaldy

    Login Form

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

    Introduction

    Welcome aboard!
  7. 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...
  8. 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
  9. 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.
  10. pbaldy

    Virtual Reality Headsets - worth the money?

    Will you be able to tolerate taking 4 hours to play instead of 30 minutes? :ROFLMAO:
  11. 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. ;)
  12. pbaldy

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

    Again, it's not required. See post 14.
  13. 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.
  14. pbaldy

    DCount

    It would need to be CLng(). ;)
  15. pbaldy

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

    Does that path exist, and can you create a file there? Does the report open manually?
  16. pbaldy

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

    No problem, but pay attention to what Josef suggested doing. Also make sure you can manually open the report after the code has run and failed to create a file. The "usual suspects" are either a bad path or illegal file name, or a data problem that prevents the report from opening.
  17. pbaldy

    Virtual Reality Headsets - worth the money?

    I did get it and set it up. It was very frustrating; in real life I normally hit a draw, in the game I kept hitting big monstrous slices. One of the holes that comes with the game had water down the right side, and I struggled to keep it out of the water. I felt like Costner in Tin Cup; hit...
  18. pbaldy

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

    And for clarity, Adobe is not required at all for Access to create a PDF with that code.
  19. pbaldy

    in Ms Access how to make button go to previous form

    I would pass the name of the calling form in OpenArgs and use that to return. Since you didn't post any of your efforts, we can't help fix them. ;)
Back
Top Bottom