1. Open Visual Basic 6.0 dan Pilih " Standart EXE "
2. Masukan Komponen Microsoft Winsock Controls 6 & Microsoft Windows Common Controls 6 (SP6) Untuk memasukan komponenya pertama klik Project dan pilih Components atau bisa juga dengan tekan ( CTRL + T )
* Beri tanda centang pada
* Microsoft Winsock Control 6.0 & Microsoft Windows Common Controls 6 (SP6).
3. Lalu buat 1 buah Progressbar, 1 buah Timer, 4 buah Lebel.dan 2 Command Button
* Atur Propertinya seperti ini :
- Progressbar ( Max = 30000)
- Timer1 (Enabled = False dan Interval = 1000)
- Label1 (Caption = Waktu)
- Label2 (Caption = Nama Komputer)
- Label3 (Caption = IP Komputer)
- Label4 (Caption = Port)
- Command1 (Caption = Deteksi)
- Command2 (Caption = Keluar)
5. Selesai ... Untuk mencoba program tersebut silahkan tekan F5 Pada keyboard Jika anda masih belum paham bisa lihat videonya disiniDim a As IntegerPrivate Sub Command1_Click()
For a = 1 To 30000
ProgressBar1.Value = a
Next a
Timer1.Enabled = True
End SubPrivate Sub Command2_Click()End
End SubPrivate Sub Timer1_Timer()Label1.Caption = Format _
(Now, "HH:MM:SS - dd mmmm yyyy")Label2.Caption = "Nama Komputer : " _
& Winsock1.LocalHostName
Label3.Caption = "IP Komputer : " & _
Winsock1.LocalIP
Label4.Caption = "Port : " _
& Winsock1.LocalPort
End Sub
*Note : Saya sarankan anda memakai VB Full Version jika anda belum punya bisa di download ( disini )
Untuk anda yang ingin menyimpan program yang anda sudah buat caranya :
1. Klik File pada tab atas
2. Klik Make Project1.exe...