Custom Query (3927 matches)
Results (385 - 387 of 3927)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1432 | No Bug | AutoIt3_x64.exe - GUIRegisterMsg($WM_NOTIFY, "MY_WM_NOTIFY") | ||
| Description |
AutoIt:3.3.4.0/X64 (Os:WIN_7/X64 Language:0415 Keyboard:00000415 Cpu:X64) I check example on this site works very well on "c:\Program Files (x86)\AutoIt3\AutoIt3.exe" but had problem on "c:\Program Files (x86)\AutoIt3\AutoIt3_x64.exe" here is this scripts #include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <GuiTreeView.au3>
#include <Array.au3>
Global $aData[5] = [4, "Item 1", "Item 2", "Item 3", "Item 4"]
Global $aItem_Handles[UBound($aData)]
Global $hMain_GUI = GUICreate("TreeView Demo", 500, 500)
$hTree = GUICtrlCreateTreeView(10, 10, 480, 480)
$hRoot = GUICtrlCreateTreeViewItem("Root", $hTree)
For $i = 1 To $aData[0]
$aItem_Handles[$i] = GUICtrlGetHandle(GUICtrlCreateTreeViewItem($aData[$i], $hRoot))
Next
GUISetState()
; Initialise "DoubleClick on TreeView function"
GUIRegisterMsg($WM_NOTIFY, "MY_WM_NOTIFY")
Global $fDblClk = False
While 1
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
; Check if tree view double clicked
If $fDblClk = True Then
$sText = _GUICtrlTreeView_GetText($hTree, _GUICtrlTreeView_GetSelection($hTree))
MsgBox(0, "Hit", "You double clicked on " & $sText )
$fDblClk = False
EndIf
WEnd
Func MY_WM_NOTIFY($hWnd, $Msg, $wParam, $lParam)
Switch $wParam
Case $hTree
Local $tagNMHDR = DllStructCreate("int;int;int", $lParam)
If @error Then Return
If DllStructGetData($tagNMHDR, 3) = $NM_DBLCLK Then $fDblClk = True
EndSwitch
$tagNMHDR = 0
EndFunc ;==>MY_WM_NOTIFY
|
|||
| #1437 | No Bug | Online Help(F1) for 'FileRead' doesn't work | ||
| Description |
Just notice a strange bug I'd like to report. When you're in SciTE normally each time you press F1 the AutoIT help comes up. And when you're on a known keyword like FileWrite it'll just jump to that topic. Well when the cursor is on the keyword FileRead and I press F1 nothing happens. FileRead("MyFile.dat")
^^^^^^^^ <- Press F1 and nothing will happen (I mean no online help will show up )
When I change it to for ex. FileRead2("MyFile.dat") It'll work as well as FileReadLine("MyFile.dat") will do. Hmm well that's not very critical - however interesting bug, isn't it? |
|||
| #1443 | No Bug | Error in ExcelCom_udf (Excelbookopen) | ||
| Description |
When Sheet1 is deleted in the workbook, Func _ExcelBookOpen gives an error. I modified line 260 :
|
|||
