Support Forums

Full Version: [RELEASE]Source Code Stealer
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5
Very Nice Smile
Will come in handy soon .
Yeah like stated above it seems like a useless program but besides that good job.
Nice job, but it's really not needed. Just right click the website and click view page source Oui
(11-04-2010, 06:01 AM)Marik™ Wrote: [ -> ]The dude obviously tried and made one of his first applications. Cut him some slack please.
And just for the record, it's:
Code:
textbox1.text = webbrowser1.documenttext
And for the save button:
Code:
Dim walla as system.io.streamwriter("C:\WAlla.txt")
walla.write(textbox1.text)
walla.dispose
I wrote this offhand, there might be some errors though.

Not quite... i believe he said HttpWebRequest is what he used, not a WebBrowser.

Code:
Dim wr As HttpWebRequest = HttpWebRequest.Create("http://www.google.com")
Dim response As HttpWebResponse = wr.GetResponse()
Dim sr As System.IO.StreamReader = New System.IO.StreamReader(response.GetResponseStream())
Dim source As String = sr.ReadToEnd()
TextBox1.Text = source

I like to use WebClient in my apps

Code:
Dim wc As WebClient = New WebClient
TextBox1.Text = wc.DownloadString("http://www.google.com")

dont forget to add

Imports System.Net





i think you need to put the images of the sites
That looks pretty cool, thanks for the share.
I made one of these once. Wasn't that difficult, since then I've given up VB.NET and went to PHP.
Nice release but u could just do it by right clicking
This only grabs html correct? GOod job.
nice release mate Thanks Smile
Pages: 1 2 3 4 5