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/
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...
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.
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...
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.
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 =...