Custom Query (3917 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (373 - 375 of 3917)

Ticket Resolution Summary Owner Reporter
#374 Rejected Pb with new RUNAS() cbarthelemy@…
Description

Hello I have a problem with the new function "RUNAS". Before I could use this function to copy files in restricted access directory Blockinput(1) RunAsSet("xx","xxx","xxxx") FileCopy("c:\tempinstall\OracleDrive\10.2.0.0.8\102008.txt", "C:\Program Files\Oracle\ODrive\102008.txt")

RunAsSet() Blockinput(0) who can i do this with the new Runas without use .cmd file ? thanks

#375 No Bug GUICtrlSetState($GUI_DISABLED) delayed in Vista MikeOsdx
Description

GUICtrlSetState() does not seem to take effect imediately when being run on Windows Vista.

See http://www.autoitscript.com/forum/index.php?showtopic=73364&pid=534785&st=0&#entry534785 for further info.

#376 Wont Fix GUICtrlSetBkColor() causes button to catch enter key Valik amokoura
Description

By using GUICtrlSetBkColor() on a button causes it to catch enter key. Steps to reproduce (Run the code):

  1. Click button
  2. Click input field to move the focus away from button
  3. Press enter (button event happens)

If you comment out the coloring function, the button won't catch enters all by itself anymore.

#include <GUIConstants.au3>

GUICreate("Form1", 166, 89, 234, 191)
GUICtrlCreateInput("Input1", 16, 8, 121, 21)
$Button1 = GUICtrlCreateButton("Button1", 16, 40, 123, 25, 0)
GUISetState(@SW_SHOW)

GUICtrlSetBkColor($Button1, 0x00ff00)

While 1
	Switch GUIGetMsg()
		Case $GUI_EVENT_CLOSE
			Exit
		Case $Button1
			MsgBox(0, "", "button triggered")
	EndSwitch
WEnd

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.