- Katılım
- 14 Ekim 2007
- Mesajlar
- 173
- Excel Vers. ve Dili
- xp tr
Selam arkadaşlar
Yukarıdaki kodlar ile textbox larla hesaplama yaptırıyorum bu kodlara ilave olarakTextBox10 da elde edilen sonucu TextBox7 ile çarparak sonucu TextBox9 a alacak bunun için yardımınızı bekliyorum.
Kod:
Private Sub TextBox7_Change()
'TextBox7.Value = Format(TextBox7, "#,##0")
kontrol
End Sub
Private Sub TextBox8_Change()
'TextBox8.Value = Format(TextBox8, "#,##0")
kontrol
End Sub
Private Sub TextBox13_Change()
'TextBox13.Value = Format(TextBox13, "#,##0")
kontrol
End Sub
Private Sub kontrol()
On Error Resume Next
If IsNumeric(TextBox7) = True And IsNumeric(TextBox8) And IsNumeric(TextBox13) = True Then
TextBox10 = CLng(TextBox8) / CLng(TextBox7) / CLng(TextBox13)
'TextBox10.Value = Format(TextBox10, "#,##0")
End If
End Sub
Yukarıdaki kodlar ile textbox larla hesaplama yaptırıyorum bu kodlara ilave olarakTextBox10 da elde edilen sonucu TextBox7 ile çarparak sonucu TextBox9 a alacak bunun için yardımınızı bekliyorum.
Ekli dosyalar
Son düzenleme:
