Search results

  1. C

    Can't reply the post

    No, not even that. Post count 59;) Thank you again, but now I have to leave!
  2. C

    Can't reply the post

    @cheekybuddha: thanks for your encouragement! (but extrapolating my posting frequency (about 3 per month) shows ETA > 12 months)
  3. C

    URL Whitelist for links of new users

    Hi, what about using an url whitelist of allowed links for new users? They (especially me;)) should be allowed post links to trustworthy sources like accessforever.org, nolongerset.com, isladogs.co.uk, rubberduckvba.blog, utteraccess.com, stackoverflow.com, microsoft.com etc. Losing the rights...
  4. C

    Can't reply the post

    @cheekybuddha: some valid points on traffic and complaining, but I was used to post links for 19 months. @isladogs: I will open a thread on Site Suggestions for the whitelist (and of course isladogs.co.uk should be on that list too ;))
  5. C

    Can't reply the post

    To clearify, I was speaking of Utter Access, where I just registered and was able to post URLs on my first post! I don't know how they avoid spam, but do you know another site that handles this problem same as here. I don't! I want to help others, but without (or crippled) links, it's no fun...
  6. C

    Can't reply the post

    That is very annoying! Forces me to use a different forum (where I can post URLs from first post).
  7. C

    Database slow on terminal server running Access Runtime

    Is the DB slow from startup or does it slowdown when used? If so it may be caused by the OpenForm bug (accessforever.org/post/performance-issues-and-crashes-when-loading-forms-in-version-2405). Is the performance of other DB's as expected? Is the performance off other apps on TS as expected...
  8. C

    Solved MS Access Forms cannot allow edit and shows #deleted record in Link tables in MySQL

    Hi, for Yes/No-Fields use TinyInt type (0 is true <>0 is false). Also read the docs, especially the examples and notes/tips section. This will also reveal the correct usage of timestamps. They need Current_Timestamp as default and on update.
  9. C

    Google sheet as data source

    Seems like there are several commercial ODBC-Drivers available for Google Sheets. Simply search for: google sheets odbc connection.
  10. C

    Solved winscp

    You have to quote the path to exe as it contains blanks! Error would have shown if you tested your Shell Command with a Debug.Print [Edit added missing & after "winscp.exe"] Dim shellCmd As String shellCmd = strQuote & strSFTPDir & "winscp.exe" & strQuote & " " & strQuote & strCommand & strQuote...
  11. C

    Solved Splitting DB

    Seems like search field txt_search has been deleted, but not its code. Delete all code in Form_FmasterList=today()(and never again name anything like that!!)
  12. C

    Solved Splitting DB

    As Bob said compile your code (devhut.net/how-to-compile-vba-code/) . Code can't compile -> can't create accde!
  13. C

    Hoping to use Form_AfterRender or Form_AfterFinalRender, but No Joy...

    Have a look at isladogs.co.uk/hide-duplicate-column-values/index.html
  14. C

    Display a pdf-file in a report?

    To display a pdf you can convert the pdf to a displayable format (bitmap, jpg, ...) and display the images. That allows usage of print preview with the contents of the pdf(s) shown. On Report_Open I use IrfanView via shell command to extract from pdf and wscriptshell.run with waitOnReturn =...
  15. C

    Filter Properties cannot be empty.

    You can prevent the usage of the saved filter with Form.FilterOnLoad = False in forms property-sheet or in Form_Open event (more appropriate than Form_Load as that event fires after form with data is loaded).
  16. C

    Solved Smart Quotes

    Hi, backticks``delimit identifiers like[], so try replacing each other. Usually they are used in MySQL.
  17. C

    Cannot connect to SQL Server on a network

    Check bitness of ODBC Driver (should match Office bitness). If Office (not Windows!) is x64 install x64 version of ODBC-Driver, if Office is x86 install x86 version of ODBC-Driver!
  18. C

    Report on SQL Server View..via Connection Strin

    You can't set the Report.RecordSet property unless it is an ADP Database. Workaround: Link the view(MC_PrescriptionQ) then your code can set the Report.RecordSource property (or use a DAO Pass-Through query or a temp table with data from ADO query).
  19. C

    Problem with linking

    Your DSNLess connection code? What if you add a DSN by hands using %systemdrive%\Windows\SysWoW64\odbcad.exe ? Are you using Office x86 or x64 (app bitness = connector bitness)?
  20. C

    Problem with linking

    Quite sure you need the x86 version of myodbc, but since release 8.1 the x86 version is no longer included! So use the 8.0.x version of myodbc for x86 apps.
Back
Top Bottom