Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (274 - 276 of 3893)

Ticket Resolution Summary Owner Reporter
#1792 Works For Me ProcessExist or Maybe Run Command does not give the correct PID Emiel Wieldraaijer
Description

Hi,

If i run the following code on a W7 X86 it will give the correct PID result

$PID = Run(@SystemDir & "\mstsc.exe", @TempDir)
If ProcessExists($PID) Then Msgbox (64, "Process", "The Process ID = " & $PID)

When i run the same code on W7 X64 it will not show the correct PID

Thanks

Emiel

#1809 No Bug Made an Error in script -> GUICtrlCreateButton $SS_RIGHT Create CheckBox Emiel Wieldraaijer
Description

Hi,

It's not really a bug i guess.. because it's bad coding .. but when i add $SS_Right to a GUICtrlCreateButton it will make a none checkable checkbox from a button control...

#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>

GUICreate("Test", 200, 200)
GUICtrlCreateButton("Test", 10, 20, 100, 20, $SS_RIGHT)
GUISetState()

While 1
	$msg = GUIGetMsg()
	If $msg = $GUI_EVENT_CLOSE Then Exit
WEnd

Best regards,

Emiel Wieldraaijer

#2167 Fixed $WS_EX_LAYOUTRTL and GUICtrlCreateMenu causes bug Jon Emiel Wieldraaijer
Description

When using $WS_EX_LAYOUTRTL in combination with GUICtrlCreateMenu between GUICreate and GUISetState The GUI isn't displayed correct.

When placing GUICtrlCreateMenu at the end of the GUI Creation just before GUISetState the GUI is displayed correct but the menuitems aren't working

Starting with GUICreate followed by GUISetState and placing the rest of the GUI after GUISetState everything works perfect.

But this will mean all examples in the help files must be changed.

Further

I believe there is a bigger problem. I use GUICtrlSetState($TAB, $GUI_SHOW) a lot .. and with version 3.3.8.1 it often occurs other controls of other tabs are displayed on the Tab i show. I can prevent this by placing the GUICtrlSetState($TAB, $GUI_SHOW) as last option in the loop.. In version 3.3.6.1 this problem did not exist.

http://www.autoitscript.com/forum/topic/139094-ws-ex-layoutrtl-bug-or-no-bug/

Thnx

Best regards,

Emiel Wieldraaijer

Note: See TracQuery for help on using queries.