Awsome! accessories to enhance the usage and improve performance of your tablet
Awsome! accessories to enhance the usage and improve performance of your tablet
Blurred, Bokeh Effect Background And Beautiful Splash Effect
create blurred, bokeh effect background and beautiful splash effect for roses bouquet
11 Top Sites For Free Icon Sets
Here you’ll find some of the best websites that offer various free icon set collections as well as just separate good collections in other sites, so browse through the sites and download the icon sets for free.
Top 17 Excellent and Most Professional Online Photo Editors
Top 17 Excellent and Most Professional Online Photo Editors
Sunday 21 August 2011
Saturday 20 August 2011
Arithmatic Operation (VB)
Dim a, b, c As Integer
Private Sub Command1_Click()
a = Text1.Text
b = Text2.Text
c = Val(a) + Val(b)
Label2.Caption = c
End Sub
Private Sub Command2_Click()
a = Text1.Text
b = Text2.Text
c = a - b
Label2.Caption = c
End Sub
Private Sub Command3_Click()
a = Text1.Text
b = Text2.Text
c = a * b
Label2.Caption = c
End Sub
Private Sub Command4_Click()
a = Text1.Text
b = Text2.Text
c = a / b
Label2.Caption = c
End Sub
Private Sub Command5_Click()
Text1.Text = ""
Text2.Text = ""
Label2.Caption = ""
End Sub
Private Sub Command6_Click()
End
End Sub
Private Sub Command1_Click()
a = Text1.Text
b = Text2.Text
c = Val(a) + Val(b)
Label2.Caption = c
End Sub
Private Sub Command2_Click()
a = Text1.Text
b = Text2.Text
c = a - b
Label2.Caption = c
End Sub
Private Sub Command3_Click()
a = Text1.Text
b = Text2.Text
c = a * b
Label2.Caption = c
End Sub
Private Sub Command4_Click()
a = Text1.Text
b = Text2.Text
c = a / b
Label2.Caption = c
End Sub
Private Sub Command5_Click()
Text1.Text = ""
Text2.Text = ""
Label2.Caption = ""
End Sub
Private Sub Command6_Click()
End
End Sub