Hi
Is it possible to make a function or a sub to change the text color and font.
lblResultaat.ForeColor = Color.Blue
lblResultaat.Font = New System.Drawing.Font("Arial", 10)
So that I have not to repeated for each textbox
textbox1.ForeColor = Color.Blue
textbox1.Font = New System.Drawing.Font("Arial", 10)
textbox2.ForeColor = Color.Blue
textbox2 = New System.Drawing.Font("Arial", 10)
Is it possible to make a function or a sub to change the text color and font.
lblResultaat.ForeColor = Color.Blue
lblResultaat.Font = New System.Drawing.Font("Arial", 10)
So that I have not to repeated for each textbox
textbox1.ForeColor = Color.Blue
textbox1.Font = New System.Drawing.Font("Arial", 10)
textbox2.ForeColor = Color.Blue
textbox2 = New System.Drawing.Font("Arial", 10)