473,598 Members | 3,266 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

I need the VB codings to get the current Time and Date

98 New Member
Hi
Now im doing one project to maint the login and logout time of the organization.
So I need the VB codings to get the Current time and Date with detail.
So kindly reply me anyone.
Dec 21 '06 #1
6 5818
sashi
1,754 Recognized Expert Top Contributor
Hi
Now im doing one project to maint the login and logout time of the organization.
So I need the VB codings to get the Current time and Date with detail.
So kindly reply me anyone.
Hi there,

Kindly refer to below code segment, hope it helps. Good luck & Take care.

Expand|Select|Wrap|Line Numbers
  1. Dim dtCurrentDate, tmCurrentTime, nDateTime
  2.  
  3.   dtCurrentDate = Format(Now, "dd/mm/yyyy")
  4.   tmCurrentTime = Format(Now, "hh:mm:ss am/pm"
  5.   nDateTime = Format(Now)
  6.  
VB - Format function
Dec 21 '06 #2
kishored
17 New Member
Hi
Now im doing one project to maint the login and logout time of the organization.
So I need the VB codings to get the Current time and Date with detail.
So kindly reply me anyone.
Hi sreekandan, try this code

DateTime.now

For example if you want to display the date and time in a Label then it is
Label1.Caption = DateTime.now
Dec 21 '06 #3
sreekandan
98 New Member
Hi sreekandan, try this code

DateTime.now

For example if you want to display the date and time in a Label then it is
Label1.Caption = DateTime.now


Hi kishore
I need the codings to get the Time and Date in two separate LabelBox(one is for time and another one is for date).Im expecting ur reply.So kindly reply me.
Dec 21 '06 #4
rockford333
15 New Member
Hi kishore
I need the codings to get the Time and Date in two separate LabelBox(one is for time and another one is for date).Im expecting ur reply.So kindly reply me.

Try this
label1=format$( now"DD-MM-YY")
label2=format$( now"HH:MM:SS")
this wat u want
Dec 21 '06 #5
kishored
17 New Member
Hi kishore
I need the codings to get the Time and Date in two separate LabelBox(one is for time and another one is for date).Im expecting ur reply.So kindly reply me.
Hi sreekandan,
If you want to display them seperately, then try this code:

Label1.caption = Date
Label2.caption = Time
Dec 22 '06 #6
Killer42
8,435 Recognized Expert Expert
Try this
Expand|Select|Wrap|Line Numbers
  1. label1=format$(now"DD-MM-YY")
  2. label2=format$(now"HH:MM:SS")
this wat u want
Note, you left out the commas.

Also, it might be better to stick to generic named formats like "Short Date" rather than hard-coding the format.
Dec 22 '06 #7

Sign in to post your reply or Sign up for a free account.

Similar topics

8
5092
by: timmy_dale12 | last post by:
I need help with this one. I have a function that pastes a row. In each row i am pasting a link which is to call a date picker javascript function. This is the code that pastes the link : link = document.createElement('a'); link.href ="javascript:show_calendar('document.form1.date',document.form1.date.value);"; img = document.createElement('img'); img.setAttribute("src","H:Diverse\\cal.gif"); link.appendChild(img);
8
4657
by: Tom | last post by:
Please help. I need a quick little scrpit to place on a web page that will count how many days have passed since January 1, 1970. I have ZERO experience writing ANY scripts. Anyone have any suggestions? As for what is displayed on the screen, I just want it to say: Today is: 12578 (or however many days have passed since that date.)
14
3480
by: Tina | last post by:
My employer tracks productivity/performance of clinicians (how much they bill) each week, its averages for the month, and the 6 months. These averages are compared to their expected productivity. However, the expectation changes - it may be 60% for a while, then change to 50%. Initially, I was averaging the expectation, along with the productivity, but what I'm being asked is to look at the average productivity/performance compared to...
9
2411
by: mistral | last post by:
Need help to remove list of days from date script. Need format "June 07, 2006" <SCRIPT LANGUAGE="JavaScript"> <!-- Begin // Get today's current date. var now = new Date();
2
2073
by: Bill | last post by:
I have a 200 record database that includes a date/time field, AnnivDate, for a wedding anniversary. AnnivDate has nulls and some incorrect year data. I have been creating the Access database using data imported from an Excel file and the person entering into Excel only cared about the month and day portion and Excel added the current year to the field value. I want to produce a report that shows upcoming anniversaries using a parameter...
4
1669
by: trint | last post by:
I need to get the time from NOW and get how many milleseconds until 1:00am for my countdown timer please. Any help is appreciated. Thanks, Trint
7
2238
by: =?Utf-8?B?UGV0ZXI=?= | last post by:
I'm new to Visual Studio 2005. I'm creating a windows application using Visual Basic. After I added a control to a form and added some codings to the control, I want to rename the control. However, I notice that after I rename the control, the codings inside it are still using the old name. Is there a setting that I can set to replace the old name with the new name automatically (for the entire form or all coding within the same...
5
2190
by: Charles May | last post by:
Anyone have a simple concept for the best way to store timeclock information in a database. I currently have my table set up like this with a typical daily entry. tcID empID Type Date Time 1 37 'Clockin' 1/18/08 7:45:39 AM 2 38 'Clockin' 1/18/08 7:55:42 AM 3 39 'Clockin' 1/18/08 7:55:42 AM 4 38 'BreakOut' 1/18/08 ...
1
1551
by: disney86 | last post by:
I am setting up Forms in Access 08. I have a form which when opened will auto insert the current time and current date. I need to be able to allow the user to set up paramaters to auto select a future date based on the current date which auto populates. This form will be used to print a traffic citation. The officer opens the form and inputs the values for offender information, vehicle information, etc. When the officer gets to the court...
0
7899
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8392
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8397
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8264
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6718
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
5850
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5438
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
2412
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
1250
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.