Jump to content

TheDcoder

Active Members
  • Posts

    7,103
  • Joined

  • Days Won

    88

Everything posted by TheDcoder

  1. Please provide "WinHttpConstants.au3" TD
  2. @SadBunny Will look into that P.S You can use your own choice of text
  3. 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
  4. 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
  5. 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
  6. 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
  7. Pretty old UDF but Pretty useful though, 5 stars from me!!! TD
  8. @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
  9. Thanks, TD
  10. Wenn Sie eine Zufallszahl in einem MsgBox erzeugen wollen, dann versuchen Sie dies: MsgBox(64, "Zufallszahl", Random(0, 9, 1)) TD
  11. ***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.
  12. @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
  13. @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
  14. 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?
  15. @JLogan3o13 J1's version is bugged, it does not check if the script is compiled TD
  16. @guinness Sorry, Didn't notice that in the online documentation
  17. 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
  18. Here is my >recent thread about the same problem... TD
  19. #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
  20. @Danp2 I agree, but IMO its always 3 TD
  21. Updated! Here is the change log: Just one more update & it will be ready for production, promise Enjoy! TD
  22. StringRight("nos.nl/teletekst#801", 3) TD
×
×
  • Create New...