هنا يكرر
Tab
PHP كود :
Private Sub TextBox1_KeyUp(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyUp
If e.KeyCode = Keys.Space Then
For i = 0 To 4
TextBox1.Text = TextBox1.Text & vbTab
Next
End If
TextBox1.SelectionStart = TextBox1.TextLength
End Sub
والثاني مسافة
PHP كود :
Private Sub TextBox1_KeyUp(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyUp
If e.KeyCode = Keys.Space Then
For i = 0 To 4
TextBox1.Text = TextBox1.Text & " "
Next
End If
TextBox1.SelectionStart = TextBox1.TextLength
End Sub
سبحان الله والحمدلله ولا إله إلا الله والله أكبر
اللهم اغْفِرْ لِلمؤمنين والمؤمنات والمسلمين والمسلمات الأحياء منهم والأموات


