-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmHilfe.vb
57 lines (46 loc) · 1.96 KB
/
frmHilfe.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Public Class frmNewsletterTemplateHilfe
Public bBetreff As Boolean = False
Private Sub frmNewsletterTemplateHilfe_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
If bBetreff = True Then
Label1.Text = "Betreff Variablen"
TextBox10.Visible = False
Dim dSize As Drawing.Size
dSize.Height = 329
dSize.Width = 275
Me.Size = dSize
End If
End Sub
Private Sub txtVorname_Click(sender As Object, e As System.EventArgs) Handles txtVorname.Click
txtVorname.SelectAll()
End Sub
Private Sub TextBox1_Click(sender As Object, e As System.EventArgs) Handles TextBox1.Click
TextBox1.SelectAll()
End Sub
Private Sub TextBox2_Click(sender As Object, e As System.EventArgs) Handles TextBox2.Click
TextBox2.SelectAll()
End Sub
Private Sub TextBox3_Click(sender As Object, e As System.EventArgs) Handles TextBox3.Click
TextBox3.SelectAll()
End Sub
Private Sub TextBox4_Click(sender As Object, e As System.EventArgs) Handles TextBox4.Click
TextBox4.SelectAll()
End Sub
Private Sub TextBox5_Click(sender As Object, e As System.EventArgs) Handles TextBox5.Click
TextBox5.SelectAll()
End Sub
Private Sub TextBox6_Click(sender As Object, e As System.EventArgs) Handles TextBox6.Click
TextBox6.SelectAll()
End Sub
Private Sub TextBox7_Click(sender As Object, e As System.EventArgs) Handles TextBox7.Click
TextBox7.SelectAll()
End Sub
Private Sub TextBox8_Click(sender As Object, e As System.EventArgs) Handles TextBox8.Click
TextBox8.SelectAll()
End Sub
Private Sub TextBox9_Click(sender As Object, e As System.EventArgs) Handles TextBox9.Click
TextBox9.SelectAll()
End Sub
Private Sub TextBox10_TextChanged(sender As System.Object, e As System.EventArgs) Handles TextBox10.TextChanged
TextBox10.SelectAll()
End Sub
End Class