-
Posts
7,103 -
Joined
-
Days Won
88
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by TheDcoder
-
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
- 24 replies
-
- mgc
- magic number calculator
-
(and 1 more)
Tagged with:
-
RegEx help with Quotes & Apostrophes
TheDcoder replied to TheDcoder's topic in AutoIt General Help and Support
I missed that post, Thanks guinness -
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 !
-
@boththose Hmm... I will do something about that, Thanks for the valuable intel! TD
- 24 replies
-
- mgc
- magic number calculator
-
(and 1 more)
Tagged with:
-
@guinness It will take a while to search your treasure chest for the StringStripString function , TD
- 24 replies
-
- mgc
- magic number calculator
-
(and 1 more)
Tagged with:
-
@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
- 24 replies
-
- mgc
- magic number calculator
-
(and 1 more)
Tagged with:
-
@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
- 24 replies
-
- mgc
- magic number calculator
-
(and 1 more)
Tagged with:
-
@mikell Ah , I will implement it too
- 24 replies
-
- mgc
- magic number calculator
-
(and 1 more)
Tagged with:
-
@Danyfirex Understood, Will do it, TD
- 24 replies
-
- mgc
- magic number calculator
-
(and 1 more)
Tagged with:
-
@Danyfirex Hmmm... Speaking theoretically, It might not be possible... But I will experiment a bit & report back to you, TD
- 24 replies
-
- mgc
- magic number calculator
-
(and 1 more)
Tagged with:
-
@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
- 24 replies
-
- mgc
- magic number calculator
-
(and 1 more)
Tagged with:
-
@mLipok Thanks! I didn't noticed it, Will be fixed in the new release, TD
- 24 replies
-
- mgc
- magic number calculator
-
(and 1 more)
Tagged with:
-
-
-
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
- 24 replies
-
- mgc
- magic number calculator
-
(and 1 more)
Tagged with:
-
Introductory learn to program text using Au3
TheDcoder replied to Jfish's topic in AutoIt Technical Discussion
@mLipok http://www.pcworld.com/article/253618/how_to_use_microsoft_word_to_create_an_ebook.html -
Introductory learn to program text using Au3
TheDcoder replied to Jfish's topic in AutoIt Technical Discussion
Wow, 3 years of hard work! you deserve a gold medal! -
Introductory learn to program text using Au3
TheDcoder replied to Jfish's topic in AutoIt Technical Discussion
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" -
Introductory learn to program text using Au3
TheDcoder replied to Jfish's topic in AutoIt Technical Discussion
......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 -
I use XAMPP to test any modifications for my site & to learn php
-
@Manadar Oh, Thanks, Can't remember where I got that :-/
-
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
-
Button not displaying image for some reason
TheDcoder replied to TheDcoder's topic in AutoIt GUI Help and Support
@LarsJ Oh, thanks! -
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
-
_ArrayUnique failing for some reason
TheDcoder replied to TheDcoder's topic in AutoIt GUI Help and Support
@Melba23 I would have figured that out if the OP's code had worked