Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (265 - 267 of 3893)

Ticket Resolution Summary Owner Reporter
#1197 No Bug IniReadSection Limitation Emiel Wieldraaijer
Description

Hi,

I don't know if its a bug or if it's by design, but IniReadSection can only retrieve 99 keys.. maybe it should be mentioned in the documentation.

Best regards,

Emiel

(Valik don't shoot me)

#1475 Fixed TrayItemSetState($Value, $Tray_Checked) enables an disabled TrayItem Jon Emiel Wieldraaijer
Description

Hi All,

I've disabled a trayitem and when is give it a command to check the trayitem it's enabled. Is this by Design ! i believe it's a bug

Best regards,

Emiel Wieldraaijer

[AutoIt] #Include <Constants.au3> #include <GUIConstantsEx.au3>

Opt("TrayMenuMode", 1) Opt("TrayOnEventMode", 1)

$GUI = GUICreate("TrayItemSetState", 200, 200) $Button1 = GUICtrlCreateButton ("Check TrayItem", 20, 20, 100, 20) GUISetState ()

$Tray1 = TrayCreateItem("Hello World") TrayItemSetOnEvent(-1, "_Tray1") TrayItemSetState($Tray1, 128)

$Tray2 = TrayCreateItem("Exit") TrayItemSetOnEvent(-1, "_Terminate")

While 1

$msg = GUIGetMsg ()

Switch $msg

Case -3

ExitLoop

Case -50 To 0

ContinueLoop

Case $GUI_EVENT_CLOSE

_Terminate()

Case $Tray2

_Terminate()

Case $Button1

TrayItemSetState($Tray1, $Tray_Checked)

EndSwitch

Wend

Func _Terminate ()

Exit

EndFunc

Func _Tray1 ()

Msgbox (64, "TrayItemOne", "Hello World")

EndFunc AutoIt

#1512 No Bug StdoutRead no correct output with german language OS Emiel Wieldraaijer
Description

Hi,

StdoutRead does not produce the correct output I've an image with the correct output.

Console Output =

"C:\Program Files (x86)\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.exe" /run /prod /ErrorStdOut /in "Z:\Proggen\CheckDisk\chktest.au3" /autoit3dir "C:\Program Files (x86)\AutoIt3" /UserParams

+>13:39:42 Starting AutoIt3Wrapper v.2.0.0.3 Environment(Language:0409 Keyboard:00020409 OS:WIN_VISTA/ CPU:X64 OS:X64)

Running AU3Check (1.54.19.0) from:C:\Program Files (x86)\AutoIt3

+>13:39:42 AU3Check ended.rc:0

Running:(3.3.4.0):C:\Program Files (x86)\AutoIt3\autoit3.exe "Z:\Proggen\CheckDisk\chktest.au3"

3240 C:\Windows\system32\cmd.exe /c chkdsk c: StdoutRead: Zugriff verweigert, das Sie nicht ber ausreichende Berechtigungen verfgen. Sie mssen dieses Programm mit erh”hten Rechten ausfhren.

+>13:39:43 AutoIT3.exe ended.rc:0 +>13:39:44 AutoIt3Wrapper Finished

Exit code: 0 Time: 1.866

[code example] (not mine) #include <Constants.au3> Local $foo, $cmd Local $line $cmd = @ComSpec & " /c chkdsk c:" $foo = Run($cmd, @SystemDir, @SW_HIDE, $STDERR_CHILD + $STDOUT_CHILD)

dbg($foo) dbg($cmd) While 1

$line = StdoutRead($foo) If $line<>"" Then

dbg("StdoutRead: " & $line)

EndIf If Not ProcessExists($foo) Then

ExitLoop

EndIf

Wend

Exit

Func dbg($msg, $error=@error, $extended=@extended, $ScriptLineNumber=@ScriptLineNumber)

Local $out = "(" & $ScriptLineNumber & ")(" & $error & ")(" & $extended & ") := " & $msg ConsoleWrite($msg & @CRLF) DllCall("kernel32.dll", "none", "OutputDebugString", "str", $out)

EndFunc

Thanks

Emiel

Note: See TracQuery for help on using queries.