Sıfır Ekleme
TextBox a girmiş olduğunuz sayının önüne (soluna) istediğiniz kadar sıfır ekleyebilirsiniz. Aşağıdaki şekilleri inceleyin...Bahadirsa
Şekil 1
Şekil 2
Şekil 3
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
With txtSayi
.MaxLength = 10
.Font = New Font("Arial", 14, FontStyle.Bold)
.Size = New System.Drawing.Size(120, 30)
End With
Button1.Text = "Sıfır Ekle"
Button1.Size = New System.Drawing.Size(120, 30)
Me.Size = New System.Drawing.Size(150, 120)
Me.Text = "Sıfır Ekleme...Bahadirsa"
Me.MaximizeBox = False
Me.Location = New Point(300, 180)
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim sayi As String = String.Format("{0:0000000000}", Val(txtSayi.Text))
txtSayi.Text = sayi
End Sub
End Class
Bir sonraki makalede görüşmek dileğiyle...Bahadirsa