HTML Source Code Reader
Heres your chance to share your own tutorials with the community. Just post them on here. If your lucky they may even be posted on the main site.
3 posts
Page 1 of 1
Well this is the html source code reader of course...
Required:
1 Text Box
2 buttons... button1 - Go... button2- Get Source
1 Web Browser
1 Richrichtextbox
now simply enter these codes
![Image]()
in the download it has serial code it is 100-500-1532-5923-3904
Required:
1 Text Box
2 buttons... button1 - Go... button2- Get Source
1 Web Browser
1 Richrichtextbox
now simply enter these codes
Code: Select all
Image: Imports System.Drawing.Drawing2D
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
WebBrowser1.Navigate(TextBox1.Text)
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
RichTextBox1.Clear()
RichTextBox1.Text = WebBrowser1.DocumentText
End Sub
End Class

in the download it has serial code it is 100-500-1532-5923-3904
You do not have the required permissions to view the files attached to this post.
good tutorial
you can also use HttpWebRequest to do this
its easy 
source code

you can also use HttpWebRequest to do this


Code: Select all
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim request As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create(TextBox1.Text)
Dim response As System.Net.HttpWebResponse = request.GetResponse()
Dim sr As System.IO.StreamReader = New System.IO.StreamReader(response.GetResponseStream())
Dim sourcecode As String = sr.ReadToEnd()
RichTextBox1.Text = sourcecode
End Sub

source code
You do not have the required permissions to view the files attached to this post.
Find my programs on Softpedia
3 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023