Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (160 - 162 of 3866)

Ticket Resolution Summary Owner Reporter
#566 Fixed Error Helpfile Sample-Script, Appendix @OSLang Values Valik Polyphem
Description

Sample not working, should be:

MsgBox(0, "Your OS Language:", _Language())

Func _Language() Select

Case StringInStr("0413,0813", @OSLang)

Return "Dutch"

Case StringInStr("0409,0809,0c09,1009,1409,1809,1c09,2009," _

& "2409,2809,2c09,3009,3409", @OSLang)

Return "English"

Case StringInStr("040c,080c,0c0c,100c,140c,180c", @OSLang)

Return "French"

Case StringInStr("0407,0807,0c07,1007,1407", @OSLang)

Return "German"

Case StringInStr("0410,0810", @OSLang)

Return "Italian"

Case StringInStr("0414,0814", @OSLang)

Return "Norwegian"

Case StringInStr("0415", @OSLang)

Return "Polish"

Case StringInStr("0416,0816", @OSLang)

Return "Portuguese"

Case StringInStr("040a,080a,0c0a,100a,140a,180a,1c0a,200a," _

& "240a,280a,2c0a,300a,340a,380a,3c0a,400a," _ & "440a,480a,4c0a,500a", @OSLang)

Return "Spanish"

Case StringInStr("041d,081d", @OSLang)

Return "Swedish"

Case Else

Return "Other (can't determine with @OSLang directly)"

EndSelect

EndFunc

#569 Fixed TCPRecv - SocketToIp() function in Helpfile example has incorrect DllCall() Jpm wraithdu
Description

The first DllCall() in this function should be -

$aRet = DllCall("Ws2_32.dll", "int", "getpeername", "int", $SHOCKET, _
            "ptr", DllStructGetPtr($sockaddr), "int*", DllStructGetSize($sockaddr))

The parameter type for the name member size was incorrect, and should be an int*.

#571 Fixed Return value documentation is incorrectly copied in ListBox module Gary splintor@…
Description

In GuiListBox.au3, the Return Value description of the functions _GUICtrlListBox_AddFile, _GUICtrlListBox_FindString, _GUICtrlListBox_GetAnchorIndex and _GUICtrlListBox_GetText is the same:

Success      - Zero based index of the file that was added

But it is only relevant for _GUICtrlListBox_AddFile. Seems to be a forgotten copy & paste.

This probably affects the online documentation as well, as it seems to be built from the GuiListBox.au3 sources.

Note: See TracQuery for help on using queries.