MapWinGIS:Table SaveAs
From MapWindow GIS
SaveAs
Saves the table using the specified filename.
VB.NET Usage
Function SaveAs(dbfFilename As String, cBack As MapWinGIS.ICallback) As Boolean
Parameters
|
dbfFilename | The filename to be used to save the table. |
| cBack | The ICallback object which will receive progress and error messages while the table is being saved. |
| ReturnValue | A boolean value representing the success or failure of saving the table. |
Sample Code
Private Sub SaveTableAs()
Dim table As New MapWinGIS.Table()
Dim success As Boolean
'Save the table under the given filename
success = table.SaveAs("C:\test.dbf", Me)
End Sub
VB 6 Usage
Function SaveAs(dbfFilename As String, cBack As ICallback) As Boolean
Parameters
|
dbfFilename | The filename to be used to save the table. |
| cBack | The ICallback object which will receive progress and error messages while the table is being saved. |
| ReturnValue | A boolean value representing the success or failure of saving the table. |
Sample Code
Private Sub SaveTableAs()
Dim table As New MapWinGIS.table
Dim success As Boolean
'Save the table under the given filename
success = table.SaveAs("C:\test.dbf", Me)
End Sub
















