When you generate a saved output file with the Edit window PRINT Command, PC-DMIS stores that file in a directory of your choice.
This property returns a string of the file name used by the part program.
Visual Basic |
---|
Public Property OutputFileName As String |
String value with the output file name.
This example gets the output file name and stores it in a variable named strFileName. It then displays that variable in a message box.
Example (Visual Basic) | Copy Code |
---|---|
activePartProgram = App.ActivepartProgram Dim strFileName As String strFileName = activePartProgram.OutputFileName MsgBox "The output file is " & strFileName |