Posted by : Unknown Kamis, 19 April 2012





Keterangan and Fitur :
- Program sangat sederhana (dibuat cuma 5 menit kurang)
- Cuma 1Form.
- 3 Variable (jadi paling rumus yang digunain a = b * a (dibolak balik bisa)
- Ada warning jika mau mencari a, tapi malah menginput a dan b. (salah input)
- Ada waning, jika ada orang gila nginput huruf (masa ngitung pake huruf)
- Simple, g ribet, dll.




Codiing :



Private Sub Command1_Click()
      If Trim(LenB(Text2.Text)) = 0 Then
        MsgBox "Anda harus mengisi kolom B", vbExclamation, "Warning"
        Text2.SetFocus
        Exit Sub
    End If
    If Not IsNumeric(Text2.Text) Then
        MsgBox "Anda harus mengisi angka pada kolom B", vbExclamation, "Warning"
        Text2.Text = ""
        Text2.SetFocus
        Exit Sub
    End If
    
    If Trim(LenB(Text3.Text)) = 0 Then
        MsgBox "Anda harus mengisi kolom C", vbExclamation, "Warning"
        Text3.SetFocus
        Exit Sub
    End If
    If Not IsNumeric(Text3.Text) Then
        MsgBox "Anda harus mengisi angka pada kolom C", vbExclamation, "Warning"
        Text3.Text = ""
        Text3.SetFocus
        Exit Sub
    End If
    Text1.Text = Text2.Text * Text3.Text
   
End Sub

Private Sub Command2_Click()
If Trim(LenB(Text1.Text)) = 0 Then
        MsgBox "Anda harus mengisi kolom A", vbExclamation, "Warning"
        Text1.SetFocus
        Exit Sub
    End If
    If Not IsNumeric(Text1.Text) Then
        MsgBox "Anda harus mengisi angka pada kolom A", vbExclamation, "Warning"
        Text1.Text = ""
        Text1.SetFocus
        Exit Sub
    End If
    
    If Trim(LenB(Text3.Text)) = 0 Then
        MsgBox "Anda harus mengisi kolom C", vbExclamation, "Warning"
        Text3.SetFocus
        Exit Sub
    End If
    If Not IsNumeric(Text3.Text) Then
        MsgBox "Anda harus mengisi angka pada kolom C", vbExclamation, "Warning"
        Text3.Text = ""
        Text3.SetFocus
        Exit Sub
    End If
    Text2.Text = Text1.Text / Text3.Text
End Sub

Private Sub Command3_Click()
If Trim(LenB(Text1.Text)) = 0 Then
        MsgBox "Anda harus mengisi kolom A", vbExclamation, "Warning"
        Text1.SetFocus
        Exit Sub
    End If
    If Not IsNumeric(Text1.Text) Then
        MsgBox "Anda harus mengisi angka pada kolom A", vbExclamation, "Warning"
        Text1.Text = ""
        Text1.SetFocus
        Exit Sub
    End If
    
    If Trim(LenB(Text2.Text)) = 0 Then
        MsgBox "Anda harus mengisi kolom B", vbExclamation, "Warning"
        Text2.SetFocus
        Exit Sub
    End If
    If Not IsNumeric(Text2.Text) Then
        MsgBox "Anda harus mengisi angka pada kolom B", vbExclamation, "Warning"
        Text2.Text = ""
        Text2.SetFocus
        Exit Sub
    End If

    Text3.Text = Text1.Text / Text2.Text
End Sub

Private Sub Command4_Click()
End
End Sub

Private Sub Command5_Click()
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""
End Sub

Private Sub Form_Load()
Form1.BackColor = vbRed
End Sub


Outputnya :

Semoga berguna :D

Description: Program perhitungan rumus Fisika dengan menggunakan Visual Basic
Rating: 4.5
Reviewer: Unknown
ItemReviewed: Program perhitungan rumus Fisika dengan menggunakan Visual Basic

Leave a Reply

Monggo Tinggalkan Jejak Kaks :)

Subscribe to Posts | Subscribe to Comments

Welcome to My Blog

Popular Post

Labels

Arsip Blog

Followers

- Copyright © 2013 shad0w-share | Designed by Johanes Djogan -