I'm converting from Access 2000 to SQL Svr 2000. My VB code uses a datagrid. However, although I set allowaddnew, allowdelete, allowupdate all to true, I'm not able to perform those functions on the displayed table. Why ?
can you paste a snippet of your code here where you access the SQL server and display the data on the datagrid? this will help in debugging your problem
Set Db = Nothing
ConnectionString = "driver={SQL Server};" & _
"server=File;" & _
"uid=;pwd=;" & _
"database=Cash Management;"
MsgBox "Connection string setup new ver"
With Db
.ConnectionString = ConnectionString
.ConnectionTimeout = 20
.Open
End With
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.