-
Posts
7,103 -
Joined
-
Days Won
88
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by TheDcoder
-
@Belini You would have to work with the print API in windows, I don't know much about it It would best if you follow @dmob's suggestion .
-
@farhadrahman2 This is what he meant: https://www.autoitscript.com/autoit3/docs/keywords/For.htm
-
How to change Variable value permenently!!?
TheDcoder replied to KeshHERE's topic in AutoIt GUI Help and Support
Yes, you can share your programs here: https://www.autoitscript.com/forum/files/ Good luck, TD -
If that is the case then ShellExecute won't work for you, you need a more advanced code.
-
How to change Variable value permenently!!?
TheDcoder replied to KeshHERE's topic in AutoIt GUI Help and Support
Yes @KeshHERE. Use IniWrite and IniRead -
Please show us your attempts, we don't spoon feed users.
-
A polished version of AutoBert's reply: Use ShellExecute with the $SHEX_PRINT verb, Example: #include <AutoItConstants.au3> Global Const $IMAGE = "C:\Users\TheDcoder\Pictures\TheDcoder.png" ; Location of the image file to print ShellExecute($IMAGE, "", "", $SHEX_PRINT) TD
-
At first I though it was spam lol (Because of the thread title)
-
Traducir ISN AUTOIT STUDIO
TheDcoder replied to TheSpannish's topic in AutoIt Projects and Collaboration
@Melba23 Oh! It makes sense if he is looking for assistance for translating ISN AutoIt Studio . P.S A long time since we directly mentioned each other -
Traducir ISN AUTOIT STUDIO
TheDcoder replied to TheSpannish's topic in AutoIt Projects and Collaboration
Not many understand Spanish here, it would be nice if you would translate it to English -
Unofficial IRC Channel for AutoIt in freenode!
TheDcoder replied to TheDcoder's topic in AutoIt Technical Discussion
lol -
Unofficial IRC Channel for AutoIt in freenode!
TheDcoder replied to TheDcoder's topic in AutoIt Technical Discussion
Hello Guys, This post contains brief information about the growth of The Unofficial AutoIt Channel . The No. 1 thing that happen over time is the growth of the userbase, its eventually bound to happen. I have many people come and go, But I am sure that I have seen atleast 15 people until now. If you ask right now, there are 10 people (excluding 2 bots) in the channel . I am sure we will get more users as the time flows The second most big thing is my bot, DcoderBot. I made him in my free time (which is very less because of my ongoing project) but he has proven to be quite useful . Probably the most used feature is that DcoderBot's ability to google something and return the result in the chat itself! Now no more googling in the browser! The third fact is nothing but stability of the channel, I have not received any spam since @JohnOne's troll session . ##AutoIt is now a established channel on freenode. Plans for the future: The first thing I am thinking about is improving DcoderBot by implementing a Plugin API and make some nice plugins , @willichan is already planning to fork DcoderBot and make a IRC Bot to play chess! How exciting is that!? The next (probably the most important) thing is a well defined set of rules for ##AutoIt. The last most important thing is attracting more users! ##AutoIt has positively influenced many people in the vast network of freenode, Heck, we even have some people who are *just* interested in AutoIt! Well I think its time to end this post. Stay tuned for the future updates... or if you are not patient enough, you can try out ##AutoIt for yourself! Its easy and fun! Trust me! . If you are new to IRC, don't worry, I have got you covered, Just follow my guide located here and once you successfully join ##AutoIt, I can guide you from there on . Hope to see ya guys in ##AutoIt, TD -
And If...Else...EndIf is the salt for Select...EndSelect
-
[Solved] Error allocating memory for a 6 MB file
TheDcoder replied to TheDcoder's topic in AutoIt General Help and Support
The specs are too complex for me to understand Oh ... Ok then... can you please look while once you are free? I don't want to use my chunk by chunk search system -
[Solved] Error allocating memory for a 6 MB file
TheDcoder replied to TheDcoder's topic in AutoIt General Help and Support
@jchd Yes, That indeed is true but that file is generated normally as the first provided file... Why is it not working? Does it have multiple headers? -
[Solved] Error allocating memory for a 6 MB file
TheDcoder replied to TheDcoder's topic in AutoIt General Help and Support
@jchd Sorry for bugging you again but your script is suddenly not working for me ... Download Test File: https://we.tl/zYIHvAKj04 (Expiry in 7 days) #include <FileConstants.au3> Local Const $7zHeaderSize = 32 Local $filename = @ScriptDir & "\MC Snapshot Testing World.mcmap" Local $filehdl = FileOpen($filename, $FO_BINARY) Local $fileheader = FileRead($filehdl, $7zHeaderSize) If BinaryMid($fileheader, 1, 6) <> Binary('0x377ABCAF271C') Then MsgBox(0, '', 'File is not a 7z archive') Exit EndIf Local $blockheader = DllStructCreate("byte[" & $7zHeaderSize & "]") DllStructSetData($blockheader, 1, $fileheader) Local $header = DllStructCreate("align 1;byte tag[6];byte major;byte minor;uint crc1;uint64 offset;uint64 size;uint crc2", DllStructGetPtr($blockheader)) FileSetPos($filehdl, DllStructGetData($header, 'offset') + DllStructGetData($header, 'size'), $FILE_CURRENT) Local $sTrailer = BinaryToString(FileRead($filehdl)) ConsoleWrite($sTrailer) Sleep(1000) I only get "M" as the console output... Thanks in advance, TD -
I discovered why this is not possible. Because AutoIt3.exe (the interpreter) already occupies 15 MB of the memory so 15 MB + 2 GB = >2GB . P.S Sorry for bumping old thread, I wanted to post the answer.
-
Nice app