![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Newbie
Join Date: May 2007
Posts: 2
Rep Power: 0
![]() |
a program on date() and Time()
hi,
i need a program in visual basic 6.0 the program is: suppose i put my date of birth in a text box and click on submit button then it will show me the how old am I ? means the total year, month and days from birth date. and the output may be in label or in a text box. thanks |
|
|
|
|
|
#2 |
|
Professional Programmer
Join Date: Mar 2005
Location: Glasgow, Scotland
Posts: 317
Rep Power: 4
![]() |
You'll find that people on forums are unhappy to hold your hand too much on problems as essentially simple as this one. Generally speaking what you want to do is:
In the Click event handler of the submit button, get the value of the .Text property of the text box control. Now you have to parse it to interpret the date - so you need to be quite sure of the format it'll be entered in (you'd probably find it easier to restrict that format by allowing the user to choose from drop-down lists for day, month and year rather than allowing free entry into your text box). Next up you want today's date, which is the other piece of information your program will need. It can determine that for itself and then you want to get both dates into a comparable format and compare them to see how many years apart they are. I'm not going to hold your hand through the whole process, but if you have any other specific questions ask away - but check online and check the documentation before asking a person. Computers' time is worth a lot less than peoples' time, so Google before you post! Virtually everything a beginning VB programmer needs to know is out there on the web.
__________________
"I'm not a genius. Why do I have to suffer?" |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Date and Time on HTML Form | Druid | PHP | 3 | Apr 19th, 2007 5:43 PM |
| Date Routine | tbohon | Perl | 2 | Jan 15th, 2007 11:14 AM |
| date() Question | grimpirate | PHP | 2 | Nov 5th, 2006 6:58 PM |
| using Text fields in SWT | elford | Java | 4 | Dec 27th, 2005 12:38 PM |
| Time between two dates and times | Illuminati | Visual Basic .NET | 4 | Apr 10th, 2005 8:33 PM |