Search results

  1. cheekybuddha

    UK Online Safety Laws - I, and therefore the site, are at risk

    1. See post #1 2. Wait however many years until the government of the day realises how totally unworkable this legislation is and how it will not have any effect against its intended targets, yet completely harms unintended targets.
  2. cheekybuddha

    UK Online Safety Laws - I, and therefore the site, are at risk

    This is perfect theory. But the reality is that, even if Jon is charged with a case that is spurious, he has to come up with the legal costs to defend and fight it, which are unlikely to be recovered even if he won. That is the problem with this legislation. It's not really about 'complainers'...
  3. cheekybuddha

    UK Online Safety Laws - I, and therefore the site, are at risk

    But it's not your house and family on the line, is it?
  4. cheekybuddha

    UK Online Safety Laws - I, and therefore the site, are at risk

    But who moderates the moderators? :ROFLMAO: It's a shitty state of affairs, Jon. I signed some petitions against this legislation when they were trying to shovel it through, trying to highlight the collateral damage to smaller sites without resources to implement the required vigilance; but...
  5. cheekybuddha

    Windows 10 End of Life

    I think you may have mis-read BlueSpruce's response. I read it as he agreed that the MS stuff IS invasive, and it's the remedies which are placebos (ie pretend to fix, when actually they don't) As usual, I my well have the wrong end of the stick!
  6. cheekybuddha

    Recordset field not readable after update

    If you wanted to test the version I posted you may need to adjust the timestamp value passed to the SQL statement: ' ... "'" & data_ora_file(NOME_FILE, "CREAZIONE") & "'," & _ Format$(Now, "\#yyyy\-mm\-dd hh:mm:ss\#") & "," & _ '... The Firebird ODBC driver should...
  7. cheekybuddha

    Recordset field not readable after update

    Is your backend in a non-Access system?
  8. cheekybuddha

    Recordset field not readable after update

    Private Function InserisciRecordPrincipale(db As DAO.Database, NOME_FILE As String, hash As String, b64 As Boolean, nom_fil_ser_ftp As String) As Long Dim lRet As Long, strSQL As String strSQL = "INSERT INTO FERICEVUTE (" & _ "ID_DOCUMENTITESTATE," & _...
  9. cheekybuddha

    Recordset field not readable after update

    What is the purpose of having 3 different hashes for the same thing? How often do you need to compare against the hash[es]?
  10. cheekybuddha

    Recordset field not readable after update

    Why do you store the import date in a text field?
  11. cheekybuddha

    How can I read newly received invoice files without having to re-read the old ones?

    Can your app not just check the file timestamps to see which are new since last import? Even robocopy ought to be able to transfer only new files since last time to make Step 1 even quicker For Step 2, if you can just unlock new files and hash them to verify they are the same, then import, it...
  12. cheekybuddha

    Help with looping through records

    Can't argue with that! 🤪
  13. cheekybuddha

    Help with looping through records

    Or possibly: RS.Fields("EmailID")
  14. cheekybuddha

    Solved Cannot Assign ActiveControl/ Screen.ActiveControl

    Firstly, I would advise against using Screen.ActiveControl as focus is often not where you expect it to be. Eg click a button the tries to get the value of the control that was previously focused and Screen.ActiveControl will now be the button. Also, if you are stepping through code in the...
  15. cheekybuddha

    DoCmd.SendObject and CDO

    Daniel Pineault has shown some exapmles: VBA – Send E-mail Using Mozilla Thunderbird VBA – Thunderbird Automation With Embedded Images
  16. cheekybuddha

    Programmatically construct a constant's name and return its value

    You didn't try: ?Eval("1"+"1") 11
  17. cheekybuddha

    Complex Query (atleast for me)

    12 year old thread! :ROFLMAO: Not sure any of the OP's will be paying attention any more!
  18. cheekybuddha

    Solved Form Record Cloning In MS Access

    Is Barcode tied to SequenceNumber? If yes, and it is also stored in the table, then you will need to modify Arnel's suggestion to handle amending that field too. I'm still not sure why you have to store the SequenceNumber - does it make a difference if Sriracha Chili Sauce comes after Sriracha...
Back
Top Bottom