Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
datetime
- Page 1
DateTime Data Problems in Silverlight and C#
Programming
Software Development
13 Years Ago
by complete
DateTime
Data Problems in Silverlight and C# Hello Forum. I am … there something wrong with they way I am using the
DateTime
class? new
DateTime
((Int32) Year_Id,(Int32) SMonth_Id, (Int32)1);
DateTime Problem.
Programming
Software Development
17 Years Ago
by shuban
DateTime
.UtcNow gets the system date and time, so I was wondering if there is any function to extract only the syetem time and not the date. If not just in case any one knows how to do that... plz revert back... Thanks in earnest...
datetime
Programming
Software Development
12 Years Ago
by auwi987
… can only pick correct format date) private
DateTime
isDate(string inputDate) {
DateTime
dt; try { dt =
DateTime
.Parse(inputDate); return dt; } catch { string[] indate…
Re: DateTime
Programming
Software Development
14 Years Ago
by Mitja Bonca
…lets look into your example code: [CODE]
DateTime
dateOfEvent = Convert.ToDateTime(dtpReservationDate.Value.ToLongDateString());[/CODE…It would be enough to write: [CODE]
DateTime
dateOfEvent = dtpReservationDate.Value; //if this is … or monthCalendar //if not, you do:
DateTime
dateOfEvent = Convert.ToDateTime(dtpReservationDate.Value); //this…
Re: DateTime
Programming
Software Development
14 Years Ago
by xanawa
…lets look into your example code: [CODE]
DateTime
dateOfEvent = Convert.ToDateTime(dtpReservationDate.Value.ToLongDateString());[/CODE…It would be enough to write: [CODE]
DateTime
dateOfEvent = dtpReservationDate.Value; //if this is … or monthCalendar //if not, you do:
DateTime
dateOfEvent = Convert.ToDateTime(dtpReservationDate.Value); //this…
DateTime
Programming
Software Development
14 Years Ago
by xanawa
Hi i have two values of type
dateTime
[CODE]
DateTime
dateOfEvent = Convert.ToDateTime(dtpReservationDate.Value.ToLongDateString());
DateTime
timeOfEvent = Convert.ToDateTime(dtpEventTime.Value.ToLongTimeString());[/CODE… assign these date and time to one variable of datatype
dateTime
. How can i do so? [COLOR="Red"…
Re: datetime
Programming
Software Development
12 Years Ago
by Momerath
Change line 13 to `dt =
DateTime
.Parse(indate[0] + "/01/"+indate[2]);`. Change line 14 to `
DateTime
newdate = dt.AddMonths(1).AddDays(-1); Remove line 15. `
Re: DateTime
Programming
Software Development
14 Years Ago
by Mitja Bonca
… seperately from that control, and later join both into a
dateTime
: [CODE] string a = tpReservationDate.Value.ToLongDateString(); string b = tdtpEventTime….Value.ToLongTimeString();
DateTime
date = Convert.ToDateTime(a + " " + b); //Example: string …
DateTime
Programming
Web Development
15 Years Ago
by niche1
I found this script and don't understand where the argument 'next thursday' came form. I can't find it in the manual for the
DateTime
class. Shouldn't I be able to find it there? [CODE]<?php $date = new
DateTime
('next Thursday'); echo $date->format('l, F jS, Y'); ?>[/CODE] Thanks
Re: DateTime Problem.
Programming
Software Development
17 Years Ago
by Paul.Esson
…if you want the current time in ticks the actual
datetime
structure has a [URL="http://msdn2.microsoft.com…/en-us/library/system.
datetime
.ticks.aspx"]Ticks property[/URL] you can use …this in conjunction with
DateTime
.Now or
DateTime
.UtcNow so
DateTime
.UtcNow.Ticks ... Hope this helps
Re: DateTime Problem.
Programming
Software Development
17 Years Ago
by Reinard
Have you tried:
DateTime
.Now.ToShortTimeString(); or
DateTime
.Now.ToLongTimeString();
Re: datetime in python
Programming
Software Development
16 Years Ago
by BearofNH
…;> t1 =
datetime
.
datetime
(2009,12,22,22,22) >>> t2 =
datetime
.
datetime
(2009,12,22,20…gt;>[/code]The difference between two [B]
datetime
[/B]s is a [B]timedelta[/B],…22,22" >>> t1 =
datetime
.
datetime
(*tuple([int(x) for x in H1.split(',')]))… >>> t1
datetime
.
datetime
(2009, 12, 22, 22, 22) >>…
datetime picker on C#
Programming
Software Development
14 Years Ago
by judithSampathwa
…created. i added the below code for the
datetime
picker.one dpSDate and the other dpEDate. [….Value > dpEndD.Value) { dpStartD.Value = System.
DateTime
.Now; MessageBox.Show("End date should be greater than… i finish selecting a value from the
datetime
picker the error msg to display how …
Re: DateTime column in textbox
Programming
Web Development
14 Years Ago
by rohand
…` type but you are passing StartDate/EndDate as `
DateTime
`. 2) another thing is you have defined StartDate/…txtSponsor.Text; string Location = txtLocation.Text;
DateTime
StartDate; StartDate=
DateTime
.Parse(txtStartDate.Text);
DateTime
EndDate =
DateTime
.Parse(txtEndDate.Text); string URL = txtURL…
datetime in python
Programming
Software Development
16 Years Ago
by amit1_x
… H1 and H2. I was wondering if i could use
datetime
.
datetime
in Python to calculate the difference the below code is…; H2 = "2009,12,22,20,22" g =
datetime
.
datetime
(H1) -
datetime
.
datetime
(H2) [/CODE] how could i pass variables or if it…
DateTime column in textbox
Programming
Web Development
14 Years Ago
by PRINCE01
…,but 2 of are my column data type are
DateTime
this is part of my code: string Name ….Text; string Location = txtLocation.Text;
DateTime
StartDate; StartDate=
DateTime
.Parse(txtStartDate.Text);
DateTime
EndDate =
DateTime
.Parse(txtEndDate.Text); string URL = txtURL…
Re: datetime picker on C#
Programming
Software Development
14 Years Ago
by judithSampathwa
…] hey thankxx i have the below code for validating the
datetime
picker. why is this code running two times?? any idea… dpStartD_ValueChanged(object sender, EventArgs e) { if (dpStartD.Value < System.
DateTime
.Now.Date) { MessageBox.Show("Enter a valid date for…
Re: datetime in datetime picker
Programming
Software Development
14 Years Ago
by judithSampathwa
…Text, cbPStatus.Text, txtPSession.Text, [B]
DateTime
.Parse(dpStartD.Text),
DateTime
.Parse(dpEndD.Text)[/B], "False",…, String agency, String type, String status, String sessionName,
DateTime
startDate,
DateTime
endDate, String doNotProceed, String reason) { try { db.…
Re: datetime picker on C#
Programming
Software Development
14 Years Ago
by pabloh007
don't compare against
datetime
.now compare against the other datetimepicker you have. that way it will only show it once.
Re: datetime picker on C#
Programming
Software Development
14 Years Ago
by judithSampathwa
[QUOTE=pabloh007;1244321]don't compare against
datetime
.now compare against the other datetimepicker you have. that way …
Re: datetime picker on C#
Programming
Software Development
14 Years Ago
by pabloh007
… dateTimePicker1_ValueChanged(object sender, EventArgs e) { if ((dateTimePicker1.Value.Date <
DateTime
.Now.Date)) { counter++; dateTimePicker1.ResetText(); if (counter == 2) { MessageBox.Show…
Re: datetime picker
Programming
Software Development
9 Years Ago
by JOSheaIV
… should be using the something like `
DateTime
.Parse`, `
DateTime
.TryParse`, `
DateTime
.ParseExact`, or `
DateTime
.TryParseExact` If I remember right, the… never worked for converting a string to a
DateTime
. However, I do know for a fact …for parsing industry regulated barcode, who can have mutlipe
DateTime
formats) (By the way, the difference between,…
DateTime CLASS problem
Programming
Web Development
15 Years Ago
by kris82009
Hi Everybody ,i have a problem with
DateTime
class,I am using
DateTime
class in my program it works fine in php 5… $time = date('r', $timestamp); // now create the
DateTime
object for this time $dtime = new
DateTime
($date); // convert this to the user's…
Re: datetime in datetime picker
Programming
Software Development
14 Years Ago
by nick.crane
… cbPAgency.Text, cbPType.Text, cbPStatus.Text, txtPSession.Text,
DateTime
.Parse(dpStartD.Text),
DateTime
.Parse(dpEndD.Text), "False", "");[/… Anyway, try this [CODE][B]
DateTime
sDate = dpStartD.Value.Date +
DateTime
.Now.TimeOfDay;
DateTime
eDate = dpEndD.Value.Date +
DateTime
.Now.TimeOfDay; [/B] m.AddTopicDetails…
Re: datetime in datetime picker
Programming
Software Development
14 Years Ago
by judithSampathwa
… cbPAgency.Text, cbPType.Text, cbPStatus.Text, txtPSession.Text,
DateTime
.Parse(dpStartD.Text),
DateTime
.Parse(dpEndD.Text), "False", "");[/… Anyway, try this [CODE][B]
DateTime
sDate = dpStartD.Value.Date +
DateTime
.Now.TimeOfDay;
DateTime
eDate = dpEndD.Value.Date +
DateTime
.Now.TimeOfDay; [/B] m.AddTopicDetails…
DateTime MinValue
Programming
Databases
13 Years Ago
by tatarao25
… @fromDate = (select MIN(applicant_statuss.created_on) from applicant_statuss) end if @toDate =
Datetime
.MinValue BEGIN set @toDate =GETDATE(); end the following error is… 16, State 2, Procedure sp_InterviewerPerformance, Line 21 The column prefix '
Datetime
' does not match with a table name or alias name…
DateTime in TextBox (Visual Basic)
Programming
Databases
1 Year Ago
by shane1961
… button, this code is placed following MyTableBindingSourceAddNew() Dim CurrentDateTime As
DateTime
=
DateTime
.Now.ToString("dd.MM.yy hh:mm:ss"… a toolbar, display member being "SaleDate" This displays
DateTime
, but time is always 12:00:00AM The SaleDateTextbox.Text…
Re: datetime picker error
Programming
Software Development
14 Years Ago
by nick.crane
…set start date to initial value of today dpSdate.Value =
DateTime
.Today; // set end date to initial value of today… + 1 day dpEdate.Value =
DateTime
.Today.AddDays(1); // restrict start date to start from… today onwards dpSdate.MinDate =
DateTime
.Today; // restrict start date to a max value of …
Re: datetime picker error
Programming
Software Development
14 Years Ago
by judithSampathwa
… start date to initial value of today dpSdate.Value =
DateTime
.Today; // set end date to initial value of today… + 1 day dpEdate.Value =
DateTime
.Today.AddDays(1); // restrict start date to start from… today onwards dpSdate.MinDate =
DateTime
.Today; // restrict start date to a max value of…
Re: DateTime formatting not working
Programming
Software Development
13 Years Ago
by Gobble45
I have solved this by using Dim date_now As Date date_now =
DateTime
.Now.Year & "-" &
DateTime
.Now.Month & "-" &
DateTime
.Now.Day & " " &
DateTime
.Now.Hour & ":" &
DateTime
.Now.Minute & ":" &
DateTime
.Now.second Thanks for the help though :)
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC