-
Posts
7,103 -
Joined
-
Days Won
88
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by TheDcoder
-
Downloading files from URLs
TheDcoder replied to esullivan's topic in AutoIt General Help and Support
$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 -
Downloading files from URLs
TheDcoder replied to esullivan's topic in AutoIt General Help and Support
; You need the following functions: FileReadToArray ; For getting the download links InetGet ; To download the files in the backgroundTD -
@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
-
AuPad - Notepad in AutoIt ; Updated - Oct 26th, 2015
TheDcoder replied to MikahS's topic in AutoIt Example Scripts
It crashed when I clicked AutoIt Help: -
Process UDF, Get both the output & the exit code!
TheDcoder replied to TheDcoder's topic in AutoIt Example Scripts
@JohnOne Ohhhh... Thanks -
Process UDF, Get both the output & the exit code!
TheDcoder replied to TheDcoder's topic in AutoIt Example Scripts
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 -
[Sloved] Set Resizing for a RichEdit control?
TheDcoder replied to TheDcoder's topic in AutoIt GUI Help and Support
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 -
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
-
Maps 101: All you need to know about them!
TheDcoder replied to TheDcoder's topic in AutoIt Technical Discussion
@guinness I think I will update the introduction to be more specific on the current stage of development of maps Ummm... Maybe.... Maybe Not -
Maps 101: All you need to know about them!
TheDcoder replied to TheDcoder's topic in AutoIt Technical Discussion
@boththose Nice trick , But I will implement it in another example -
Maps 101: All you need to know about them!
TheDcoder replied to TheDcoder's topic in AutoIt Technical Discussion
@boththose -
EXE is 25% bigger with 3.3.14 than with 3.3.8.1
TheDcoder replied to dolphins's topic in AutoIt General Help and Support
Does that change M23's speeling? -
EXE is 25% bigger with 3.3.14 than with 3.3.8.1
TheDcoder replied to dolphins's topic in AutoIt General Help and Support
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 -
Maps 101: All you need to know about them!
TheDcoder replied to TheDcoder's topic in AutoIt Technical Discussion
@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? -
Maps 101: All you need to know about them!
TheDcoder replied to TheDcoder's topic in AutoIt Technical Discussion
I can't think use of maps too , But I guess I will eventually discover its use -
Old Autoit 2 need help to remove
TheDcoder replied to Smokes's topic in AutoIt General Help and Support
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 -
Old Autoit 2 need help to remove
TheDcoder replied to Smokes's topic in AutoIt General Help and Support
@Danyfirex I think its an compiled script -
Old Autoit 2 need help to remove
TheDcoder replied to Smokes's topic in AutoIt General Help and Support
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...