Membuat Aplikasi Stopwatch dengan Visual Basic 6.0

Cara Membuat Aplikasi Sederhana dengan Visual Basic 6.0-  Pasti Anda tau dengan yang namanya stopwatch, stopwatch adalah alat pengukur waktu. Pada postingan ini saya akan membahas pembuatan program stopwatch menggunakan visual basic 6.0

Pada program ini pengukur waktu yang digunakan dalam satuan menit,detik dan milidetik. Rancanglah Form seperti tampilan gambar diatas.

Source Code dari program diatas :
———————————————————————————————-
Private Sub CmdStart_Click()
Xmili.Caption = “00″
xdetik.Caption = “00″
xmenit.Caption = “00″
Timer1.Enabled = True
CmdStart.Enabled = False
CmdStop.Enabled = True
End Sub

Private Sub CmdStop_Click()
Timer1.Enabled = False
CmdStart.Enabled = True
CmdStop.Enabled = False
End Sub

Private Sub Form_Load()
Timer1.Enabled = False
CmdStop.Enabled = False
End Sub

Private Sub Timer1_Timer()
Xmili.Caption = Val(Xmili.Caption) + 1
If Len(Xmili.Caption) = 1 Then Xmili.Caption = “0″ & Xmili.Caption
If Xmili.Caption = “60″ Then
Xmili.Caption = “00″
xdetik.Caption = Val(xdetik.Caption) + 1
If Len(xdetik.Caption) = 1 Then xdetik.Caption = “0″ & xdetik.Caption
End If
If xdetik.Caption = “60″ Then
xdetik.Caption = “00″
xmenit.Caption = Val(xmenit.Caption) + 1
If Len(xmenit.Caption) = 1 Then xmenit.Caption = “0″ & xmenit.Caption
End If
End Sub

Selesaii hehehe Selamat Mencoba . . . :D
Terima kasih telah membaca artikel tentang Membuat Aplikasi Stopwatch dengan Visual Basic 6.0 di blog Kuya028 jika anda ingin menyebar luaskan artikel ini di mohon untuk mencantumkan link sebagai Sumbernya, dan bila artikel ini bermanfaat silakan bookmark halaman ini di web browser anda, dengan cara menekan Ctrl + D pada tombol keyboard anda.

Artikel terbaru :

  • Download Clash Royale v1.2.3 APK Terbaru 2016 For Android
  • Game Paling Sadis Dan Penuh Kekerasan
  • Download Need For Speed : Most Wanted Black Edition _ Kuya)28
  • Chili Con Carnage psp iso for pc full version free download kuya028
  • Space Hulk Vengeance of the Blood Angels ps1 iso for pc free download kuya028
  • conflict global terror ps2 iso for pc full version free download kuya028
  • Spec Ops Ranger Elite ps1 iso for pc full version free downlaod kuya028
  • Ys Seven psp Iso for pc full version free download kuya028
  • R Racing Evolution ps2 iso for pc full version free download kuya028
  • Road Rash ps1 iso for pc full version free download kuya028
  • Artikel terkait :