Hello Techyv members. I hope your day is great. I would like to know how to create time table internet in vb6Â programming? What are the needed tools for this kind of project? I need simple, efficient and quick way on how to do this. If you can give me a reliable source code for this, then that would be awesome. Your comments and suggestions are welcome.Â
How to create time table internet in vb6 programming?
Hi Sabrina Becnel,
I have here the logic of creating your internet time table. The function to be use is the DateTime function. This date and time function lets you return the current date and time of your computer to your vb 6. To use it, use the syntax:
Â
Dim DateToday as Date
DateToday = DateValue (Now)
Dim TimeToday as Date
TimeToday = TimeValue (Now)
Â
This syntax will return your computer's date and time, You can use it to your internet time table and manipulate the values in it. You can add and subtract a number of hours.
Â