Click here to Skip to main content
15,884,838 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
manually i am entering the date .....the date which i enter should be a previous date and should not be a present or future date..if i enter present or future date it should throw error..please help me with the code...It is a mobile web application.. and i am not using date and time picker instead i am using text box
Posted
Updated 18-Nov-12 19:56pm
v3
Comments
A N Saraf 8-Nov-12 0:38am    
How r u entering the date i.e r u using DateTimePicker or TextBox
a little more on what u r trying
Shahan Ayyub 8-Nov-12 2:08am    
Please also mention if its a Web application or windows based application

Compare the date to today and reject it if it is later. Simple algorithm really, and the code will probably need to use the DateTime structure[^] and its methods.
 
Share this answer
 
hoping txtDate.text is in dd/MM/yyyy format
on submit button click
if txtDate.text>= Format(Date.UtcNow(),"dd/MM/yyyy") Then
txtDate.text=""
MsgBox("Please Write Past Date")
EndIf
ExitSub

This code You can write in Submit button Click... if condition fails it will exitsub as per Upper code..
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900