Recent content by cheekybuddha

  1. cheekybuddha

    A simple HTML editor to work in the edge browser

    Yes, but why are you doing it? What benefit to you is obfuscating this code, especially as it's likely mainly based off publicly available code scraped by an ai?
  2. cheekybuddha

    Solved Where string

    Try the following queries in the query builder to see if they produce different results: SELECT t.TransactionID, t.fAccountID, t.AccountName, t.CkDate, n.FullName, t.Cleared, t.Debit, t.Credit FROM qryCkTransaction t LEFT JOIN tblNames n ON n.NameID = t.fNameID WHERE...
  3. cheekybuddha

    Solved Where string

    Are you sure this doesn't work? You should see only: transactions from account = 47 uncleared transactions from any time both cleared and uncleared transactions within the date range. Do you have any other criteria? What is your whole SQL in the end?
  4. cheekybuddha

    A simple HTML editor to work in the edge browser

    What is the benefit of this obfuscation?
  5. cheekybuddha

    Solved Updating a table with a value from a mainform when a subform updates

    You really should be able to glean this info just using a query. Please describe the tables/queries (table names, field names, datatypes) used in main form and subform and which field relates them.
  6. cheekybuddha

    New Avatar

    Love the way your keyboard is upside down! 😝
  7. cheekybuddha

    Solved Filtering problem

    Removing the blWrap clause loses you a major part of the function's utility: removing the necessity to fiddle around adding # delimiters in your SQL. If you had copied the code I had posted and replaced your equivalent code you would not have ended up with doubled delimiters. Notice I removed...
  8. cheekybuddha

    Solved Filtering problem

    Since this date is unambiguous, it will be parsed in SQL correctly as 28th Feb, But not so with "11/02/2024" - that will be interpreted as 2nd Nov. Indulge me. Add a function in a standard module: Function SQLDate( _ vIn As Variant, _ Optional blWrap As Boolean = True, _...
  9. cheekybuddha

    Solved Filtering problem

    No, it's not. It's in SQL date format so it's "mm/dd/yyyy" Dates passed to SQL must be in either US date format or an unambiguous date format like ISO: "yyyy-mm-dd" How are you constructing your filter? Please post the code you use.
  10. cheekybuddha

    Solved Filtering problem

    Do you have a space between the greater than symbol and the equals sign? If so, I suggest you remove it.
  11. cheekybuddha

    Solved How to print underscores instead of a field value, in a report

    Yes, I guess I was aiming more for something like: SELECT [Q] & ": " & GetRSPUnderscore ([a]) AS QandA, [Q] & ": " & Trim(Replace(String(Len([a]), "_"), "_", "_ ")) AS Demo FROM Table1; so as to have just a single underscore per actual letter, and your solution gives that option. (y)...
  12. cheekybuddha

    Solved How to print underscores instead of a field value, in a report

    That'll teach me not to check the docs! Have been writing you'll much js/ts and confusing with string.repeat() 🤪
  13. cheekybuddha

    Solved How to print underscores instead of a field value, in a report

    Surely just a small adjustment required: SELECT [Q] & ": " & GetRSPUnderscore ([a]) AS QandA, [Q] & ": " & Trim(String(Len([a]), "_ ")) AS Demo FROM Table1; (nb untested 😬 )
Back
Top Bottom