G
gsauns
I am upgrading an application from VB6 to .NET.
One of the forms, which synchronizes data across a network, did not
upgrade, so I copied the code and worked it out manually.
I am now having a problem with the following lines:
RS.Source = strSQL
RS.Open()
The program seems to avoid this code for a bit, then throws an error.
I also tried just: RS.Open(strSQL)
but that threw a different error... is there a better way to set the
source, which is a SQL string?
One of the forms, which synchronizes data across a network, did not
upgrade, so I copied the code and worked it out manually.
I am now having a problem with the following lines:
RS.Source = strSQL
RS.Open()
The program seems to avoid this code for a bit, then throws an error.
I also tried just: RS.Open(strSQL)
but that threw a different error... is there a better way to set the
source, which is a SQL string?