VB Project Source Code

Tuesday 2 June 2015

Gecko Web Browser tutorial vb.net

Gecko Web Browser tutorial vb.net


Public Class Form1

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        fxb.Navigate("http://www.vbdotnet3school.blogspot.com")
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        fxb.GoBack()
    End Sub......






Monday 1 June 2015

Mouse Location tutorial vb.net

Mouse Location tutorial vb.net



Public Class Form1

    Private Sub Form1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseMove
        Label1.Text = "X   " & e.Location.X & "   Y   " & e.Location.Y
    End Sub......












Proxy tutorial vb.net

Proxy tutorial vb.net




Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim sProxy As New IEProxy

        sProxy.SetProxy(TextBox1.Text)

    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        Dim sProxy As New IEProxy
        sProxy.DisableProxy()
    End Sub
End Class



Imports System
Imports System.Runtime.InteropServices......








Sunday 24 May 2015

Create Text File VB.net

Create Text File VB.net

Make MyFolder Folder and then run the project



Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click......








Clip Board tutorial Vb.net

Clip Board tutorial Vb.net

Public Class Form1



    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load



        My.Computer.Clipboard.Clear().......





















Check internet connection tutorial Vb.net

Check internet connection tutorial Vb.net


Imports System.Runtime.InteropServices





Public Class Form1



    <DllImport("wininet.dll")> Private Shared Function InternetGetConnectedState(<System.Runtime.InteropServices.Out()> ByRef Description As Integer, ByVal ReservedValue As Integer) As Boolean
    End Function.......










System ip address tutorial VB.net

System ip address tutorial VB.net


Imports System.Net
Public Class Form1




    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim hostname As IPHostEntry = Dns.GetHostByName(TextBox1.Text)
        Dim ip As IPAddress() = hostname.AddressList......