Thread Rating:
  • 1 Vote(s) - 1 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[RELEASE]Source Code Stealer
#31
Very Nice Smile
Will come in handy soon .
Reply
#32
Yeah like stated above it seems like a useless program but besides that good job.
[Image: sfsig.png]
Reply
#33
Nice job, but it's really not needed. Just right click the website and click view page source Oui
[Image: dHtHt.png]

Learning C++
Reply
#34
(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





Reply
#35
i think you need to put the images of the sites
Reply
#36
That looks pretty cool, thanks for the share.
"I'm not slacking off... my code it compiling"
Reply
#37
I made one of these once. Wasn't that difficult, since then I've given up VB.NET and went to PHP.
Reply
#38
Nice release but u could just do it by right clicking
Reply
#39
This only grabs html correct? GOod job.
Reply
#40
nice release mate Thanks Smile
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [Release] Password Enhancer v1.0 [/Release] Resistance 11 5,167 09-29-2013, 08:58 PM
Last Post: Resistance
  Get Country Code In 1 Line Of Code. wchar_t 13 4,016 11-28-2012, 06:49 AM
Last Post: Cubs
  [SOURCE] VTSkid-Control [Release] FizzyMentos 14 3,767 09-11-2012, 08:18 PM
Last Post: malis2007
  [RELEASE] Up2Minus [MINUS UPLOADER [RELEASE] Kenneth 2 1,300 09-08-2012, 04:17 PM
Last Post: spesificrelax
  Crypter code source - project files [ vb.net ] rid47 2 2,342 09-08-2012, 04:17 PM
Last Post: spesificrelax

Forum Jump:


Users browsing this thread: 1 Guest(s)