Recent content by ComputerVersteher

  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).
Back
Top Bottom