Re: Programmatically populate grid
- From: "Tim Kelley" <tkelley@xxxxxxxxxxx>
- Date: Mon, 9 Oct 2006 09:52:03 -0500
I gave that a try. I created my dataset and datatable and populated it
with the data I need.
I bound the dataviewgrid to the dataset, but no records show in my grid. I
have checked the datatable and there are actually records in the table. Am
I missing something? Here is the code I am using:
DataSet dsgrid = new DataSet();
DataTable workTable = new DataTable();
dsgrid.Tables.Add("tablename");
workTable.Columns.Add("field1", typeof(String));
workTable.Columns.Add("field2", typeof(String));
workTable.Columns.Add("field3", typeof(String));
code to populate table
dataGridView1.DataSource = dsgrid.Tables[0];
Thanks,
"Nicholas Paldino [.NET/C# MVP]" <mvp@xxxxxxxxxxxxxxxxxxxxxxxxxxx> wrote in
message news:%23yjMhUZ6GHA.2364@xxxxxxxxxxxxxxxxxxxxxxx
Tim,
No, there isn't. You need to find a class that implements IList and
then bind to that.
DataSet classes are disconnected data, meaning that you don't need a
database in order to use them. They also have designer support, so you
should just use that in your program and bind to that (populating that
programatically).
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mvp@xxxxxxxxxxxxxxxxxxxxxxxxxxx
"Tim Kelley" <tkelley@xxxxxxxxxxx> wrote in message
news:uTyN4kY6GHA.4500@xxxxxxxxxxxxxxxxxxxxxxx
Is it possible to populate a grid using code (not binding it to a
datasource). Is there something like an additem method?
Thanks,
.
- References:
- Programmatically populate grid
- From: Tim Kelley
- Re: Programmatically populate grid
- From: Nicholas Paldino [.NET/C# MVP]
- Programmatically populate grid
- Prev by Date: Re: Windows Service project doesn't install using VS 2005
- Next by Date: Vista RC1 & 2 - Developers perspective?
- Previous by thread: Re: Programmatically populate grid
- Next by thread: Italics in Windows title
- Index(es):
Relevant Pages
|