Binding date to textBox

  • Thread starter Thread starter PawelR
  • Start date Start date
P

PawelR

Hello group
I have problem with binding data to textBox.
If in dataBease - dataSet I'va varchar or char I use:
textBox1.DataBindings.Add(new Binding("Text",myDS ,"MyTable.MyColumn"));

If I want binding int or decimal for example I have blank textBox. My
question is
How property name use instead of "Text"?

Thanks

PawelR
 
Pawel,
textBox1.DataBindings.Add(new Binding("Text",myDS ,"MyTable.MyColumn"));
I thought that I have showed you this in an earlier message.

Using a strongly typed dataset and using a non strongly typed dataset. Did
you look at that?

Cor
 
Sorry Cor
Whats meaning "strongly type "?

U¿ytkownik "Cor Ligthert said:
Pawel,

I thought that I have showed you this in an earlier message.

Using a strongly typed dataset and using a non strongly typed dataset. Did
you look at that?

Cor
 
Back
Top