Search results

  1. X

    How to always set focus on the control on parent form after entering data in the subform

    Try changing: Me.txtProductCode.SetFocus To Docmd.GotoControl "txtProductCode" At the end of the procedure.
  2. X

    Convert old DB

    The file has been scanned on this website: https://mark0.net/onlinetrid.html and this is the result:
  3. X

    Simple Password Strength Checker with PWned Online Check

    Hi Jason, I think there are 5 missing attached images. These are the errors in Spanish: From Pass1of5.bmp to Pass5of5.bmp ...
  4. X

    How to register library/reference from vba code?

    If I'm not mistaken this is the link: http://kallal.ca/Articles/Pdf/Merge.html
  5. X

    Table view problem

    Sometimes some extrange behaviors have happened because of non printable characters on some fields. Nowadays it's common to copy and paste data from some webpages and it's common to copy non printable characters to de database and then... - Some comboboxes don't populate properly. - Some reports...
  6. X

    Webbrowser in Form without Control !!!! Years to late....

    In his article ******** explained that the way to execute applications in a form is different depending on the application. The code he published allowed to execute the PowerShell ISE in an Access form, but not any application with that approach.
  7. X

    Webbrowser in Form without Control !!!! Years to late....

    Jason Lee Hayes Bad news, ******** is going to step away for a bit.
  8. X

    Updating Image Controls In Real-Time

    @theDBguy It doesn't work for me. If I change the underlying image without changing its .Picture property executing a form .Refresh doesn't update the image on the screen.
  9. X

    Updating Image Controls In Real-Time

    Have you tested to reset (set again) the .Picture property? I've tested it and after reseting it the image is updated on the screen
  10. X

    How to give a fancied DBA read only version of the tables.

    Perhaps you could create a ACCDE database that links your BE database tables with read only access.
  11. X

    Updating from Access 2013 to 365?

    To completely uninstall MS Office 365 I always use: Uninstall Microsoft 365 from a PC Instead of uninstalling Office 365 with the computer uninstaller.
  12. X

    After selecting a Symbol, the Name Field is not being populated.

    If you want or need to change the SYMBOL_NAME description after being selected, you have to assign the value in the Symbol_Stock AfterUpdate() event: Me.Symbol_Name = Me.Symbol_Stock.Column(1)
  13. X

    Strange behaviour from a combo box on a form when trying to evaluate data in another column

    I think that the attached database shows the OP issue. I say it's the normal behaviour.
  14. X

    Strange behaviour from a combo box on a form when trying to evaluate data in another column

    As far as I know, when the first column displayed in a combobox has duplicated values, it always returns the first one.
  15. X

    Updating from Access 2013 to 365?

    I don't think there are a real speed difference on most of databases. CurrentlyI install x64 on my clients but there is no real improvement on my applications.
  16. X

    Error 3828 when creating a CSV from a query

    @andymartin3186, have you tested exporting the query to Excel directly? Does it work properly?
  17. X

    Recordset field not readable after update

    When you call .Update on a DAO Recordset, the current record’s buffer is written to the database and may be repositioned or refreshed — depending on the recordset type and underlying query. This means that the record you were editing might no longer be current, or DAO needs to requery to see...
  18. X

    Help with looping through records

    Another one: RS("EmailID")
  19. X

    Solved Cannot Assign ActiveControl/ Screen.ActiveControl

    Hi @dalski, this tutorial is by Doug Steele. No credits for me, but thanks.😉
  20. X

    Working with form records

    @Mark has explained what the problem is. A simple way to avoid going to a new record is changing this line on your create Invoice button: Richard Rost would be happy to see this database. ;)
Back
Top Bottom