mertmustafa01
Altın Üye
- Katılım
- 3 Aralık 2007
- Mesajlar
- 160
- Excel Vers. ve Dili
- ofice2007 Türkçe
- Altın Üyelik Bitiş Tarihi
- 04-07-2025
textbox1 deki adetle textbox2 deki rakamı çarpıp textbox3 yazmasını istiyorum ama beceremedim.
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub CommandButton1_Click()
TextBox3.Value = Empty
If IsNumeric(TextBox1.Value) And IsNumeric(TextBox2.Value) Then
TextBox3.Value = CDbl(TextBox1.Value) * CDbl(TextBox2.Value)
End If
End Sub
Private Sub TextBox1_Change()
Me.TextBox3 = Me.TextBox1
End Sub
Private Sub TextBox2_Change()
On Error Resume Next
TextBox3 = Val(Me.TextBox1) * (Me.TextBox2)
End Sub
Private Sub TextBox1_Change()
On Error Resume Next
TextBox3 = TextBox1 * TextBox2
If Err <> 0 Then TextBox3 = Empty
End Sub
Private Sub TextBox2_Change()
On Error Resume Next
TextBox3 = TextBox1 * TextBox2
If Err <> 0 Then TextBox3 = Empty
End Sub
Private Sub TextBox1_Change()
On Error Resume Next
TextBox3 = FormatNumber(TextBox1 * TextBox2)
If Err <> 0 Then TextBox3 = Empty
End Sub
Private Sub TextBox2_Change()
On Error Resume Next
TextBox3 = FormatNumber(TextBox1 * TextBox2)
If Err <> 0 Then TextBox3 = Empty
End Sub