@FrankSwinks
Thanks for your help! The parasolid export does work both with single components as well as assemblies. That is exactly what I needed. However, we have all our cad files in Teamcenter, therefore, it cannot export the parasolid to the same directory. I need to be able to put it in a hard location (i.e. C:/Parasolids). As far as the naming goes, I was thinking of doing something like the following:
Dim strPartNumber as string
Dim strCurrentDate as string
strPartNumber = workPart.GetStringAttribute("DB_PART_NO")
strCurrentDate = format(Today, "MMddyy")
[Export Filename] = "C:\Parasolids" & strPartNumber & "_" & strCurrentDate & ".x_t"
Doing this would take the attribute already assigned as our part number and just add the current date behind it. Thanks again for your help.