\r\n\r\n
Go Back  Xtreme Visual Basic Talk > Legacy Visual Basic (VB 4/5/6) > General > Date Difference using Date Picker


\r\n \r\n
 
 
Thread Tools Display Modes

\r\n\r\n\r\n
What is the secrect to finding the difference in date using the Date picker? Here is my inaccurate code:
\n
\nDim DaysRented as Long/Date/?
\nDaysRented = DateDiff("d", dtpEnd.value, dtpStart.value)
\n
\nDaysRented value continues to be -1 if a long, integer and a strange date if declared a date. What\'s the secret to this?
\n
\n
\r\n \r\n\r\n
\r\n \r\n\r\n \r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n
\r\n \r\n \r\n \r\n \r\n Reply With Quote\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n\r\n \r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n'; pd[17999] = '\r\n\r\n \r\n\r\n
\r\n
\r\n
\r\n\r\n
\r\n \r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
\r\n
\r\n  \r\n #2  \r\n \r\n \r\n \r\n \r\n \r\n
\r\n\r\n
\r\n \r\n Old\r\n \r\n 04-01-2001, 01:09 PM\r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n\r\n
\r\n \r\n kingesk\r\n \r\n
\r\n\r\n
Guest
\r\n \r\n \r\n\r\n
 \r\n\r\n
\r\n \r\n \r\n \r\n
\r\n Posts: n/a\r\n
\r\n \r\n \r\n \r\n \r\n
\r\n
\r\n\r\n
\r\n \r\n
\r\n \r\n \r\n\r\n \r\n\r\n \r\n \r\n
\r\n Default\r\n Re: Date Difference using Date Picker\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n\r\n \r\n\r\n\r\n
Here is an example of using the DateDiff function. Hope it helps.
\r\n
\r\nEric
\r\n
\r\n
\r\nPrivate Sub Command1_Click()
\r\n
\r\nDim DaysRented As Integer
\r\nDim dtpEnd As Date
\r\nDim dtpStart As Date
\r\n
\r\ndtpEnd = #3/12/2001#
\r\ndtpStart = #3/1/2001#
\r\n
\r\n
\r\nDaysRented = DateDiff("d", dtpStart, dtpEnd)
\r\nMsgBox DaysRented
\r\n
\r\nEnd Sub
\r\n
\n
\n
\r\n \r\n\r\n
\r\n \r\n\r\n \r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n
\r\n \r\n \r\n \r\n \r\n Reply With Quote\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n\r\n \r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n \r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n'; // next/previous post info pn[17998] = "17999,17999"; pn[0] = ",17998"; pn[17999] = "17998,17998"; // cached usernames pu[0] = guestphrase; // -->
Prev Previous Post   Next Post Next
  #1  
Old 04-01-2001, 09:08 AM
studybum
Guest
 
Posts: n/a
Question Date Difference using Date Picker


What is the secrect to finding the difference in date using the Date picker? Here is my inaccurate code:

Dim DaysRented as Long/Date/?
DaysRented = DateDiff("d", dtpEnd.value, dtpStart.value)

DaysRented value continues to be -1 if a long, integer and a strange date if declared a date. What's the secret to this?

Reply With Quote
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Advertisement:





Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
 
 
-->