-
Posts
7,103 -
Joined
-
Days Won
88
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by TheDcoder
-
StdoutRead Memory Problem (EDIT: and StdioClose)
TheDcoder replied to ferbfletcher's topic in AutoIt General Help and Support
@ferbfletcher Ah, I made my hypothesis: StdoutRead is not leaking memory, It needs to store all the output of 2 billion characters per hour, multiplied by 12 gives you 24 billion characters... when you call StdoutRead needs to store all the characters internally to return them when called... Since you have recompiled it, lets see what happens... -
How to Get a Webpage's Source HTML?
TheDcoder replied to Zohar's topic in AutoIt General Help and Support
@Zohar I am trying to locate the documentation but I can't find it... I will keep trying P.S Thanks for fixing my name -
How to Get a Webpage's Source HTML?
TheDcoder replied to Zohar's topic in AutoIt General Help and Support
@Zohar Oh , Well, you can check IE's COM documentation and get the appropriate parameters to extract the full HTML code TD P.S I am not The Doctor! D stands for Damon which is my name -
How to Get a Webpage's Source HTML?
TheDcoder replied to Zohar's topic in AutoIt General Help and Support
Try this: _IEDocReadHTML($oIE)TD -
@czardas A program could do that , A flat file maybe...
-
@BrewManNH I think he said that his files range from 400 600 MB to 4 GB , I think its possible to highly compress them with an reliable compressor (like 7zip)
-
You should read the documentation for FileOpen, concentrate on the mode parameter (2nd parameter), Make sure that you use the file handle this time! TD
-
@Jewtus Junk characters? Does the file contain foreign characters? This happens when AutoIt parses a text file in the wrong encoding
-
StdoutRead Memory Problem (EDIT: and StdioClose)
TheDcoder replied to ferbfletcher's topic in AutoIt General Help and Support
I need some information to make my hypothesis: 1. Did you try your code with latest version of AutoIt? 2. How much output does "mycommand.exe" produce in 1 hour? Does the rate of output remains constant? If not, give me the peak rate of the output. TD -
Gesture support in Melba's Scrollbars UDF
TheDcoder replied to Melba23's topic in AutoIt General Help and Support
Looks like you forgot a closing " (Quotation mark) -
Execute Func before script closes
TheDcoder replied to Msb12i's topic in AutoIt General Help and Support
OnAutoItExitRegister("MyFunc") Func MyFunc() ; Your code here EndFunc -
Hmmm... Looks nice , Why are you trying to make a PC assistant? [joke]Isn't Cortana enough for us[/joke]? , I would like a Name tied to a program, when I say "Launch <name>" it should launch the program tied to the name, for example Notepad will be tied to notepad.exe, when I say "Launch Notepad" it should launch Notepad TD P.S where is the 3rd screenshot?
- 7 replies
-
- pc assistant
- ai
-
(and 3 more)
Tagged with:
-
To blob or not to blob, storing files in a database
TheDcoder replied to guinness's topic in Developer General Discussion
Simple, Easier to manage & update, Your data will be saved even if your database get corrupted... I have some positive feeling about not blobing... and, using Blobs in web apps is not a good idea, it will be too much for the server, instead use regular linking, TD -
To blob or not to blob, storing files in a database
TheDcoder replied to guinness's topic in Developer General Discussion
I just say one thing, Don't blob. -
@nick2price You can use the AU3Info tool (Tools -> AU3Info in Full Installation of SciTE) to know the class of the window P.S You only need one of these: title/hWnd/class, Not all of them
-
@nick2price Use Send('^c')^v means Ctrl + V not Ctrl+ C (as you would see in command prompt) TD Edit: WinActivate won't work, You need the title/hWnd/class of the window to activate the windows, Read the documentation for more info
-
@nick2price Yep, That's what you do
-
Try this: <?php $output = exec('C:\Program Files (x86)\AutoIt3\AutoIt3.exe test2.au3'); echo "<pre>$output</pre>"; TD