Question Inserting Date/Time into a Rich Text Editor?

mrtutorial08

Member
Joined
Sep 4, 2008
Messages
20
Programming Experience
1-3
How can I be able to insert the current date and time into a richtextbox when a button is pressed. Also How could I have a Date/Time Picker Dialog Box Show up when the user wants to select the custom display settings of the Date/Time Format.....

Any Help is Highly Appreciated! =D :D
 
insert the current date and time into a richtextbox
VB.NET:
Me.RichTextBox1.SelectedText = Date.Now.ToString
Dialog Box Show up when the user wants to select the custom display settings of the Date/Time Format.....
Add a new Dialog form to your project and arrange your UI for date/time format settings.
 
Back
Top