Custom Query (3922 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (367 - 369 of 3922)

Ticket Resolution Summary Owner Reporter
#1351 No Bug Why "text" = 0 ? anonymous
Description

Environment = 3.3.0.0 under WIN_XP/Dodatek Service Pack 2 X86

If "text" = 0 Then MsgBox(0,"","")

Why "text" = 0 ? Please can you change this?

#1365 No Bug Windows 2000: GUICtrlCreateLabel before GUICtrlCreateCombo prevent pulldown popup Mulder
Description

This is a very old bug (3.1.1.127 own this bug too)

If ( a GUICtrlCreateLabel exists before GUICtrlCreateCombo ) AND ( the OS is windows 2000) Then The popup window with all values is not displayed Endif

On XPsp2 there is no such problem Tested this with my W2ksp4 setup and a W2ksp4 VMmachine Remove the GUICtrlCreateLabel before GUICtrlCreateCombo and it will work on W2k too

Testscript will generate 2 GUICtrlCreateCombo but the second is coded after GUICtrlCreateLabel (on GUI: first Label then Combo_1 and Combo_2) and not working while the first one is. Again: On XPsp2 there is NO problem On Windows 2000 sp4 (patched) The Label is displayed the Combo (item1....) is displayed AND working the Combo (native|pentium"....) is displayed but NOT working (popup)

A work arround is to code all GUICtrlCreateLabel after any other GUI element.


Opt("GUIOnEventMode", 1)

#include <GUIConstants.au3>

GUICreate("My GUI combo") ; will create a dialog box that when displayed is centered

GUICtrlCreateCombo("item1", 20, 35) ; create first item GUICtrlSetData(-1, "item2|item3", "item3") ; add other item snd set a new default

GUICtrlCreateLabel ( "This is a test", 10, 10 , 150, 20) GUICtrlSetBkColor(-1, 0x00ff00)

GUICtrlCreateCombo( "", 20, 75, 150 ) GUICtrlSetData( -1, "native|pentium|pentium3|pentium-m|pentium4|prescott|nocona|core2|athlon-xp|k8|k8-sse3|amdfam10" )

GUISetState()

while 1

sleep(5000)

wend


#1369 No Bug Static.au3 example not working JamesBrooks
Description

Trying out the new Static keyword, I looked at the help file, and attempted to run the example. I tried on several occasions, each time, giving me:

C:\Program Files\AutoIt3\Examples\Helpfile\Static.au3 (37) : ==> Cannot make existing variables static.: Static $Values[$State + 1] Static ERROR

Removing the Static keyword from line 37 brings a long more errors in the example.

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