Custom Query
Results (106 - 108 of 3833)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#345 | Fixed | @OSVersion Windows 2008 | Jpm | PeteW |
Description |
Hello, @OSVersion reports as WIN_VISTA under Windows 2008; help file indicates WIN_2008 should be recognised. System: Windows 2008 (64bit) Enterprise server, SP1; AutoIt v3.2.12.0 Example code: msgbox(0,"", @OSType &";" & @OSVersion &";" & @OSBuild &";" & @OSServicePack &";" & @OSLang & ";" & @ProcessorArch) ;2008 server shows 'WIN32_NT;WIN_VISTA;6001;Service Pack 1;0409;X64' Apologies if this has been covered already. Cheers, Pete. |
|||
#346 | Fixed | Remove the FileOpenDialog/FileSaveDialog filter length limit | anonymous | |
Description |
There appears to be a 260-character limit for the filter string. If the string is any longer than this, AutoIt spits an error at the user stating that the filter is invalid (even though it obviously isn't). This limitation seems completely artificial, so I think it should be removed (or at least increased). If not, then some remark definitely needs to be made in the help file so that the limit is clear to the user. Otherwise, anyone who runs into the limit and gets the error message might end up wasting as much time as I did trying to figure out where/why the valid filter string was considered to be invalid. |
|||
#355 | Fixed | Child dialogs not visible | Jpm | Ultima |
Description |
Global $hParent = GUICreate("Parent", 320, 240) Global $hChild = GUICreate("Child", 200, 150, Default, Default, Default, Default, $hParent) GUISetState(@SW_SHOW, $hParent) GUISetState(@SW_SHOW, $hChild) Do Until GUIGetMsg() = -3 Expected behavior: The child dialog should be displayed Observed behavior: The child dialog is completely missing |