Jump to content

TheDcoder

Active Members
  • Posts

    7,103
  • Joined

  • Days Won

    88

Everything posted by TheDcoder

  1. $sVersion = "6.8.5" ; Change this to adjust the version to download $sURL = "https://notepad-plus-plus.org/repository/" & StringLeft($sVersion, 1) & ".x/" & $sVersion & "/npp." & $sVersion & ".Installer.exe" MsgBox(0, 0, $sURL)TD
  2. ; You need the following functions: FileReadToArray ; For getting the download links InetGet ; To download the files in the backgroundTD
  3. @kcvinu I think is not possible , I am not sure but I think the events when "the little keyword selector appears" and "when a hotkey is pressed" differ, SciTE natively handles the first event (keyword elector) whereas the hotkey can trigger various command I am not that advanced yet , You might want to do huge amount of research or consult Jos personally to help. That is all I can say, TD
  4. @kcvinu From (SciTE ->) Help -> SciTE Help -> SciTE4AutoIt3-Gettingstarted: As @Jos suggested, read the SciTE Help file
  5. @kcvinu I did a search for learning lua scripting language, I got many good results, they should be enough for you to get started
  6. @kcvinu Glad you that you like my tutorials , unfortunately I don't know the syntax of a properties file
  7. @kcvinu Open SciTE, Options -> Open au3.properties This will open au3.properties, look around line 50, you can add your own program's option there
  8. It crashed when I clicked AutoIt Help:
  9. Updated , Changelog: Added $PROCESS_DEBUG option Changed Constant's values, they now are powers of 2 (for compatability with BitAND) Changed _Process_RunCommand to accept $PROCESS_DEBUG, You can now debug directly using this function Changed _Process_DebugRunCommand, Now you can resize it Also some little cleanups
  10. I figured it out, Thanks to Mat #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <GuiRichEdit.au3> Global $hGUI = GUICreate("Test GUI", 500, 300, -1, -1, BitOR($WS_SIZEBOX, $WS_SYSMENU, $WS_VISIBLE)) Global $hRichEdit = _GUICtrlRichEdit_Create($hGUI, "", 0, 0, 500, 300) ; GUICtrlSetResizing($hRichEdit, $GUI_DOCKAUTO) ; Don't even think of trying this GUIRegisterMsg($WM_SIZE, "WM_SIZE") ; Register the function While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Func WM_SIZE($hWnd, $iMsg, $wParam, $lParam) Local $iWidth = _WinAPI_LoWord($lParam) Local $iHeight = _WinAPI_HiWord($lParam) _WinAPI_MoveWindow($hRichEdit, 2, 2, $iWidth - 4, $iHeight - 4) Return 0 EndFunc ;==>WM_SIZE, Thanks Mat :)TD
  11. Hello everyone , I want to set the resizing of a RichEdit control in a GUI, Unfortunately GUICtrlSetResizing only accepts IDs not Handles #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <GuiRichEdit.au3> $hGUI = GUICreate("Test GUI", 500, 300, -1, -1, BitOR($WS_SIZEBOX, $WS_SYSMENU, $WS_VISIBLE)) $hRichEdit = _GUICtrlRichEdit_Create($hGUI, "", 0, 0, 500, 300) ; GUICtrlSetResizing($hRichEdit, $GUI_DOCKAUTO) ; Don't even think of trying this While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEndI want the RichEdit to always fill the whole window, Thanks in Advance TD
  12. @guinness I think I will update the introduction to be more specific on the current stage of development of maps Ummm... Maybe.... Maybe Not
  13. @boththose Nice trick , But I will implement it in another example
  14. Does that change M23's speeling?
  15. But if we use upx then we can make the compiled script smaller, right? I think the OP does not care if his complied script rings the bells for the AV P.S Correct your speelings
  16. @JohnOne People in the shopping mall wanted some sandal wood @boththose How can I get the key to the element if I use For...In?
  17. I can't think use of maps too , But I guess I will eventually discover its use
  18. Avast puts up a blue box with the avast clearly written on it when it performs a deep scan on an application... I think comodo might be blocking the script file here: Source: https://help.comodo.com/topic-72-1-451-4768-.html This might help you with delfix: https://help.comodo.com/topic-72-1-284-3071-.html TD
  19. @Danyfirex I think its an compiled script
  20. If you still have some pesky problem with delfix then please post your questions on their forums: https://toolslib.net/forum/ P.S There are no leftovers of AutoIt in your system, Delfix is coded in AutoIt so the error says...
×
×
  • Create New...