Custom Query
Results (328 - 330 of 3904)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #329 | Works For Me | #RequireAdmin | anixon | |
| Description |
#RequireAdmin RegWrite("HKLM\SOFTWARE\Test", "TestKey", "REG_SZ", "Hello this is a test") Exit If you run this script in SciTE Tools/Go the registry value is not written. If you compile the script to an *.exe then run the executable the value is written to registry. |
|||
| #330 | No Bug | ControlSend Bug? | lun266@… | |
| Description |
Hi, I am a new user of AutoIt and is having some problem. I am not sure exactly if this is a bug but with the code below, I am supposed to highlight and delete an entry in a input box. However, this is not happening.... ControlSend ($AppBase, "",$Ctrl_MonoID, "+{END}") ControlSend ($AppBase, "",$Ctrl_MonoID, "{DEL}") Also, I actually register to the forum with intention to post this on the General Help and support section but they say I don not have the permission to post a new message. Why is that so? Thank you. KLT |
|||
| #331 | Duplicate | menuradioitem is not work? | YGYL | |
| Description |
menuradioitem is not work? #include <GUIConstants.au3>
$Form1 = GUICreate("Form1", 633, 447, 193, 125)
$MenuItem2 = GUICtrlCreateMenu("MenuItem2")
$MenuItem1 = GUICtrlCreateMenu("MenuItem1")
$MenuItem3 = GUICtrlCreateMenuItem("MenuItem3", $MenuItem1, -1 , 1)
GUICtrlSetState(-1, $GUI_CHECKED)
$MenuItem4 = GUICtrlCreateMenuItem("MenuItem4", $MenuItem1, -1 , 1)
$MenuItem5 = GUICtrlCreateMenuItem("MenuItem5", $MenuItem1, -1 , 1)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $MenuItem4
MsgBox(0,"2","")
GUICtrlSetState($MenuItem4, $GUI_CHECKED)
EndSwitch
WEnd
|
|||
