vote up 0 vote down star

Hi,

I haev an object with a DateTime property. I want to map the time to a textbox (thus want the user enter the time, it's directly reverberated to my property).

However I just want to display the time. How can I say this (ie the format should be something like hh:mm to be correct).

Less specifcly how can I format the text "sent" to the object and the other way too ?

Thx

flag

73% accept rate

1 Answer

vote up 1 vote down check

You can specify "HH:mm" as the binding's FormatString

If you need more complex formatting than what a format string can provide, you can handle the Format event of the binding, which enables you to provide your own formatting logic

link|flag
Sounds that it is what I'm looking for however the whole datetime is displayed (daysn months etc..). I put the folowwing code : textBoxHorodatage.DataBindings.Add("Text", _customObject, "HoroDate"); textBoxHorodatage.DataBindings[0].FormatString = "hh:mm"; – Toto Aug 28 at 8:23
Bis - is there a way to retrieve the binding object in a better way than [0] ? – Toto Aug 28 at 8:24
I should had : textBoxHorodatage.DataBindings[0].FormattingEnabled = true; – Toto Aug 28 at 8:26
Ah oui, j'avais oublié FormattingEnabled ;). Une meilleure solution que [0] : textBoxHorodatage.DataBindings["Text"] – Thomas Levesque Aug 28 at 8:31
1  
Il y a un évènement BindingComplete, avec des paramètres qui peuvent t'indiquer s'il y a eu une erreur – Thomas Levesque Aug 28 at 8:46
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.