Recent content by xavier.batlle

  1. 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.
  2. X

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

    Jason Lee Hayes Bad news, ******** is going to step away for a bit.
  3. 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.
  4. 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
  5. 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.
  6. 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.
  7. 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)
  8. 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.
  9. 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.
  10. 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.
  11. X

    Error 3828 when creating a CSV from a query

    @andymartin3186, have you tested exporting the query to Excel directly? Does it work properly?
  12. 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...
  13. X

    Help with looping through records

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

    Solved Cannot Assign ActiveControl/ Screen.ActiveControl

    Hi @dalski, this tutorial is by Doug Steele. No credits for me, but thanks.😉
  15. 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