-
Posts
7,103 -
Joined
-
Days Won
88
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by TheDcoder
-
I agree with @guinness, Ads are annoying in desktop apps... You might want to try including crapware in your software's installer instead of software ads, TD
-
@Jos True, not a big problem for free software , Maybe use another script to check the hash? That would only complicate things instead of making it difficult I guess... TD
-
@Jos How will you check the hash if you change the code for checking the hash?
-
Messed up AutoIt GUI dimensions
TheDcoder replied to TheDcoder's topic in AutoIt Technical Discussion
@Jon Oh, Thanks! @guinness Thanks! -
Hello, I just discovered a.... Bug? or Glitch... Here is it: GUIs created with AutoIt are always larger than specified dimensions, i.e 16 pixels larger in width & 39 pixels in height, so If you want the exact dimensions, you need to subtract 16 from width & 39 from height... Here an example of a GUI with the same exact dimensions of command prompt: #include <GUIConstantsEx.au3> GUICreate("TEST", 677, 343) GUISetState() While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEndNow open command prompt & see if they are the same in the size, this is the result for me: But if you modify the code to this: #include <GUIConstantsEx.au3> Global Const $eGUI_WIDTH_CORRECTION = 16 Global Const $eGUI_HEIGHT_CORRECTION = 39 GUICreate("TEST", 677 - $eGUI_WIDTH_CORRECTION, 343 - $eGUI_HEIGHT_CORRECTION) GUISetState() While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEndThey match perfectly... I would like to know if this is a bug or if there is some strange reason behind this :-/ Thanks in Advance, TD
-
@guinness lol I don't know if it would be a good idea, I don't think that users of Perseus would like to check the online doc instead of the local one, also what if they live in a country where the internet connection is poor & get gets disconnected randomly (like mine )? I will think of it when someone say the same thing, TD
-
@Jos Thanks! I will put a small sleep in there, I was thinking of returning the pid & the process handle, PID for capturing the output & Process handle for capturing the exit code, I will implement it tomorrow as it is mid-night here, Goodnight, TD
-
I am continuing my posting combo , RunCommand! Get both the output & the exitcode of a command with a single line of code, TD There is a better RunCommand function in the Process UDF with many more options & functions However if you still wish to use the old one, here is the code:
-
Close the entire application of excel
TheDcoder replied to Queener's topic in AutoIt General Help and Support
@mpower Why not use this?: Run(@ComSpec & " /c " & 'taskkill /im excel.exe /f /t', "", @SW_HIDE) -
@guinness Oh, Thanks! will look into it
- 24 replies
-
- mgc
- magic number calculator
-
(and 1 more)
Tagged with:
-
I would not prefer downloading the windows 10 update automatically, I am already near my FUP limit of my ISP (19.5 GB used, 20 GB limit)
-
Today is 29 & I just discovered this