Click here to Skip to main content
15,892,809 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# Simple Geometry Shape Recognition,need help Pin
Alan Balkany5-Oct-09 10:21
Alan Balkany5-Oct-09 10:21 
GeneralRe: C# Simple Geometry Shape Recognition,need help Pin
kideve5-Oct-09 16:48
kideve5-Oct-09 16:48 
AnswerRe: C# Simple Geometry Shape Recognition,need help Pin
kideve5-Oct-09 16:50
kideve5-Oct-09 16:50 
QuestionInsert data to datetimepicker Pin
tamir9013-Oct-09 22:04
tamir9013-Oct-09 22:04 
AnswerRe: Insert data to datetimepicker Pin
Richard MacCutchan3-Oct-09 22:09
mveRichard MacCutchan3-Oct-09 22:09 
GeneralRe: Insert data to datetimepicker [modified] Pin
tamir9013-Oct-09 22:18
tamir9013-Oct-09 22:18 
AnswerRe: Insert data to datetimepicker Pin
Manas Bhardwaj3-Oct-09 23:43
professionalManas Bhardwaj3-Oct-09 23:43 
AnswerRe: Insert data to datetimepicker Pin
DaveyM694-Oct-09 1:11
professionalDaveyM694-Oct-09 1:11 
If you can pull the time out the database or DataDridView as a DateTime then you can just use
C#
datePickerEditHour.Value = theRow.Cells["Hours"].Value
If not, then parse the string you are getting
C#
datePickerEditHour.Value = DateTime.ParseExact(
    theRow.Cells["HourString"].Value,
    "hh:mm:ss", System.Globalization.CultureInfo.InvariantCulture);
using whatever time format you need to use.

Dave

Generic BackgroundWorker - My latest article!
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Why are you using VB6? Do you hate yourself? (Christian Graus)

AnswerRe: Insert data to datetimepicker [modified] Pin
Dave Jellison4-Oct-09 5:33
Dave Jellison4-Oct-09 5:33 
QuestionVoice over lan Pin
rosae6193-Oct-09 21:03
rosae6193-Oct-09 21:03 
AnswerRe: Voice over lan Pin
Richard MacCutchan4-Oct-09 1:38
mveRichard MacCutchan4-Oct-09 1:38 
GeneralRe: Voice over lan Pin
rosae6194-Oct-09 23:54
rosae6194-Oct-09 23:54 
GeneralRe: Voice over lan Pin
Richard MacCutchan5-Oct-09 0:51
mveRichard MacCutchan5-Oct-09 0:51 
GeneralRe: Voice over lan Pin
rosae6195-Oct-09 1:57
rosae6195-Oct-09 1:57 
QuestionCapture Images from webcam Pin
Abdul Rahman Hamidy3-Oct-09 18:46
Abdul Rahman Hamidy3-Oct-09 18:46 
AnswerRe: Capture Images from webcam Pin
Luc Pattyn3-Oct-09 22:00
sitebuilderLuc Pattyn3-Oct-09 22:00 
QuestionPreventing the user to resize the ListView columns Pin
SimpleData3-Oct-09 7:05
SimpleData3-Oct-09 7:05 
AnswerRe: Preventing the user to resize the ListView columns Pin
Luc Pattyn3-Oct-09 8:29
sitebuilderLuc Pattyn3-Oct-09 8:29 
GeneralRe: Preventing the user to resize the ListView columns Pin
SimpleData3-Oct-09 8:38
SimpleData3-Oct-09 8:38 
GeneralRe: Preventing the user to resize the ListView columns Pin
Manas Bhardwaj3-Oct-09 9:31
professionalManas Bhardwaj3-Oct-09 9:31 
GeneralRe: Preventing the user to resize the ListView columns Pin
DaveyM693-Oct-09 9:34
professionalDaveyM693-Oct-09 9:34 
GeneralRe: Preventing the user to resize the ListView columns Pin
SimpleData3-Oct-09 10:09
SimpleData3-Oct-09 10:09 
Joke[Message Deleted] Pin
Muammar©3-Oct-09 1:56
Muammar©3-Oct-09 1:56 
GeneralRe: Big chief, no fart! Pin
Luc Pattyn3-Oct-09 2:03
sitebuilderLuc Pattyn3-Oct-09 2:03 
GeneralRe: Big chief, no fart! Pin
Muammar©3-Oct-09 2:19
Muammar©3-Oct-09 2:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.