supadodger 0 Posted November 18, 2010 i want to run 10 _inetgetsource at a time and im thinking adlibregister is the way... Share this post Link to post Share on other sites
James 377 Posted November 18, 2010 i want to run 10 _inetgetsource at a time and im thinking adlibregister is the way...AdlibRegister is for running a function mid-way between points of your code. It interrupts, which means it doesn't run at the same time.James Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ Share this post Link to post Share on other sites
supadodger 0 Posted November 18, 2010 (edited) AdlibRegister is for running a function mid-way between points of your code. It interrupts, which means it doesn't run at the same time.Jamesbut i couldnt stagger 10 of them and then unregister?i guess it still wouldnt speed it up any...hmmm Edited November 18, 2010 by supadodger Share this post Link to post Share on other sites
Bert 1,430 Posted November 18, 2010 The only real way around your problem is to run your app in 10 processes at once. It still is messy. The Vollatran project My blog: http://www.vollysinterestingshit.com/ Share this post Link to post Share on other sites
jchd 1,514 Posted November 19, 2010 From InetGet page in help file: Multiple downloads are supported if they are started in background mode. Sounds pretty close to what you want. This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt) Share this post Link to post Share on other sites
Tvern 11 Posted November 19, 2010 I've made examples for multi downloaders and That includes a method to raise the amount of simultanious connections for a process. I think at least one of them can be modified to fit your needs.P.S. I've also tried using winhttp and tcp, but the result was not quite as fast if you wondered. Share this post Link to post Share on other sites