Jump to content

TheDcoder

Active Members
  • Posts

    7,103
  • Joined

  • Days Won

    88

Everything posted by TheDcoder

  1. @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 .
  2. @farhadrahman2 This is what he meant: https://www.autoitscript.com/autoit3/docs/keywords/For.htm
  3. Yes, you can share your programs here: https://www.autoitscript.com/forum/files/ Good luck, TD
  4. If that is the case then ShellExecute won't work for you, you need a more advanced code.
  5. Yes @KeshHERE. Use IniWrite and IniRead
  6. Please show us your attempts, we don't spoon feed users.
  7. 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
  8. Definitely its not necessary, but it *is* a great addition to the AutoIt Community
  9. At first I though it was spam lol (Because of the thread title)
  10. @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
  11. Not many understand Spanish here, it would be nice if you would translate it to English
  12. 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
  13. And If...Else...EndIf is the salt for Select...EndSelect
  14. 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
  15. @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?
  16. @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
  17. 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.
  18. Thanks "grandpa." . I am already working on new features on my DcoderBot (IRC Bot for handling those things).
  19. I thought posting the IP of the troll (according to @Jos the troll was @JohnOne) ok because... because... He is a troll anyway , He should use something like a proxy yo hide his IP. I will note this point and I will warn the troll that I am going to publish his IP in the public.
×
×
  • Create New...