Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (70 - 72 of 3866)

Ticket Resolution Summary Owner Reporter
#319 No Bug BitOR gives error anonymous
Description

GUICreate("Test", 400, 610, -1, -1, BitOR($WS_DLGFRAME,$WS_CLIPSIBLINGS))

works with 3.2.10 version, but with 3.2.12 release i get error: Variable used without being declared. Also created gui with koda and i get same error message. Downgrading to 3.2.10 version fixes problem.

#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

#348 No Bug Compiler complains that $STDERR_MERGED is undefined global variable david@…
Description

The helps for Run indicate a new standard_i/o_flag option described below:

8 ($STDERR_MERGED) = Provides the same handle for STDOUT and STDERR. Implies both $STDOUT_CHILD and $STDERR_CHILD.

Generates the following when I compile: WARNING: $STDERR_MERGED: possibly used before declaration. $DevConCheck = Run( "DevCon.exe help", @ScriptDir, @SW_HIDE, $STDERR_MERGED)

ERROR: $STDERR_MERGED: undeclared global variable.

$DevConCheck = Run( "DevCon.exe help", @ScriptDir, @SW_HIDE, $STDERR_MERGED)

Script.au3 - 1 error(s), 1 warning(s)

Script is below: #Region ; Directives created by AutoIt3Wrapper_GUI #AutoIt3Wrapper_Change2CUI=y #EndRegion ; Directives created by AutoIt3Wrapper_GUI

$DevConCheck = Run( "DevCon.exe help", @ScriptDir, @SW_HIDE, $STDERR_MERGED)

If $DevConCheck = 0 Then

ConsoleWriteError( "DevCon.Exe not found in path." & @CRLF ) Exit(1)

Else

ConsoleWrite( "DevCon.Exe found in path." & @CRLF )

EndIf

Note: See TracQuery for help on using queries.