Is there something like "TDBText" (from CBuilder) in c#?

  • Thread starter Thread starter suki
  • Start date Start date
S

suki

I`m curious to know if there is something like a TDBText in c#.
I`m using a DataGridView to display my db data, but this doesn`t look
very good.
In the standard components, i find nothing similar to this...

Is there something to display the data right?

thanks for answers...
suki
 
"suki" <[email protected]> a écrit dans le message de (e-mail address removed)...

| I`m curious to know if there is something like a TDBText in c#.
| I`m using a DataGridView to display my db data, but this doesn`t look
| very good.
| In the standard components, i find nothing similar to this...
|
| Is there something to display the data right?

The VCL provided data-aware components that had to use TDataset derivatives
to provide their data. WinForms controls can connect to any source of data,
including properties of objects as well as tables in a TDataset.

AFAICT, System.Windows.Forms.Label is the class that you are looking for.

Joanna
 
That sound good!

But how can i set the data binding property to a field of a dataset
(defined in a class in my project) ?
In this data field, there are many entries and i want to have as much
labels as entries...

How can i do that?

thanks, suki
 
Back
Top