No announcements
Found 2451951 threads
-
3 Votes
DateTime format problem ( Local DateTime)
If this is true, then you should have no problems.Answered | 7 Replies | 2029 Views | Created by bahushekh - Tuesday, August 16, 2011 3:15 PM | Last reply by SJWhiteley - Wednesday, August 17, 2011 7:35 PM -
0 Votes
Format DateTime value in DataGridView column header cell?
As it turns out, I need to handle CellPainting in this grid anyway, to emulate a multiline textbox cell with clipping.Answered | 9 Replies | 5888 Views | Created by kaborka - Monday, October 5, 2009 11:55 PM | Last reply by kaborka - Thursday, October 8, 2009 6:08 PM -
2 Votes
how to formatting values in textBox to display and edit, but store value in original format ?
I hope it will solve your problem Hamed.Answered | 24 Replies | 6658 Views | Created by Hamed_1983 - Tuesday, April 13, 2010 10:07 AM | Last reply by Hamed_1983 - Friday, April 16, 2010 7:13 PM -
0 Votes
format function for datetime value
Format(Now, "yyyy-MM-dd HH:mm:ss.fff") http://msdn.microsoft.com/en-us/library/8kb3ddd4.aspxAnswered | 3 Replies | 1135 Views | Created by Prashanthi Bangalore - Thursday, April 25, 2013 8:04 AM | Last reply by Ali Hamdar - Thursday, April 25, 2013 9:06 AM -
0 Votes
VS2005:Problem with datetime format while conactenating values in textboxes
User-952121411 posted Assuming this is not a Globilization issue, and you are using a U.S. format of MM/DD/YYYY and that is the date format you are ...Answered | 4 Replies | 22 Views | Created by Anonymous - Sunday, December 13, 2009 12:18 PM | Last reply by Anonymous - Wednesday, December 16, 2009 8:59 AM -
0 Votes
change datetime picker format
To put it stronger: Don't try to fix this code, because if you try to save datetimes in a certain format, you haven't understood a datetime value only is the ...Answered | 2 Replies | 745 Views | Created by BONIETE - Friday, March 25, 2016 9:10 PM | Last reply by Olaf Doschke - Monday, March 28, 2016 10:15 AM -
1 Votes
Format datetime to date
This solved my problem.Answered | 6 Replies | 3867 Views | Created by Leo00 - Tuesday, January 21, 2014 8:26 PM | Last reply by Leo00 - Thursday, January 23, 2014 2:49 PM -
0 Votes
Datetime format value of a column of a datarow
((DateTime)row[0]).ToString("yyyy-MM-dd HH:mm")Answered | 2 Replies | 16051 Views | Created by sairam132033 - Wednesday, June 3, 2015 2:02 PM | Last reply by sairam132033 - Wednesday, June 3, 2015 3:34 PM -
5 Votes
Format values in a textbox
I have another question regarding textboxes as well.Answered | 6 Replies | 2779 Views | Created by johmolan - Sunday, August 9, 2009 11:45 PM | Last reply by Levi Domingos - Sunday, August 16, 2009 5:07 PM -
0 Votes
Hoe to set values of DateTime Controls?
Set DateTimeControl.SelectedDate to ISO8601 DateTime format using SPUtility.CreateISO8601DateTimeFromSystemDateTime ...Answered | 3 Replies | 4025 Views | Created by Awdhesh Kumar - Wednesday, May 12, 2010 10:36 AM | Last reply by Chengyi Wu - Friday, May 14, 2010 2:51 AM -
0 Votes
Check the DateTime format
A DateTime field doesn't have any specific format and a database doesn't store a datetime value in any particular format.Answered | 2 Replies | 943 Views | Created by RohitrkKUmar - Tuesday, May 12, 2015 12:03 PM | Last reply by Magnus (MM8) - Tuesday, May 12, 2015 3:01 PM -
0 Votes
Nvarchar to datetime format
As suggested by Olaf, datetime don't have any format information it stores as int in this case assuming you are querying data using ...Answered | 6 Replies | 3270 Views | Created by Abhisek Mondal - Tuesday, April 11, 2017 10:12 AM | Last reply by Abhisek Mondal - Tuesday, April 11, 2017 1:57 PM -
3 Votes
Change default format for Datetime
While Selecting the Data you can apply your formatting using Convert and Cast Functions.Answered | 5 Replies | 4463 Views | Created by KKKKKKKKKKKK1234 - Thursday, May 6, 2010 10:22 AM | Last reply by Gopi V - Thursday, May 6, 2010 11:05 AM -
0 Votes
BULK INSERT - Will not accept datetime value regardless of format.
Thankfully it is not as bad as Tom says; you can load binary values directly with BULK INSERT.Answered | 6 Replies | 11724 Views | Created by DavidAmazing - Sunday, August 21, 2011 2:00 AM | Last reply by Erland Sommarskog - Sunday, August 21, 2011 10:00 PM -
2 Votes
Store a Textbox Value in array format
A string is already an array, so it is simple 'Have some text in the textbox TextBox1.Text = "CrazyPennie" ...Answered | 2 Replies | 745 Views | Created by DivisBalaji - Thursday, July 31, 2014 11:33 AM | Last reply by Crazypennie - Thursday, July 31, 2014 2:14 PM -
0 Votes
Formatting datetime
Hi, you can format your DateTime object using String property String datestr = ...Answered | 2 Replies | 3103 Views | Created by SuzieQ414 - Monday, December 7, 2009 3:52 PM | Last reply by Suresh Deoda - Tuesday, December 8, 2009 6:08 AM -
2 Votes
Specific datetime format
SET NOCOUNT ON DECLARE @startTime DATETIME = CURRENT_TIMESTAMP DECLARE @dts TABLE (datetime DATETIME) WHILE (SELECT COUNT(*) FROM @dts)Answered | 8 Replies | 789 Views | Created by Kirkee - Tuesday, January 26, 2016 8:00 PM | Last reply by Patrick Hurst - Wednesday, January 27, 2016 5:14 PM -
0 Votes
Change Date Format While binding data to textbox
Hi Lalit, If the textbox has bind with a valid date, use JQuery DatePicker to format the date You could try the below ...Answered | 5 Replies | 1879 Views | Created by Lalit Kasa - Wednesday, August 31, 2016 12:25 PM | Last reply by Patrick_Liang - Friday, September 9, 2016 9:50 AM -
0 Votes
DateTime format conversion in c#
The appearance of a DateTime value is the result of a formatting operation.Answered | 4 Replies | 7756 Views | Created by Kevin Peterson. _ - Wednesday, March 25, 2009 1:39 PM | Last reply by Guo Surfer - Wednesday, April 1, 2009 4:08 AM -
1 Votes
Format string to datetime
As Stefan said, CAST uses the default date format.Answered | 5 Replies | 798 Views | Created by collie12 - Wednesday, March 9, 2016 1:00 PM | Last reply by Stefan Hoffmann - Wednesday, March 9, 2016 2:13 PM - Items 1 to 20 of 2451951 Next ›
No announcements