nerdalert1
Programmer
I dont have that option in the properties of my datagrid. Any help all? Thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub CreateRS()
Set m_rs = New ADODB.Recordset
With m_rs
.fields.Append "Col1", adVarWChar, [b]5[/b], adFldIsNullable Or adFldUpdatable
.fields.Append "Col2", adVarWChar, [b]10[/b], adFldUpdatable Or adFldUpdatable
.Open
End With
End Sub