Jump to content

TheDcoder

Active Members
  • Posts

    7,103
  • Joined

  • Days Won

    88

Everything posted by TheDcoder

  1. 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
  2. @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
  3. @Jos How will you check the hash if you change the code for checking the hash?
  4. @Jon Oh, Thanks! @guinness Thanks!
  5. 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
  6. @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
  7. @guinness Thanks for the 2 cents , But I would still prefer old CHM because of its compatibility & portability , CHM uses HTML for the docs so it would be easy to port to an other solution if needed, TD
  8. @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
  9. 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:
  10. Welcome to AutoIt forums Mihail! , What are you trying to do with that batch script? Since its beyond my scope to convert it to AutoIt script, you can try these resources to get down the basics of AutoIt, TD
  11. Nice family @wakillon
  12. @mpower Why not use this?: Run(@ComSpec & " /c " & 'taskkill /im excel.exe /f /t', "", @SW_HIDE)
  13. But GitHub warned me about something about redirecting my currents repos when I clicked the "Change Username" button, Hope GitHub didn't messed up anything
  14. Just changed the username to "TheDcoder" in GitHub, There was a user called "TheDCoder" when I joined GitHub, I contacted GitHub about his, this was the reply: I am happy, TD
  15. @guinness Oh, Thanks! will look into it
  16. 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)
  17. Today is 29 & I just discovered this
  18. Welp, I don't know the coding stuff but I will manage the whole project in a organized manner, make the documentation, maybe code cleanup? If I am eligible to volunteer, Count me in TD
×
×
  • Create New...