Jump to content

fast text display


Athos
 Share

Recommended Posts

Hi guys I'm currently using:

Local $sHTML = _IEDocReadHTML($oIE)

to get the html source code from a page.

Thing is, I want to be able to view the entire source code preferably in a text document like notepad.

I tried using MsgBox, but it wont let me scroll down.

My current code to get this is as follows:

Run("notepad.exe")

Sleep(1000)

WinWait("[CLASS:Notepad]")





ControlSend("Untitled - Notepad","","", $sHTML)

Problem with this is that it takes a lot of time, and I want to be able to get the source code instantly.

Link to comment
Share on other sites

instantly, i suspect depends on your connection

you can try InetGet for a comparitively better speed

My code:

PredictText: Predict Text of an Edit Control Like Scite. Remote Gmail: Execute your Scripts through Gmail. StringRegExp:Share and learn RegExp.

Run As System: A command line wrapper around PSEXEC.exe to execute your apps scripts as System (LSA). Database: An easier approach for _SQ_LITE beginners.

MathsEx: A UDF for Fractions and LCM, GCF/HCF. FloatingText: An UDF for make your text floating. Clipboard Extendor: A clipboard monitoring tool. 

Custom ScrollBar: Scroll Bar made with GDI+, user can use bitmaps instead. RestrictEdit_SRE: Restrict text in an Edit Control through a Regular Expression.

Link to comment
Share on other sites

Athos,

This is another way to view/edit formatted HTML source pages.

;
; edit/display source HTML in WordPad
;
local $url = '[url="http://www.autoitscript.com/forum/topic/144393-fast-text-display/"]http://www.autoitscript.com/forum/topic/144393-fast-text-display/[/url]'
local $ofl = 'K:temp_output_file.txt'
local $ret = inetget($url,$ofl)
run ('write.exe ' & $ofl)

kylomas

edit: the forum editor is interpreting the url so you will need to change it

Edited by kylomas

Forum Rules         Procedure for posting code

"I like pigs.  Dogs look up to us.  Cats look down on us.  Pigs treat us as equals."

- Sir Winston Churchill

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...