Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Do you know about ApolloCOM60?

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I'm testing ApolloCOM60 in order to access and update clipper tables and indexes (NTX) from Visual Basic.
The problem is that i can't find how to open or manage the indexes! Here's the code I'm testing:

Dim objTable As ApolloCOM60.Table
Set objTable = New ApolloCOM60.Table
With objTable
.DatabaseName = "P:\Wxobject\wxdatos"
.TableName = "WKARAP.DBF"
.IndexOpen "WKARAP.NTX"
.Open
MsgBox(.GetString("WKARNUPART")
End With
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top