Jump to content

sunsunshine

Members
  • Posts

    8
  • Joined

  • Last visited

sunsunshine's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. HI,guys! I have a problem to need your help! That I need enumerate all the threads of a process,and find out the module file name about every thread. I google and then find the ZwQueryInformationThread function can finish this work, I even try but have no resault,the address of thread entry is always 0 , I need your quickly soon crazy help! ss.au3
  2. IchBistTod , Can you give me an example ? I used these Code ,but failure, $hFile=FileOpen(@systemdir&"\regedt32.exe",16) $bFile=FileRead($hFile) _RunExeFromMemory($bFile)
  3. Thanks your remind,I delete the post already.
  4. Hello everybody,Today I find a problem about IE operation with AutoIt. This Url: http://www.sogou.com/sogou?query=autoit&_asf=www.sogou.com&_ast=1297683869&p=40040101&w=01019901&pid=sogou-netb-1d054d2981bea746-1520 I use _IELinkGetCollection() Collect all the url from the page success, @extended is not null. But when I usr code like this: For $oLink In $oLinks MsgBox(0,"",$oLink.href) Next The program report error,So in fact ,I want to get all the url from the page and auto click anyone link,but I can't finish it , I don't know maybe you can help me ,thanks!
  5. Thank you very much, maybe we can use WINAPI function to solve this problem.
  6. Thank your answer..Now I already tried it, In fact , we only use $olink.innertext then we can get the text of a link. Thanks again
  7. _IELinkGetCollection() can return the url of all links in a webpage, #include <IE.au3> $oIE = _IE_Example ("basic") $oLinks = _IELinkGetCollection ($oIE) $iNumLinks = @extended MsgBox(0, "Link Info", $iNumLinks & " links found") For $oLink In $oLinks MsgBox(0, "Link Info", $oLink.href) Next Here,$oLink.href), How can i get the link's text by $link.xxx? Thanks
×
×
  • Create New...