WinStudio
IWSIDOCollection interface
Exports the contents of a designated IDO collection to a file.
Parallels the Form menu option Export to File.
object.ExportCollection( Boolean1, string, Boolean2 )
Part |
Description |
object | Required. A reference to an IDO collection. |
Boolean1 | Required. Boolean value that indicates:
|
string | Required. The path and name of the output file.
If you do not specify a full path, the path is relative to the file in which WinStudio.exe is installed. This method does not create directories. |
Boolean2 | Required. Boolean value that indicates:
|
Sub Main() ThisForm.PrimaryIDOCollection.ExportCollection(False, "c:\mytemp\Export.csv", False) End Sub