I need to get all controls on a form that are of type x. I'm pretty sure I saw that code once in the past that used something like this:
dim ctrls() as Control
ctrls = Me.Controls(GetType(TextBox))
I …
I have a datetimepicker which on loading of windows form shows me format in 'MM-dd-yyyy',
as follows:
I would like it in dd-MM-yyyy.
I tried the following:
set custom format: "dd-MM-yyyy"
But Its not changing.
What could be the problem?
…
I have an application with one form in it, and on the Load method I need to hide the form.
The form will display itself when it has a need to (think along the lines of a outlook 2003 style popup), …