Thanks, Cor, I will check out the urls in a minute. But I want to display
stringA, stringB, stringC, stringD in the grid from related tables, in one
row, not with the !~@!@# +- child row controls. All the main table has is a
few data fields, the rest are foreign keys. That is why I am using a view.
SELECT TOP 1000 dbo.Positions.posName AS [Position],
dbo.Companies.compName AS Company, dbo.Applications.app Date AS [Date],
dbo.Applications.appNotes AS Notes,
dbo.Applications.appID AS ID, dbo.Companies.compID, dbo.Positions.posID
FROM dbo.Companies INNER JOIN
dbo.Applications ON dbo.Companies.compID =
dbo.Applications.appCompany INNER JOIN
dbo.Positions ON dbo.Applications.appPosition =
dbo.Positions.posID
ORDER BY ID
I was wanting to use a typed dataset as well, since I have found that using
untyped might work for a while, but when you modify something, add features,
etc, you tend to get more errors, often with the data types, that's why I
wanna use typed datasets to begin with.
Thanks!
--
Patrick Sullivan, AA-BA, BA-IT
"Cor Ligthert [MVP]" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Patrick,
>
> Most people use the datasource to bind a table to a datagrid (or any other
> "data" control)
>
>
http://msdn.microsoft.com/library/de...ourcetopic.asp
>
> You know that we have a website with all kind of VBNet windowforms
datagrid
> tips (sample code).
> (However, as well not really based on the typed dataset)
>
> http://www.windowsformsdatagridhelp.com/default.aspx
>
> I hope this helps,
>
> Cor
>
>
>
>