MapWinGIS:Table Open
From MapWindow GIS
Open
Opens a .dbf table from file.
VB.NET Usage
Function Open(dbfFilename As String, cBack As MapWinGIS.ICalback) As Boolean
Parameters
|
dbfFilename | The filename of the table to be opened. |
| cBack | The ICallback object which will receive progress and error messages while the table is being opened. |
| ReturnValue | A boolean value representing the success or failure of opening the table. |
Sample Code
Private Sub OpenTable()
Dim table As New MapWinGIS.Table()
Dim success As Boolean
'Open a table
success = table.Open("C:\test.dbf")
End Sub
VB 6 Usage
Function Open(dbfFilename As String, cBack As ICalback) As Boolean
Parameters
|
dbfFilename | The filename of the table to be opened. |
| cBack | The ICallback object which will receive progress and error messages while the table is being opened. |
| ReturnValue | A boolean value representing the success or failure of opening the table. |
Sample Code
Private Sub OpenTable()
Dim table As New MapWinGIS.table
Dim success As Boolean
'Open a table
success = table.Open("C:\test.dbf")
End Sub
















