-
Posts
7,103 -
Joined
-
Days Won
88
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by TheDcoder
-
@SadBunny Will look into that P.S You can use your own choice of text
-
Here is the code: #include-once ; -- Created with ISN Form Studio 2 for ISN AutoIt Studio -- ; #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Include <GuiButton.au3> ShellExecute(@DesktopDir & '\test.txt', Default, Default, "open") Global $test = GUICreate("test",124,108,-1,-1,-1,-1) GUISetBkColor(0xFFFFFF,$test) GUICtrlCreateButton("Hell No",12,12,100,30,128,-1) GUICtrlSetImage(-1, @DesktopDir & '\12.ico') GUICtrlCreateButton("Hell Yeah",12,60,100,30,128,-1) GUICtrlSetImage(-1, @DesktopDir & '\11.ico') GUISetState(@SW_SHOW,$test) Note that the icons are not being displayed, how can I get them to display icon? Thanks in advance, TD 11.ico 12.ico
-
:facepalm:
-
Error:
-
Hello, Try running this code: ShellExecute(@DesktopDir '/test.txt', Default, Default, "open") I got the following error: Why is this happening? Thanks In Advance, TD
-
What are you trying to do here?: Case $b_login If( GUICtrlRead($id_user) = "2320012") & If( GUICtrlRead($id_pass) = "27199810") Then MsgBox(0,0,0) I don't understand why you are using 0 for all TD P.S "If" is a keyword not a function
-
This should work: If GUICtrlRead($id_user) = "2320012" Then MsgBox(0,0,0) Please provide more details as your code does not make sense TD
-
Pretty old UDF but Pretty useful though, 5 stars from me!!! TD
-
@ISI360 Why don't use a normal edit box instead of _SciLexer for text files? (Bitte verwenden Sie einen normalen EditBox statt _SciLexer für Textdateien) TD
- 995 replies
-
- isn autoit studio
- isn
-
(and 3 more)
Tagged with:
-
Thanks, TD
-
Wenn Sie eine Zufallszahl in einem MsgBox erzeugen wollen, dann versuchen Sie dies: MsgBox(64, "Zufallszahl", Random(0, 9, 1)) TD
-
***ANNOUNCEMENT*** There will be a HUGE language update in the upcoming version, Please help me by contributing to this update, i.e Translate 4 dialogs to your native language Here is the format for submitting your translation: Case ; <last 2 digits of hex> Return ; Translation of 1st Dialog Case ; <last 2 digits of hex> Return ; Translation of 2nd Dialog Case ; <last 2 digits of hex> Return ; Translation of 3rd Dialog Case ; <last 2 digits of hex> Return ; Translation of 4th Dialog <---------------------Notes----------------------> <last 2 digits of hex> = last 2 digits of hex value your native language, Hex Values can be found HERE Dialogs: <---------------------Notes----------------------> Example translation for English: Case 09 Return "You done something which shouldn't be done" Case 09 Return "You can't benefit from a stolen script, Guiltiness will take over your mind, Don't do something bad just for fun, Decide..." Case 09 Return "Please forgive me and do the right thing" Case 09 Return "Let me commit the crime..." Current contributors: czyt for Chinese (Simplified) ISI360 for German TheSpannish for Spanish DarkwarlorD for Portuguese Thank you all for helping me, TD P.S Sorry for the hype title.
-
How to make an IDE for Autoit
TheDcoder replied to kcvinu's topic in AutoIt General Help and Support
@kcvinu Probably the most promising IDE made in AutoIt is ISN AutoIt Studio by ISI360, check its credits sction for more info. If you wanna implement AutoIt in an IDE, I can help you personally, PM me if you want me to, TD -
@argumentum In comments section of the script & documentation, Its stated that "Recommended to use when compiling" meaning you can implement this UDF when compiling as SciTE has some issues with the call function in the __DIAC_Populate function... also its has noting to do with your script, TD P.S I will look into your idea anyway
-
How to make an IDE for Autoit
TheDcoder replied to kcvinu's topic in AutoIt General Help and Support
@guinness Thanks, TD -
How to make an IDE for Autoit
TheDcoder replied to kcvinu's topic in AutoIt General Help and Support
There is already one which exist, SciTE for AutoIt by Jos P.S Are you trying to make an IDE or Integrate AutoIt to an IDE? -
@JLogan3o13 J1's version is bugged, it does not check if the script is compiled TD
-
Rename all folders in a directory
TheDcoder replied to Yuljup's topic in AutoIt General Help and Support
@guinness Sorry, Didn't notice that in the online documentation -
Rename all folders in a directory
TheDcoder replied to Yuljup's topic in AutoIt General Help and Support
Oops.... I was in a hurry, so I had to write the code here (i.e write code between code tags) and I didn't notice that first variable was un-declared Hope it explains why I did it, TD -
Really Special Charactes in label (√/←/...)
TheDcoder replied to virhonestum's topic in AutoIt General Help and Support
Here is my >recent thread about the same problem... TD -
Rename all folders in a directory
TheDcoder replied to Yuljup's topic in AutoIt General Help and Support
#include <Array.au3> Global $aFolders = _FileListToArray($sPath, '*', 2, True) Global $sSuffix = '_renamed' For $i = 1 To Ubound($aFolders) - 1 DirMove($aFolders[$i], $aFolders[$i] & $sSuffix) Next TD -
make a variable of part of url
TheDcoder replied to jeroen96's topic in AutoIt General Help and Support
@Danp2 I agree, but IMO its always 3 TD -
Updated! Here is the change log: Just one more update & it will be ready for production, promise Enjoy! TD
-
make a variable of part of url
TheDcoder replied to jeroen96's topic in AutoIt General Help and Support
StringRight("nos.nl/teletekst#801", 3) TD