Jump to content

TheDcoder

Active Members
  • Posts

    7,103
  • Joined

  • Days Won

    88

Everything posted by TheDcoder

  1. New version: 28-07-2015, Version 0.6 Beta: Added: Installer, Now supports selection of AutoIt's folder Added: Added support for sorting Styles & ExStyles Fixed: Now does not count commas in strings as normal parameter commas Fixed: Typo "Importent" --> "Important" in Doc Please delete the "Magic Number Calculator" folder in appdata folder before replacing the old executable, TD
  2. I missed that post, Thanks guinness
  3. Hello ,This is the code: $sPattern = ; ??? StringRegExpReplace('This is a "test" string', $sPattren, "") ; I need to remove anything which is enclosed within Quotes or Apostrophes (Single Quotes), So the return string needs to be: "This is a string" Thanks in Advance, TD !
  4. @boththose Hmm... I will do something about that, Thanks for the valuable intel! TD
  5. @guinness It will take a while to search your treasure chest for the StringStripString function , TD
  6. @guinness Adblockers block bit.ly? I used ABP but its not blocking for me , I am afraid that I need to be a little rude here but they need to disable their Adblocker to access the source , I will check my script using that, Thanks! TD
  7. @mikell I will remove the exe file from the sources, this will prevent it from being flaged @guinness I will implement this feature in the next release Edit: Removed exe in sources
  8. @mikell Ah , I will implement it too
  9. @Danyfirex Understood, Will do it, TD
  10. @Danyfirex Hmmm... Speaking theoretically, It might not be possible... But I will experiment a bit & report back to you, TD
  11. @Danyfirex $WS_EX_CONTROLPARENT & $WS_MINIMIZEBOX have the same value (i.e 65536), In cases like that, MNC auto picks anyone of the constants (it will not effect the GUI in any way) with the same value. Combined support? I can't understand please explain, TD
  12. @mLipok Thanks! I didn't noticed it, Will be fixed in the new release, TD
  13. @mLipok Used some online tools, Thanks!
  14. Version 0.6

    499 downloads

    Please refer to the main thread
  15. The long awaited! Magic Number CalculatorMagic Number Calculator is a useful tool if you have code which does not uses constants but instead use magic numbers to specify Styles & ExStyles... Its Features: Small & Compact Standalone exeutableAutomatically generates the Corrected function lineMade for the lazy, Press the "Press the Paste Button", "Press the Calculate Button", Wait, "Press the Copy Button" & Done!Fast CalculationsThe Unlicensed Open Source >>> Links <<< Source & Version Archive Bug Submission & Bug Tracker >>>Download<<< https://www.autoitscript.com/forum/files/file/352-magic-number-calculator/ Please Report Bugs & Request Features in the Bug Submission form! It will help me keep track of all requests! P.S If you are not able to view the sources & version archive, please try disabling your adblocker
  16. @mLipok http://www.pcworld.com/article/253618/how_to_use_microsoft_word_to_create_an_ebook.html
  17. Wow, 3 years of hard work! you deserve a gold medal!
  18. Just discovered a unfinished sentence, Prologue Section 3 (Pg no. 6) at the very bottom of the page: "... If you ever get stuck, you can visit the" & End of the page, not continued in the next page, Thanks! TD . Ooops, sorry, I was expecting "Help file" instead of "AutoIt Online forum"
  19. ......Wish I had this book when I started programming in AutoIt... I don't have any words in my brain to say, I am still amazed by your book & I am not out of the shock yet. TD
  20. I use XAMPP to test any modifications for my site & to learn php
  21. @Manadar Oh, Thanks, Can't remember where I got that :-/
  22. Use WAMP instead of XAMPP because XAMPP is built for development purposes i.e It is not meant to be used for web servers, WAMP is similar to XAMPP but its built for hosting web servers, TD Its all crap, TD
  23. Hello, I am trying to figure out what is the problem but I am can't seem to find it , Here is the GUI: Local $hGUI = GUICreate("Magic Number Calculator", 528, 287) GUISetBkColor(0xFFFFFF, $hGUI) GUICtrlCreateGroup("Control Panel", 7, 2, 514, 110) GUICtrlCreateLabel("Function:", 14, 21, 98, 15) GUICtrlCreateLabel("Corrected Function:", 14, 44, 98, 15) GUICtrlCreateLabel("Status:", 14, 67, 50, 15) Local $idFunctionInput = GUICtrlCreateInput("", 113, 16, 325, 20) Local $idCorrectedFunctionInput = GUICtrlCreateInput("", 113, 38, 325, 20, $ES_READONLY) Local $idPasteButton = GUICtrlCreateButton("Paste", 442, 15, 74, 22, $BS_BITMAP) Local $idCopyButton = GUICtrlCreateButton("Copy", 442, 37, 74, 22, $BS_BITMAP) Local $idHelpAndAboutButton = GUICtrlCreateButton("Help && About", 442, 60, 74, 22, $BS_BITMAP) Global $idStatusBar = GUICtrlCreateLabel("Idle", 113, 61, 325, 20, $SS_CENTER) Local $idCalculateButton = GUICtrlCreateButton("Calculate!", 221, 83, 100, 26, $BS_BITMAP) Local $idStyleList = GUICtrlCreateListView("Style|Value", 7, 117, 253, 164) Local $idExStyleList = GUICtrlCreateListView("Ex-Style|Value", 268, 117, 253, 164) GUICtrlSetImage($idPasteButton, @ScriptDir & '\Media\Icons\page_copy.png') GUICtrlSetImage($idCopyButton, @ScriptDir & '\Media\Icons\page.png') GUICtrlSetImage($idCalculateButton, @ScriptDir & '\Media\Icons\calculator.png')GUISetState()Icons: Thanks in advance, TD
  24. @Melba23 I would have figured that out if the OP's code had worked
×
×
  • Create New...