We're not in the business of doing homework problems. If you make an attempt to do this on your own, we'll be more than happy to help if you get stuck on certain parts.
What is the masked text pulling in when you debug your code? I'm assuming you are doing some sort of globalization/localizing. Convert.ToDateTime naturally assumes the date format is in "mm/dd/yyyy"....
If you are wanting to create child forms for a MDI container, or hide/show, I'd suggest reading http://msdn.microsoft.com/en-us/library/7aw8zc76(v=vs.80).aspx.
If you can't find any help in C# Programming category, check out http://www.codeguru.com/forum/forumdisplay.php?f=60, it's the Graphics Programming category. If that doesn't work check over at...
I'm wanting to drag and drop, between listviews, and allow re-ordering. Currently, I can drag and drop items to an alternate listview, and can re-order within the same, however, when I drag and drop...
If it's a multiselect listbox, I'd simply create a session variable, that had your selections, as a comma delimited string on the changed events, and doing a string split in your current page, and...
Should be an edit button, at the bottom of each post, then you can include the tags, before and after code blocks. Thanks for being willing to update your code samples. They work similar to pre-tags,...
Please read, http://www.codeguru.com/forum/announcement.php?f=11, before posting anything else, especially the content regarding Including Code. Thanks.
Hello Nmohammed, the following code will allow only a-z and A-Z characters to be entered into the textbox. You'll need to create the KeyDown event for the textboxes, in order to utilize the code. In...