DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Çok teşekkürler Orion1ilgili satırı aşağıdaki ile değiştiriniz.
Kod:Private Sub UserForm_Initialize() TextBox4 = 18 End Sub
Sayın Orion1 İlginize teşekkürHata oluşmadı.Çalışıyor kodlar
Arkadaşım ilgine teşekkür ederim.Genel Toplam TextBox'ının hesaplaması için CDbl yerine Val yazıp deneyiniz...
Private Sub CommandButton1_Click()
TextBox8 = Format(CDbl(TextBox1) * CDbl(TextBox2), "#,##0.00")
TextBox9 = Format(CDbl(TextBox1) * CDbl(TextBox3), "#,##0.00")
TextBox10 = Format(CDbl(TextBox1) * CDbl(TextBox4), "#,##0.00")
TextBox5 = Format(CDbl(TextBox2) + CDbl(TextBox3) + CDbl(TextBox4), "#,##0.00")
TextBox7 = Format(CDbl(TextBox5) * CDbl(TextBox6) / 100, "#,##0.00")
End Sub
Buyurun.
Kod:Private Sub CommandButton1_Click() TextBox8 = Format(CDbl(TextBox1) * CDbl(TextBox2), "#,##0.00") TextBox9 = Format(CDbl(TextBox1) * CDbl(TextBox3), "#,##0.00") TextBox10 = Format(CDbl(TextBox1) * CDbl(TextBox4), "#,##0.00") TextBox5 = Format(CDbl(TextBox2) + CDbl(TextBox3) + CDbl(TextBox4), "#,##0.00") TextBox7 = Format(CDbl(TextBox5) * CDbl(TextBox6) / 100, "#,##0.00") End Sub