Search results

  1. X

    Update of stock quantity

    Broken link. Missing an "l" at the end of the URL http://allenbrowne.com/AppInventory.html
  2. X

    Remote desktop vs. browser based web apps.

    If no internet browsers or desktop Outlook used! They are resource eaters.😉
  3. X

    Remote desktop vs. browser based web apps.

    If TS stands for Terminal Server, why only 15 users? The number of users depen on the number of licenses you buy.
  4. X

    Hidden & little known features in VBA and the VBE

    To fix errors on procedures that have "Error handler", I find the "Extra Resume" technique very useful instead of commenting out the Error handler. https://nolongerset.com/the-extra-resume/
  5. X

    Access report "Overflow" error on export to HTML (PDF works fine)

    Hi ramendog, After some tests, I noticed that the problem arises when the subreport has more records that fits on a page (I suspect). For example: Kentucky: KY0- Number of 2024: 125 I've changed the main report recordsource to list only the the states where the subreport has 110 or less...
  6. X

    Accessing an unbiund table

    Try using DMax and adding 1 to the value https://learn.microsoft.com/en-us/office/vba/api/access.application.dmax
  7. X

    Query totals loses decimal amounts

    I've removed all the formats in the currecy columns and it seems to work properly. To be honest I don't understand why!
  8. X

    Conditional Formatting

    Try: [NewLineDesc]<>"#1" Or [NewLineDesc]<>"#2"
  9. X

    Can we change the tab color or icon with "tabbed document" forms?

    Simple database with some code that simulates to color the tab control label depending on the page selected. It could be possible with a similar approach to insert icons and change them depending on the page selected.
  10. X

    Solved problem opening a .csv file in excel - dates all messed up

    I don't know if this can help. When I import a CSV File to an Excel spreadsheet, I use some code similar to this one generated by ChatGPT where you can specify the type and date format of each column. (Not tested) Sub ImportCSVToExcelWithFormatting() Dim xlApp As Excel.Application Dim...
  11. X

    Format number with condition

    Instead of using the format property, I'd use the switch command and the format() function in the controlsource property to set the desired numeric format in the query.
  12. X

    How to read IP Address of 'actually used' lan nic?

    Perhaps you can get this information using PowerShell (by ChatGPT): Write-Host "Equipo local: $env:COMPUTERNAME`n" # Obtener adaptadores físicos que estén activos $adapters = Get-NetAdapter -Physical | Where-Object { $_.Status -eq 'Up' } foreach ($adapter in $adapters) { $name =...
  13. X

    Can we change the tab color or icon with "tabbed document" forms?

    I don't think it's a good idea to do this, but it's possible to create a blinking form caption using the form timer event. Tested only for fun! ;-)
  14. X

    No Options in File - Access Runtime 2021

    I use these utilities: https://www.accessribbon.de/en/?Trust_Center:Trusted_Locations
  15. X

    Database Properties - Did you know

    Thanks tvanstiphout, I've updated it to VBA7 to use it in 64 bit MS Access..
  16. X

    Can we change the tab color or icon with "tabbed document" forms?

    You can add an Unicode character to the form caption when a form is active. For example: Form1 selected: Form2 Selected
  17. X

    Database Properties - Did you know

    Yes! she is: https://web.archive.org/web/20180313165355/http://thatlldoit.com/Pages/default.aspx look at this link: http://www.youtube.com/user/LearnAccessByCrystal
  18. X

    Database Properties - Did you know

    It seems that it's by Crystal and crew.
  19. X

    Solved How to reinitialize a form with a fresh data-entry view?

    Perhaps something like this: Dim strRecordSource As String strRecordSource = Me.RecordSource Me.RecordSource = "Select * From [name of the table] Where 1=2" Me.Recordset.Requery Me.RecordSource = strRecordSource
  20. X

    Coloring checkboxes and option group buttons when selected with classes.

    This is an example of how to use a simple class to color selected labels in checkboxes and optiongroup controls. Example:
Back
Top Bottom