Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Export DXF to Teamcenter

Status
Not open for further replies.

Techomick

Mechanical
Jun 21, 2011
46
0
0
US
I have read all the threads on exporting a DXF with a journal and have been successful in implementing it. However, I would like for the DXF file after it has been created with the journal to be imported to Teamcenter as well. I thought I was going down the right road with this:


This is in main sub:

Dim TCno As String = "DB_PART_NO"
Dim TCrev As String = "DB_PART_REV"
Dim TCname As String = "DB_PART_NO" & "/" & "DB_PART_REV"
Dim TCrel As String = "specification"
Dim TCdir As String = strOutputFolder
ImportFiles(TCno, TCrev, TCname, TCdir, TCrel, TCdir)

Then this outside main sub:

Public Function ImportFiles ( _
itemIds As String, _
itemRevisionIds As String, _
datasetNames As String, _
datasetTypeNames As String, _
datasetRelationTypeNames As String, _
importDirectoryNames As String _
) As Integer()
End Function



I do not get any errors, but it is not uploading the .dxf to Teamcenter. Any help would be appreciated.

Thanks!






Design Engineer, NX 7.5
 
Status
Not open for further replies.
Back
Top