Search results

  1. T

    AcChess

    Did you mean to include the BE in your attachments? There is also a reference to "C:\Temp\SquareClickHandlers.txt" in the code. Don't know how important that is.
  2. T

    Query optimization: Why does Access use temporary index instead of index or rushmore for a JOIN query with SUM?

    I chalk this up to "Access does this in its infinite wisdom". The query engine is written to handle all queries, and the optimizer is quite limited. The result will be sometimes remarkably good performance, sometimes remarkably bad. I don't see how you can rewrite your SQL better. It is too...
  3. T

    Control Tip Text flashing

    I see your behavior, no matter the refresh rate (between 75.03 and 29.98). Personally, I blame the Philips drivers, which just don't perform very well at the extremes. I do not consider this an Access issue, but a hardware/driver issue.
  4. T

    Control Tip Text flashing

    Better!
  5. T

    Control Tip Text flashing

    I have a similar display setup, but the zip file link in #12 generates a 404 error for me.
  6. T

    Access web automation stopped working - field won't fill in

    Does it still work interactively? Web sites sometimes change. For example, 'user_login' may have been renamed. Inspect the web page's source code. They could also have added protection against automatic logins.
  7. T

    New member introduction for Peter

    Welcome here! A complicated business model, but good for you helping those who cannot help themselves.
  8. T

    Crosstab query that uses Form field as criteria

    if myField occurs on several forms, this syntax can be used: Form.myField
  9. T

    Access object inventory system that can find derelict objects?

    For years I was jealous of Duane to know so many friends...
  10. T

    Solved Encapsulate Function In A Class For Command Bar

    Your desired syntax "clsName.FunctionName" only works with static classes, which have Attribute VB_PredeclaredId = True in the header. See also this. Public methods then are available throughout the rest of the code.
  11. T

    Introduce myself

    Nice to see you here, Jeff.
  12. T

    syntax error with null values

    Change this: strSql2 = StringFormatSQL("INSERT INTO tblCheckTran(TPayment, TReceipt, TranMemo, fTransactionID)" & _ " VALUES ({5}, {6}, {7}, {8});", TPay, TRec, TMmo, ID2) to this: strSql2 = StringFormatSQL("INSERT INTO tblCheckTran(TPayment, TReceipt, TranMemo, fTransactionID)" & _...
  13. T

    syntax error with null values

    INSERT INTO tblCheckTran(TPayment, TReceipt, TranMemo, fTransactionID) VALUES ({5}, {6}, {7}, {8}); The numbers need to start with 0. You're starting with 5. I am not sure about the GUID formatting. The StringFormatSQL function may need to be updated to apply special formatting for this data type.
  14. T

    syntax error with null values

    BuildCriteria comes with its own set of issues. Example: ?BuildCriteria("url", DAO.DataTypeEnum.dbText, "www.microsoft.com") url=[www].[microsoft].[com]
  15. T

    syntax error with null values

    Yes, they are the placeholders that get filled by the arguments provided, in the same order. Check the comments of the StringFormatSQL and StringFormat functions. Also, review this YouTube video, starting at 35:30:
  16. T

    syntax error with null values

    If the Num field is Null, you should store Null in the table. It is a nullable field, right? You have a second issue: the date parameter is not decorated with #. May I suggest you use modStrings from the Northwind 2 Developer Edition? It has a handy dandy function for you that takes the...
  17. T

    Have results split into two colums

    I'm trying to say that it cannot be decided which of these is correct: A14212 19/06/2025 111 444242 5 --- 1 A14212 19/06/2025 111 444242 9 --- 2 or A14212 19/06/2025 111 444242 5 --- 2 A14212 19/06/2025 111 444242 9 --- 1 Maybe the OP does not care. That would then be the additional rule.
  18. T

    Have results split into two colums

    I think this ranking is dangerous. The example data is unordered (as all table data is), so it is impossible to assign rank 1 and 2 to the first two rows without an additional rule.
  19. T

    Is there a way of deleting all code lines beginning with debug.print across all modules using VBA?

    There are some tools that can do this, such as MZ-Tools. In lieu of that, you can do a find and replace of "Debug.Print", and change it to "'Debug.Print" (note the single quote to introduce a comment)
  20. T

    40K crashing Long Integer data type

    That value is not making it crash, but likely something related to it. You speak about Stack Overflow. Is there VBA code involved here, presumably behind a form that is bound to this table? As a test, comment out all VBA, and Repair and Compact the app. Still a crash? If yes, what if you have...
Back
Top Bottom