DataGrid works / MSFlexGrid doesn't
My computer : Visual Basic 6 (SP3) & Win2K
This works:
sSQL = ....
set rs = new ADODB.recordset
rs.open sSQL, cnn1, adOpenDynamic, adLockPessimistic, adCmdText
DataGrid1.DataSource = rs
....
This doesn't work:
sSQL = ....
set rs = new ADODB.recordset
rs.open sSQL, cnn1, adOpenDynamic, adLockPessimistic, adCmdText
MSFlex1.DataSource = rs
....
generating run-time error 91 "Object variable or with block variable not set"
What the ... is this ? Do I need another patch or what ?
Thanks !
Mike
|