Search results

  1. C

    SQL Server - Is it faster? Speeding ACCESS Up!

    Thanks Pat, I fixed that (copied header text instead of url ;()
  2. C

    Data security of accdb files

    No, I always use the same nick except on Github. What are you thinking, who I am?
  3. C

    Data security of accdb files

    And now I do the same ;) Mixed that up with sth. else. But to open the BE you need the pwd, what then can be recovered from the FE (or is that wrong too?). Thanks for correction! Do you agree on TS, as only way to really secure it?
  4. C

    Data security of accdb files

    Without a terminal server, you always need access to the backend, via share. You can try to hide the path, but that's bad security by obscurity! Ms Access encryption before Ms Access 2010 is useless (https://www.everythingaccess.com/accessdatabaserepair_info.asp) On a terminal server you can...
  5. C

    SQL Server - Is it faster? Speeding ACCESS Up!

    Read Optimizing Microsoft Office Access Applications Linked to SQL Server: This doc explains what is going on.
  6. C

    DoCmd.RunCommand acCmdDeleteRecord is deleting a record on a different form!

    remove DoCmd.SetWarnings False and use DoCmd.SetWarnings True on top of code (as it might be turned off by you) to get an error message
  7. C

    DoCmd.RunCommand acCmdDeleteRecord is deleting a record on a different form!

    Avoid DoCmd as it depends on actual focus. You can set focus with Docmd.SelectObject, but there are better alternatives.Me.RecordSet.Delete is referencing the Form-Instance Recordset explicit! btw. DoCmd.SetWarnings is used to suppress deletion warning? Better use Application.SetOptions to only...
  8. C

    Lookup Criteria returning #Error

    Me is only valid in VBA Code. In form design properties you have to reference the form by name from the forms collection:Forms("FormName")and avoid the Bang-Operator.
  9. C

    Lookup Criteria returning #Error

    Fieldnames with blanks need to be enclosed by square brackets like you did(unnecessarily) on CodeNo and the last double quote is wrong: DLookUp("SerialNumber","ImportEquipment","[Code No] = " & Me!CodeNo)
  10. C

    Misleading error message on insert URL for new users

    Now my message count is 10, but it was very annoying, not to know why post where rejected! New users may not be as patient as me ;)
  11. C

    Misleading error message on insert URL for new users

    Bots should fail on captchas, as they are designed for that (Completely Automated Public Turing test to tell Computers and Humans Apart). There are options in xenforo https://xenforo.com/features/spam/
  12. C

    Misleading error message on insert URL for new users

    Picture of the error message, to prevent bots reading it.
  13. C

    Auto Email

    I prefer ISO Format yyyy-mm-dd, as it can be used almost everywhere and can be sorted as text. If tbl_emailLog.sentDate is type DateTime you can use: DCount("*", "tbl_emailLog", "[sentDate] > Date()") = 0
  14. C

    Misleading error message on insert URL for new users

    Or a picture as error message
  15. C

    Misleading error message on insert URL for new users

    Then use a captcha on first ten post, if links are included. Or allow plain text URLs. I even can#t write 3 consecutive 'w' in a post
  16. C

    Misleading error message on insert URL for new users

    Hi, as new user with less than 10 messages I can't post URLs (as theDBGuy told me). but the error message is Your content can not be submitted. This is likely because your content is spam-like or contains inappropriate elements. Please change your content or try again later. If you still have...
  17. C

    change the color of the lines of the list box forms

    Hi hys408, a salutation is always a good start and a sentence should usually contain a verb ;) ListBoxes can't have a conditional format, but you can use a subform instead (includes filters and sorting too). You can access the conditional formats of a control by looping its .FormatConditions...
  18. C

    Solved VBScript to determine bitness of local MS Access version

    VBS using ProductCode: With CreateObject("Access.Application") If Mid(.ProductCode, 21, 1) = 0 Then wscript.echo "Office is x86 ProductCode is " & .ProductCode Else wscript.echo "Office is x64 ProductCode is " & .ProductCode End If End With
  19. C

    phpMyAdmin (MySQL) Connection string(s) for OLEDB Connection

    I presume your website and database are not hosted in your LAN! Did you consider using a Remote Desktop? Club membership doesn't sound like heavy multiple user usage, so if only one user at same time is sufficent, a standard Windows PC can be used locally. Connection to that PC can be done by...
Back
Top Bottom