Custom Query
Results (31 - 33 of 3883)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#49 | Rejected | cSnippet.exe (outdated and no unicode version) | Xenobiologist | |
Description |
Hi, I thought about a good solution to share my udfs and sample scripts. So, I decided to have a look whether I can organize my codes with cSnippet. Unfortunately, it isn't uptodate. Can you switch it to the latest version of Autoit? Or do I have to do it on my own? It also supports no unicode I suppose, that is why it doesn't handle äüö etc. correctly. So long, Mega |
|||
#51 | No Bug | Problem with "Au3Check" and "IsDeclared" | Holger | |
Description |
Au3Check 'seems' to have a problem with correct checking of lines with "IsDeclared". Here a small example: #include <GUIConstants.au3> If Not IsDeclared("WM_COMMAND") Then Global Const $WM_COMMAND = 0x0111 Whith running these lines there is no problem only with checking. This is the output: >C:\Userapps\AutoIt3\SciTE\..\au3check.exe "C:\Userapps\AutoIt3\test.au3" AutoIt3 Syntax Checker v1.54.8 Copyright (c) Tylo 2007 C:\Userapps\AutoIt3\test.au3(3,71) : ERROR: $WM_COMMAND previously declared as a 'Const' If Not IsDeclared("WM_COMMAND") Then Global Const $WM_COMMAND = 0x0111 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Userapps\AutoIt3\test.au3 - 1 error(s), 0 warning(s) >Exit code: 2 Time: 0.328 Holger |
|||
#53 | Rejected | change taborder of controls in GUI | hazed | |
Description |
The order tabstops on a GUI is the order that the control was created. But I would like a way to fill in a form and change where the next control has focus based upon that the data. That way I can skip non-essential portions of a generic form. |