Is there a way to get DateTimePicker to display the long format (or a custom format 'dddd, MMMM dd, yyyy') so that it is left-aligned?
What I get is:
-------------------------------------------
| ssssFridayssss , September 11, 2020 |
-------------------------------------------
where 's' means space (the forum strips out the extra spaces)
If I use a TextBox like this:
DateTime.Now.ToString("dddd, MMMM dd, yyyy")
I get the desired results:
------------------------------------
| Friday , September 11, 2020 |
------------------------------------
Thanks,
Tim
What I get is:
-------------------------------------------
| ssssFridayssss , September 11, 2020 |
-------------------------------------------
where 's' means space (the forum strips out the extra spaces)
If I use a TextBox like this:
DateTime.Now.ToString("dddd, MMMM dd, yyyy")
I get the desired results:
------------------------------------
| Friday , September 11, 2020 |
------------------------------------
Thanks,
Tim