ToyBoi Posted August 8, 2008 Posted August 8, 2008 (edited) I attached a little image for you guys to look at basically the table on the bottom, what IE function or gui function has the ability to recognize that entire table and copy it? Edited August 20, 2008 by ToyBoi
d4rk Posted August 8, 2008 Posted August 8, 2008 First, recognize the code of the table in the HTML source code, then shake hand with _IE* and String*() [quote]Don't expect for a perfect life ... Expect a least troubles ones[/quote]Contact me : ass@kiss.toWhat I Have Done :Favorites Manager Mangage your favorite's folder, that's coolPC Waker For those who want to save stickersWebScipts Supporter For those who've just started with Web and WebScriptsTemporary Looker Simple but powerful to manage your Temporary folder, you know what you downloaded[UDF] _NumberFormat() Better performance on number display[UDF] _DirGet() What a folder contain [how many (hidden,normal,...) files], with one line of code[UDF] _IsPressEs() Just like _IsPress() but for a group of keys
ToyBoi Posted August 8, 2008 Author Posted August 8, 2008 (edited) d4rk said: First, recognize the code of the table in the HTML source code, then shake hand with _IE* and String*()hi I have managed to dig up the code Edited August 20, 2008 by ToyBoi
DaleHohm Posted August 8, 2008 Posted August 8, 2008 _IETableWriteToArray() Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model Automate input type=file (Related) Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better? IE.au3 issues with Vista - Workarounds SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead? Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble
ToyBoi Posted August 8, 2008 Author Posted August 8, 2008 DaleHohm said: _IETableWriteToArray() the function IETableGetCollection -------------------------------------------------------------------------------- Returns a collection object variable representing all the tables in a document or a single table by index. #include <IE.au3> _IETableGetCollection ( ByRef $o_object [, $i_index = -1] ) in the help file the example #include <IE.au3> $oIE = _IE_Example ("table") $oTable = _IETableGetCollection ($oIE, 0) $aTableData = _IETableWriteToArray ($oTable) they used 0, but how do they determine which table to get? what if there are many tables on the page? and i have the table id or the table name, where do I tell the code to just get a specific table?
DaleHohm Posted August 8, 2008 Posted August 8, 2008 The tables are numbered in source code order starting with 0 - so view the source (or use DebugBar) and count. If the table you want has a name= or id= attribure you can also use _IEGetObjByname or _IEGetObjById Dale Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model Automate input type=file (Related) Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better? IE.au3 issues with Vista - Workarounds SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead? Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now