ytl hesabı acill??

emos
01-05-2007, 18:30   |  #1  
OP Taze Üye
Teşekkür Sayısı: 0
7 mesaj
Kayıt Tarihi:Kayıt: Mar 2007

text e girilen sayı ytl tarzında yazılacak ve bunlar toplanacak yani dikkat edilmesi gereken şey ytl cinsinden girilip toplanması bunun kodları nasıl??bilen varmı?

Son Düzenleme: Serkan Karadaş ~ 01 Mayıs 2007 21:48
mustafa-k
02-05-2007, 08:55   |  #2  
Yıllanmış Üye
Teşekkür Sayısı: 0
365 mesaj
Kayıt Tarihi:Kayıt: Şub 2007

forma 1 text ve 1 tanede command ekle ve aşağıdaki kodları command1'in click olayına yapıştır.

Private Sub Command1_Click()
If Val(Text1.Text) >= 1000000 Then
Text1.Text = Val(Text1.Text) / 1000000
Text1.Text = Text1.Text & " YTL"
ElseIf Val(Text1.Text) < 1000000 Then
Text1.Text = Val(Text1.Text) / 10000
Text1.Text = Text1.Text & " Kuruş"
End If
End Sub

kolay gelsin

mustafa-k
02-05-2007, 09:01   |  #3  
Yıllanmış Üye
Teşekkür Sayısı: 0
365 mesaj
Kayıt Tarihi:Kayıt: Şub 2007

eğer microsoft wordde yapcaksan
yine bir command ve bir text ekle ve kod bölümüne aşağıdakileri yaz

Private Sub CommandButton1_Click()
If Val(TextBox1.Text) >= 1000000 Then
TextBox1.Text = Val(TextBox1.Text) / 1000000
TextBox1.Text = TextBox1.Text & " YTL"
ElseIf Val(TextBox1.Text) < 1000000 Then
TextBox1.Text = Val(TextBox1.Text) / 10000
TextBox1.Text = TextBox1.Text & " Kuruş"
End If
End Sub