OpenFox
With FoxR
.ActiveConnection = FoxC
.Source = "Select * From TABLES Where NUMBER = " & tablenum
.CursorType = adOpenStatic
.LockType = adLockOptimistic
.CursorLocation = adUseClient
.Open
If Not .BOF And Not .EOF Then
.Fields("TIMETYPE").Value = timetype
.Fields("NAME").Value = name1
.Fields("RUNTIME").Value = time1 & ":" & time2
.Update
End If
.Close
End With
and on the line .Open I get the error Missing Operand.
__________________
In THEORY communism works... In THEORY Mountain Dew tastes good...
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET. subscribe