You are on page 1of 2

...ktop\New folder\Visual Studio & SQL\experimental\Form1.

vb 1
1 Public Class Form1
2 Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
3
4 End Sub
5
6 Public Sub NumerosyDecimal(ByVal CajaTexto As Windows.Forms.TextBox, ByVal e
As System.Windows.Forms.KeyPressEventArgs)
7 If Char.IsDigit(e.KeyChar) Then
8 e.Handled = False
9 ElseIf Char.IsControl(e.KeyChar) Then
10 e.Handled = False
11 ElseIf e.KeyChar = "." And Not CajaTexto.Text.IndexOf(".") Then
12 e.Handled = True
13 ElseIf e.KeyChar = "." Then
14 e.Handled = False
15 Else
16 e.Handled = True
17 End If
18
19 End Sub
20
21 Private Sub TextBox1_KeyPress(ByVal sender As System.Object, ByVal e As
System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress
22 NumerosyDecimal(TextBox1, e)
23
24 End Sub
25 Private Sub TextBox2_KeyPress(ByVal sender As System.Object, ByVal e As
System.Windows.Forms.KeyPressEventArgs) Handles TextBox2.KeyPress
26 NumerosyDecimal(TextBox1, e)
27
28 End Sub
29 Private Sub TextBox3_KeyPress(ByVal sender As System.Object, ByVal e As
System.Windows.Forms.KeyPressEventArgs) Handles TextBox3.KeyPress
30 NumerosyDecimal(TextBox1, e)
31
32 End Sub
33 Private Sub TextBox4_KeyPress(ByVal sender As System.Object, ByVal e As
System.Windows.Forms.KeyPressEventArgs) Handles TextBox4.KeyPress
34 NumerosyDecimal(TextBox1, e)
35
36 End Sub
37 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles
Button1.Click
38
39
40
41 Dim a As String
42 Dim b As String
43 Dim c As String
...ktop\New folder\Visual Studio & SQL\experimental\Form1.vb 2
44 Dim d As String
45
46
47
48
49 a = TextBox1.Text
50 b = TextBox2.Text
51 c = TextBox3.Text
52 d = TextBox4.Text
53
54
55
56
57
58 If TextBox1.Text = "" Or TextBox2.Text = "" Or TextBox3.Text = "" Or
TextBox4.Text = "" Then
59 MessageBox.Show("VACIAS")
60 ElseIf TextBox1.Text = 0 Or TextBox2.Text = 0 Or TextBox3.Text = 0 Or
TextBox4.Text = 0 Then
61 MessageBox.Show("CEROS")
62
63 Else
64
65 TextBox5.Text = a * b * c * d
66
67 End If
68
69
70
71
72 End Sub
73
74
75 End Class
76

You might also like