Link to home
Start Free TrialLog in
Avatar of Murray Brown
Murray BrownFlag for United Kingdom of Great Britain and Northern Ireland

asked on

VB.net Prompt user for date that is used in rest of code

Hi
When I run my VB.net code I want to prompt the user for a Date
I have a MonthCalendar on a form. The following code opens
the form and the rest of my code has already run by the time the date selection is made
How do I pause the process until the user selects a date

Form_DateRange.show
Dim sDate asString
sDate = Form_DateRange.MonthCalendar1.SelectionRange.Start.ToString("yyyy MMMM dd") & "'"
ASKER CERTIFIED SOLUTION
Avatar of Jacques Bourgeois (James Burger)
Jacques Bourgeois (James Burger)
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Murray Brown

ASKER

thanks very much