- Katılım
- 18 Nisan 2007
- Mesajlar
- 22
- Excel Vers. ve Dili
- 2003
hatamı bulamıyorum yardımcı olursanız sevinirim
Son düzenleme:
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub CommandButton1_Click()
Range("a1").Value = TextBox1.Value * 1
Range("a2").Value = TextBox2.Value * 1
Range("a3").Value = TextBox3.Value * 1
Range("a4").Value = TextBox4.Value * 1
Range("a5").Value = TextBox5.Value * 1
End Sub
Private Sub CommandButton1_Click()
If Not IsNumeric(TextBox1.Value) Then
MsgBox "Textbox1'de Sayısal bir değer olmalıdır.!", vbCritical
TextBox1 = Empty
TextBox1.SetFocus
Exit Sub
End If
If Not IsNumeric(TextBox2.Value) Then
MsgBox "Textbox2'de Sayısal bir değer olmalıdır.!", vbCritical
TextBox2 = Empty
TextBox2.SetFocus
Exit Sub
End If
If Not IsNumeric(TextBox3.Value) Then
MsgBox "Textbox3'de Sayısal bir değer olmalıdır.!", vbCritical
TextBox3 = Empty
TextBox3.SetFocus
Exit Sub
End If
If Not IsNumeric(TextBox4.Value) Then
MsgBox "Textbox4'de Sayısal bir değer olmalıdır.!", vbCritical
TextBox4 = Empty
TextBox4.SetFocus
Exit Sub
End If
If Not IsNumeric(TextBox5.Value) Then
MsgBox "Textbox5'de Sayısal bir değer olmalıdır.!", vbCritical
TextBox5 = Empty
TextBox5.SetFocus
Exit Sub
End If
Range("a1").Value = TextBox1.Value * 1
Range("a2").Value = TextBox2.Value * 1
Range("a3").Value = TextBox3.Value * 1
Range("a4").Value = TextBox4.Value * 1
Range("a5").Value = TextBox5.Value * 1
End Sub
Private Sub CommandButton1_Click()
Dim i As Byte
For i = 1 To 5
If Not IsNumeric(Controls("TextBox" & i)) Then
MsgBox "TextBox" & i & " Sayısal bir değer olmalıdır.", vbCritical
Controls("TextBox" & i) = Empty
Controls("TextBox" & i).SetFocus
Exit Sub
End If
Next
Range("a1").Value = TextBox1.Value * 1
Range("a2").Value = TextBox2.Value * 1
Range("a3").Value = TextBox3.Value * 1
Range("a4").Value = TextBox4.Value * 1
Range("a5").Value = TextBox5.Value * 1
End Sub