html table equivalent in Windows Forms

  • Thread starter Thread starter Aamir Ghanchi
  • Start date Start date
A

Aamir Ghanchi

Is there a grid style, html table like control available
in Windows Forms. Something like Panel with cells, in
which I can put other controls like TextBox, ComboBox etc.
TIA

aamir
 
Sounds like you're looking for the DataGrid control. Have you looked at this
control already?
 
* "Aamir Ghanchi said:
Is there a grid style, html table like control available
in Windows Forms. Something like Panel with cells, in
which I can put other controls like TextBox, ComboBox etc.

DataGrid.
 
I know about DataGrid, and have used it extensively.
I need html table type grid, that can hold all sort of
controls in the cells, it does not have to be DataBase
bind either.
 
Currently the DataGrid is basically a slave to some type of data source
(bound data). However, you can host all types of controls in the grid cells.
It's just that you have to write the code yourself (or find it on the
Internet) to host controls other than the TextBox and CheckBox.

ComboBox In Grid - http://www.syncfusion.com/faq/winforms/search/480.asp
DateTimePicker In Grid (see the example) -
http://makeashorterlink.com/?C4D4224C6

Other than the DataGrid control, you could check around to see if a
third-party company offers closer to what you want, or you could write the
control yourself.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Access Form Refresh 1
Inherited forms 4
VB6 Component Issue with TDBGRID 0
DataGrid 1
Outlook custom forms 0
Popup in Winforms 2
The table HTML element 2
combobox databinding on char type column 1

Back
Top