954,500 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Dynamic table using database

Hello guys,

My question is not very direct and clear but i'll try to explain it nicely.

I have a database running on MySQL with 1 important table which i need to use. Then I put this table into my C# application (I'm using Microsoft Visual Studio 2010). The only component I can see is the DataGridView which I use for getting the table from the database. Is there another way of retrieving data from the table and displaying it?
The other more important thing is that I want to make the table "editable" so each column is acting like a textbox and the user is able to click on each cell and edit the text.
I'm really out of ideas how to do this.

Hopefully I explain it clearly and understandable.
Thanks in advance.

Pepys

pepyrs
Light Poster
25 posts since Sep 2011
Reputation Points: 10
Solved Threads: 0
 

How you retrieve the data from the database won't change but in terms of displaying it you could opt to use a repeater control (you've posted this in the asp.net forum so I'm guessing its a web app you're working on).
Whatever you choose (a datagridview will work just fine) you will want to alter the columns to display either text boxes or checkboxes depending on what you need. In the properties of the datagirdview you can specify what control you want to be in a particular column. After that, for text for example, the data from the database would be inserted into the text box rather than displayed as text on the page allowing it to be edited by the user.
I have some sample code on another computer that might be of use if you need more help.

Steve

hericles
Practically a Posting Shark
823 posts since Nov 2007
Reputation Points: 136
Solved Threads: 166
 

Hey Steve,
Thanks for the reply.

Yeah it's a WEB app and I'm using datagridview for getting the data from the database. No worries about that. But I don't really know how can I "control" this table afterwards in the app, so I can make the columns and rows as text boxes and to be editable. Since I'm pretty new to .ASP and C# at all, I have to read more about the repeater controller you are talking about. I don't know what it is exactly.
And if you have some similar code which could be helpful I will be so grateful.
Thanks dude

Pepys

pepyrs
Light Poster
25 posts since Sep 2011
Reputation Points: 10
Solved Threads: 0
 
charlybones
Junior Poster in Training
77 posts since Jan 2011
Reputation Points: 16
Solved Threads: 16
 

Wow,
Thanks dude this is pretty close to my problem. I'm checking it out now.
Useful :)

Thanks

pepyrs
Light Poster
25 posts since Sep 2011
Reputation Points: 10
Solved Threads: 0
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: