Hiya Bill. Well, when I said "unbound", I meant directly to a datasource,
but I see your point. You're certainly correct that it has to bind to
"something".
I envision doing something as shown below in order to set up a grid that
contains labels in the left column and a single record in the right column.
The idea of making users scroll horizontally on the PPc seems anathema to
me. I don't really want to "bind" a data table as much as I would like to
bind all of the fields of a single record into 1 column (rotated if you
will).
If you have a solution, I'm all ears. Thanks.
***********************************************
dt.Columns.Add(dcLeftStatic)
dt.Columns.Add(dcRightDynamic)
x = 1
Do
If x < rowcount Then
row = dt.NewRow()
row("Labels") = arrayStaticLeft
row("Incoming Data") = arrayDynamicRight
dt.Rows.Add(row)
x = x + 1
Else
Exit Do
End If
Loop
**************************************************************