Custom Query (3921 matches)
Results (292 - 294 of 3921)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #598 | Rejected | database access (Microsoft) | ||
| Description |
For AutoIt lacks features that allow an application written in AutoIt to connect to a database type of Microsoft Access and interact with it. |
|||
| #2321 | Rejected | FileDelete() does NOT delete ADS files | ||
| Description |
FileDelete() does not delete Alternate Data Streams. Here a reproducer. _Try("~temp.txt:ADS")
_Try("~temp.txt")
Func _Try($sFilename)
FileWriteLine($sFilename, "This is a Test")
$Return = FileDelete($sFilename)
$Error = @error
ConsoleWrite(@lf&"Filename: " & $sFilename & @LF & "Filedelete() $Return: " & $Return & " @error: " & @error & @LF)
If $Return+$Error= 0 Then ConsoleWrite("*** Bug *** ==> If $Return=0 (no Success), @error should be 1 " & @LF )
$Return = _FileDelete($sFilename)
$Error = @error
ConsoleWrite("_Filedelete() $Return: " & $Return & " @error: " & @error & @LF& @LF)
EndFunc ;==>_Try
Func _FileDelete($sFile)
$sFile = DllCall('kernel32.dll', 'int', 'DeleteFileW', 'wstr', $sFile)
Return SetError(Not $sFile[0], 0, $sFile[0])
EndFunc ;==>_FileDelete
I would recommend to replace FileDelete function by _FileDelete function in my code. |
|||
| #2697 | Fixed | "$GW_ENABLEDPOPUP = 6" is missing in "WinAPIConstants.au3" | ||
| Description |
MSDN specifies: GW_ENABLEDPOPUP = 6 The retrieved handle identifies the enabled popup window owned by the specified window (the search uses the first such window found using GW_HWNDNEXT); otherwise, if there are no enabled popup windows, the retrieved handle is that of the specified window. Source: http://msdn.microsoft.com/query/dev10.query?appId=Dev10IDEF1&l=EN-US&k=k(GetWindow);k(DevLang-C);k(TargetOS-WINDOWS)&rd=true "WinAPIConstants.au3" line 155 - 163: ; GetWindows Constants Global Const $GW_HWNDFIRST = 0 Global Const $GW_HWNDLAST = 1 Global Const $GW_HWNDNEXT = 2 Global Const $GW_HWNDPREV = 3 Global Const $GW_OWNER = 4 Global Const $GW_CHILD = 5 ; GetWindowLong Constants Following line should be inserted after line 161: Global Const $GW_ENABLEDPOPUP = 6 |
|||
