I think all I need is to somehow unbind the stored procedure recordset to the Janus GridEX, but having a difficult time figuring out how. Programming language is VBA.
My grid populates as I want - no problem there. But this code will not allow me to edit the cells that I have showing (hiding some columns):
JGEX.AllowEdit = True
JGEX.Columns(4).EditType = jgexEditNone
JGEX.Columns(6).EditType = jgexEditTextBox
JGEX.Columns(7).EditType = jgexEditTextBox
JGEX.Columns(8).EditType = jgexEditTextBox
again - I think the only issue is the need to disconnect the recordset (to allow edit). The RS object is tied in like this:
Set JGEX.ADORecordset = rsStaged
Where the rsStaged is this:
Set rsStaged = New ADODB.Recordset
rsStaged.CursorLocation = adUseClient
rsStaged.Open SQL1, cnScada, adOpenStatic, adLockOptimistic
Pretty simple recordset, but comes from a stored procedure, not a direct table query.
Thanks in advance!