-
Posts
7,103 -
Joined
-
Days Won
88
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by TheDcoder
-
IUIAutomation MS framework automate chrome, FF, IE, ....
TheDcoder replied to junkew's topic in AutoIt Example Scripts
Hi, first of all, great framework! I am in a scenario where I have multiple buttons with the "same properties" (atleast the same "title" property). They all look the same... but I have to click on a specific button. The simplespy.au3 script's generated code clicks on the first button... and I have to click on the 3rd button (let's assume). How do I accomplish this? I can provide more information if wanted, thanks in advance! -
Implement optional ByRef parameters for functions
TheDcoder replied to TheDcoder's topic in AutoIt Technical Discussion
Why do you think that it is better than my suggestion of creating a Local variable? -
[Solved] I need my program create itself variable
TheDcoder replied to Elliotest's topic in AutoIt General Help and Support
Sorry @Jos, I thought this forum followed the "one question per thread" policy. Again, many apologies -
[Solved] I need my program create itself variable
TheDcoder replied to Elliotest's topic in AutoIt General Help and Support
Glad to know that my code works . About your other question, I recommend you to ask to MODs to split the thread with the question about GUI in the AutoIt GUI Help forum, only 1 question per 1 thread -
[Solved] I need my program create itself variable
TheDcoder replied to Elliotest's topic in AutoIt General Help and Support
Let me know if it works -
[Solved] I need my program create itself variable
TheDcoder replied to Elliotest's topic in AutoIt General Help and Support
You can use the Assign function in a loop For $iVarNum = 1 To 10 Assign("v" & $iVarNum, $iVarNum) Next -
Rings some bells
-
Answers to Exercises for AutoIt
TheDcoder replied to czardas's topic in AutoIt General Help and Support
Looks like you have misunderstood me Melba, I was trying to propose that as an idea, not to actually use Volatile to do what @czardas wanted -
Answers to Exercises for AutoIt
TheDcoder replied to czardas's topic in AutoIt General Help and Support
Something like this?: Global Volatile $vOneTimeUseOnly -
Answers to Exercises for AutoIt
TheDcoder replied to czardas's topic in AutoIt General Help and Support
So are we talking about Local variables at the scope of "outside functions"? -
Answers to Exercises for AutoIt
TheDcoder replied to czardas's topic in AutoIt General Help and Support
I think it would create more confusion for beginners , why encourage them to use which is not the way it works just to make sure that they use Local inside functions? The newbies use global variables, which are very easy to understand, as the newbies progress in their programming adventure, they will eventually recognize that Local variables are used inside functions... I see no problem here with using Global variables . -
Answers to Exercises for AutoIt
TheDcoder replied to czardas's topic in AutoIt General Help and Support
Quite funny . I prefer to do it right when I do it, no matter how small "it" is . -
Answers to Exercises for AutoIt
TheDcoder replied to czardas's topic in AutoIt General Help and Support
nope, gists are hard to manage and they have limited version control. Also, gist isn't really suited for multiple files, hard to navigate and download the required bits link to the raw code or linking to specific lines of code in a file. -
Answers to Exercises for AutoIt
TheDcoder replied to czardas's topic in AutoIt General Help and Support
If I remember correctly, isn't it impossible to declare Local variables outside functions? AutoIt automatically creates a global variable when declared out side a function regardless of the Keyword used to declare the variable. Local $vGlobalVariable = "foobar" Example() Func Example() MsgBox(0, $vGlobalVariable, $vGlobalVariable) EndFunc That code snippet works for me . -
Answers to Exercises for AutoIt
TheDcoder replied to czardas's topic in AutoIt General Help and Support
I can volunteer to manage a GitHub repository . Please let me know if anyone needs a hand . Regarding to the link between the exercises and solution, we can follow a naming scheme for the names of the code snippet files (.au3 files). -
Answers to Exercises for AutoIt
TheDcoder replied to czardas's topic in AutoIt General Help and Support
Maybe we can upload all of the answers as code snippets to a GitHub repository? -
Answers to Exercises for AutoIt
TheDcoder replied to czardas's topic in AutoIt General Help and Support
Are we going to post the solutions in this thread where everything is not in one place? -
LOL
- 995 replies
-
- isn autoit studio
- isn
-
(and 3 more)
Tagged with:
-
Western coast of the Netherlands? or Holland in the US?
- 995 replies
-
- isn autoit studio
- isn
-
(and 3 more)
Tagged with:
-
English spelling in German?
- 995 replies
-
- isn autoit studio
- isn
-
(and 3 more)
Tagged with:
-
Hmm... since I no longer use ISN AutoIt Studio, I have forgotten most of the options . @ISI360 might be able to help you!
- 995 replies
-
- isn autoit studio
- isn
-
(and 3 more)
Tagged with:
-
This is how it looks for me:
- 995 replies
-
- isn autoit studio
- isn
-
(and 3 more)
Tagged with:
-
I have used the Gui Builder and as far as I remember, I was using the English version
- 995 replies
-
- isn autoit studio
- isn
-
(and 3 more)
Tagged with:
-
Run cmd.exe + another exe
TheDcoder replied to FrancescoDiMuro's topic in AutoIt General Help and Support
You can try my Process UDF which is capable of returning the STD output for you