Techomick
Mechanical
- Jun 21, 2011
- 46
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
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