Search results

  1. jdraw

    Jackdaw

    Welcome aboard AWF! I spent many years in Ottawa.
  2. jdraw

    Using variables as field names

    Jackdaw, Can you tell us in plain English what you are trying to achieve? Perhaps an example of some input and corresponding output/result. What do you mean by k = rdsR! ?
  3. jdraw

    Solved Runtime error 3075, missing operator error in SQL expression

    Mike, I don't think 'IS' is proper syntax. Just found a sample: w3schools SELECT * FROM Customers WHERE Country IN ('Germany', 'France', 'UK');
  4. jdraw

    Solved Filtering range of records

    Here is a quick review of your IsTransferValid function (via Chatgpt) Issue / OddityComment DocNumber parameter is never usedIf the caller supplies it, you might have planned extra validation that hasn’t been coded yet. Third check in the range logic seems counter‑intuitiveSQL ...
  5. jdraw

    Solved Filtering range of records

    "you can see record with docnumber 347 subnumber 3 says that between docnumber 348 and 349 there is next record 347 with subnumer 4 and that record exist"?? How would a reader know what subnumber 3 means? As DHookom said 'No one here can read your mind.' I suggest you leads us through a...
  6. jdraw

    Solved Extracting part of string

    So, why is the thread marked SOLVED? The solution may help someone else. I tried a few things. Major assumption--your field [transfers] can only have 1 space char between numbers eg. 34_567/45/2029 45_5687_42/3045. There can be 2, 3, or 4 number sequences in Transfer Test data...
  7. jdraw

    I need the minimum value among 5 different fields in one record

    I like the parable George. We've all been there. The other "beautiful tree" scenario is "I've got so much time and effort into this that I can't possibly stop and correct the design flaw"!
  8. jdraw

    Solved Filtering range of records

    I agree with the others---what are you talking about exactly? Give us a few examples so we understand the issue. Between in Access includes the end points.
  9. jdraw

    Can you give me a good YouTube channel link or a website where I can properly learn ms access ?

    moin555, You have been given advice based on a variety of experiences. I have a lot of older references in my signature that I consider "good sources of info", but each respondent has his/her own favourites. Steve Bishop, Allen Browne, Crystal Long(strive4peace), Daniel Pineault(devHut), Colin...
  10. jdraw

    Solved Extracting part of string

    There is an example and discussion Split in a query here.
  11. jdraw

    Solved SQL copies data with indent

    murray83, Crystal Long (strive4peace) provided a free routine to write the ascii values represented by characters in a string. If you use it to "display" the characters in your raw data, you can likely determine "strange characters causing your concern". Let us know the result.
  12. jdraw

    Distributing a file as a referenced library

    FWIW, I had an issue that was resolved in this thread by MarkK. Don't know the applicability to this thread, but thought I'd add the link---it may just help someone.
  13. jdraw

    Inno: How to check Office Bitness

    This works for me Sub CheckOfficeBitness() Dim bitness As String #If Win64 Then bitness = "64-bit Office" #Else bitness = "32-bit Office" #End If MsgBox "This is " & bitness, vbInformation End Sub
  14. jdraw

    Introduction!

    Welcome aboard AWF!
  15. jdraw

    Apresentando-me

    Hi Ricardo! Welcome to AWF!
  16. jdraw

    Machine Code - AI enhanced

    Agree with Doc, and in the hands of more "individual mal-intent" why not insert some "binary code" to not only act as a work-around, but also hide some scam/harmful logic.
  17. jdraw

    Need Help With Code VBA For FIFO

    Omar, Chris (CJ_London) is an accountant and will have experience and focused knowledge. Here is another link that may offer some insight. Good luck with your project. Let us know your solution once resolved.
  18. jdraw

    Need Help With Code VBA For FIFO

    Omar, Have you tried taking one of the items where you see a discrepancy (say Item 3) and worked it (the specific item) through your processFIFO and queries to see if you can find the issue?
  19. jdraw

    Wrapping controls WithEvents in classes

    Link to John's blog page re PAUG (Pacific Access User Group) videos Links to the 3 youtube videos are under the "MyVideos:"
  20. jdraw

    Wrapping controls WithEvents in classes

    John, I communicated with you in late 2022 when you were working with version 7...9(when it had ~60 pages). And before your PAUG sessions. I have followed you on AccessD for years. Having been retired for 16+ years I don't have projects and was never a developer as such. I have always been in...
Back
Top Bottom