Here is my complete code:
'get the path and name of the drawing file
path_and_name = ThisDoc.PathAndFileName(False) ' without extension
'path_and_name2 ="D:\Exported Parts List"
'define oDoc
oDoc = ThisDoc.Document
'specify the drawing sheet
oSheet = oDoc.Sheets("Sheet:1") ' sheet by name
'oSheet = oDoc.Sheets(1) ' first sheet
' say there is a Partslist on the sheet.
oPartslist = oSheet.PartsLists(1)
' create a new NameValueMap object
oOptions = ThisApplication.TransientObjects.CreateNameValueMap
'specify an existing template file
'to use For formatting colors, fonts, etc
'oOptions.Value("Template") = "C:\Temp\PartListExport.xls"
'specify the columns to export
oOptions.Value("ExportedColumns") = "QTY;PART NUMBER;DESCRIPTION"
'specify the start cell
oOptions.Value("StartingCell") = "A1"
'specify the XLS tab name
'here the file name is used
oOptions.Value("TableName") = ThisDoc.FileName(False) 'without extension
'choose to include the parts list title row
'in this example "Ye Old List of Parts" is written to the StartingCell
oOptions.Value("IncludeTitle") = False
'choose to autofit the column width in the xls file
oOptions.Value("AutoFitColumnWidth") = True
'check for existing XLS file and delete it if found
If Dir(path_and_name & ".csv") <> "" Then
Kill (path_and_name & ".csv")
Else
End If
oPartslist.Export(path_and_name & ".csv", _
PartsListFileFormatEnum.kMicrosoftExcel, oOptions)
MessageBox.Show("Inventor Parts List successfully Exported To Correct Location Using CSV Format!", "Export Results")
How do I get the file to export to D;\Exported Part Lists ?