Ask a Question related to ASP.NET General, Design and Development.
-
Richard Loupatty #1
set up a datagrid of multiples datatables in 1 dataset
I have a few tables consisting two columns each.
They all have the same first column (unique key)
What I want to do is show a datagrid, starting with the first column
followed
by the rest. Actually put the tables behind each other.
Is there anyone who could show me the way how to do this
I did manage but it has a bad performance.
What I did was filling up row by row
Richard Loupatty
Richard Loupatty Guest
-
Troubles with dataset and datagrid
Hello, I was just wondering if anyone has a suggestion to resolving the dataset-datagrid problem I have been having. The dataset and datagrid are... -
SQL Select causing multiples...
I hate to bother with this, as I have had this issue before and solved it - But I cannot remember what I did! I have t tables, a member list (with... -
DataSet - DataGrid
I did the tutorial on using the dataset component to send data to a datagrid component by databinding and lo and behold. It doesn't work. The data... -
Multiples adapters with flashcomm
I want to use multiple adapter with different IP address in each one, so I will make sure that one application is working in one IP and another... -
Populating DataSet from two DataTables
I'm trying to build a heirarchial DataGrid. I've created the two tables I need through some fun in a code behind that runs through an Active... -
Rick Spiewak #2
Re: set up a datagrid of multiples datatables in 1 dataset
This sounds like it can be done with a Join in your select statement, to
build a result set according to what you want and putting it into a DataSet.
"Richard Loupatty" <riclo@trashnet.nl> wrote in message
news:3f17292f$0$153$edd6591c@news.versatel.net...> I have a few tables consisting two columns each.
> They all have the same first column (unique key)
>
> What I want to do is show a datagrid, starting with the first column
> followed
> by the rest. Actually put the tables behind each other.
>
> Is there anyone who could show me the way how to do this
>
> I did manage but it has a bad performance.
> What I did was filling up row by row
>
> Richard Loupatty
>
>
>
>
Rick Spiewak Guest
-
Richard Loupatty #3
Re: set up a datagrid of multiples datatables in 1 dataset
This project works with DBF so I didn't know if the join works for this.
I solved it now with the joinview sample from Microsoft knowledge base.
"Rick Spiewak" <rickspiewak@mindspring.com> schreef in bericht
news:OZPHAcSTDHA.3500@tk2msftngp13.phx.gbl...DataSet.> This sounds like it can be done with a Join in your select statement, to
> build a result set according to what you want and putting it into a>
> "Richard Loupatty" <riclo@trashnet.nl> wrote in message
> news:3f17292f$0$153$edd6591c@news.versatel.net...>> > I have a few tables consisting two columns each.
> > They all have the same first column (unique key)
> >
> > What I want to do is show a datagrid, starting with the first column
> > followed
> > by the rest. Actually put the tables behind each other.
> >
> > Is there anyone who could show me the way how to do this
> >
> > I did manage but it has a bad performance.
> > What I did was filling up row by row
> >
> > Richard Loupatty
> >
> >
> >
> >
>
Richard Loupatty Guest



Reply With Quote

