Recent content by cheekybuddha

  1. cheekybuddha

    Solved Functionality differences between .accdb and .accde

    Have you been auto-correcupted, Ridders? I guess it should read 'twips' ?
  2. cheekybuddha

    Solved Stub method is giving me issues

    Out of curiosity, what is your purpose in populating a dictionary with table data here?
  3. cheekybuddha

    Solved Highlighting Next Record After Current Record Filtered Out of Datasheet

    You're going a bit off topic here, but I think Daniel's entitled to his opinion.
  4. cheekybuddha

    Solved Highlighting Next Record After Current Record Filtered Out of Datasheet

    Interesting. Frank talked a lot about using it for the BE, but perhaps he was looking to implement it. Shame UA is no more, he asked a lot of questions about it there.
  5. cheekybuddha

    Solved Highlighting Next Record After Current Record Filtered Out of Datasheet

    Is it still using a postgres backend?
  6. cheekybuddha

    Solved Highlighting Next Record After Current Record Filtered Out of Datasheet

    This UI looks familiar. Is that you, Frank?
  7. cheekybuddha

    Data type mismatch in criteria expression for opening a recordset

    As per pbaldy, if LDOW is really a datetime datatype, then try: Set rs = CurrentDb.OpenRecordset("SELECT TOP 1 LDOW FROM qryWeeklyForecast WHERE LDOW=" & Format(Me.LDOW, "\#yyyy\-mm\-dd\#"), dbOpenSnapshot)
  8. cheekybuddha

    Leveraging ChatGPT for Incremental Development in Microsoft Access with John W Colby

    That title was definitely generated by ChatGPT! :ROFLMAO:
  9. cheekybuddha

    Solved Connection String mysterious Trim

    Try again, with the following adjustment: ' ... strStep = "2. Set Target Database" strNewConnectString = "ODBC;Provider=MSDASQL;Driver={SQL Server};Server=IPAddress;DATABASE=dBName;UID=dBSa;PWD=dBPassword;APP=Microsoft Office;" ' Example for Access database" '...
  10. cheekybuddha

    Solved Connection String mysterious Trim

    When you query the connection string (eg Debug.Print tdf.Connect) VBA will not reveal the user and password to you, but it will have cached the values and apply them when you use the connection. This is for security, so it is more difficult for users to discover the connection credentials...
  11. cheekybuddha

    Clear out data

    Welcome to AWF
  12. cheekybuddha

    Conditional Formatting

    @xavier.batlle 's suggestion in Post #3 will not work either (both "#1" and "#2" will be returned since they satisfy the other half of the expression)- @XPS35 has the solution in Post #6. @DHookom provides the cleanest solution in Post #4 Your options are: ([NewLineDesc] = "#1" Or...
  13. cheekybuddha

    Import Text Files without .txt extension, Update Access Text Registry

    .bat != .dat All the .dat files I ever came across used to be some form of binary encoded files, not plain text files
  14. cheekybuddha

    Copy strPath to clipboard

    Haha, it looks like I probably found it from Daniel Pineault's site linked by Tom in post#2! I had better add an attribution to my code library 😬
Back
Top Bottom