I need to select Academic year in this formate (june 2011 -march2012) from datetime picker
when i select this it should store in the database
how to do this using windows form application in c#
Access database
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
EhteshamPosted Jul 11, 2012, 4:24 AM
label1.Text = string.Format("{0} - {1}", DateSelected.ToString("MMMM yyyy"), DateSelected.AddYears(1).AddMonths(1).ToString("MMMM yyyy"));
Abhijit baruaPosted Jul 11, 2012, 12:17 AM