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 =...
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
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
Is MS your Access Updated? Do all the computters have the same MS Access version?
This behaviour you have explained was an ACCESS bug that happened 1 or 2 years ago!
The API is similar to this other one:
Public Declare PtrSafe Function GetFileInformationByHandle Lib "kernel32" Alias "GetFileInformationByHandle" (ByVal hFile As LongPtr, lpFileInformation As BY_HANDLE_FILE_INFORMATION) As Long
so I guess the VBA7 version would be:
Public Declare PtrSafe...
For example, if you want to send two attachments you can have two TextBoxes: Attachment1 and Attachment2, and for sendirng both files, you have to change the code:
With Newmail
If Not isNull(Me.Attachment1) Then
.AddAttachment Me.Attachment1
Endif
If Not...