
rickybobby
-
Posts
30 -
Joined
-
Last visited
Reputation Activity
-
rickybobby reacted to Melba23 in #include, more than once?
rickybobby,
Well-written UDFs (and certainly the standard AutoIt include files) use the #include-once directive - that way they will only be included once no matter how any times they are listed in other include files within the script.
Note that the new SciTE4AutoIt3 just released includes (amongst many other utilities) Au3Stripper which removed all unused functions and variables from the include files to reduce the script size. You can download it from here.
M23
-
rickybobby reacted to BrewManNH in Splitting array values into new columns with multiple delim's
Just use the function StringSplit and use all 3 of your characters as delimiters and use flag 0 ($STR_CHRSPLIT) so that it splits on each character.
-
rickybobby reacted to Palestinian in Where/how to store numerical data?
Or you could use the RegWrite
-
rickybobby reacted to Melba23 in How to add process description?
rickybobby,
Look at #pragma in the Help file.
M23