Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

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

JLink and DLL

Status
Not open for further replies.

gang1

Industrial
Joined
Aug 10, 2003
Messages
12
Location
RU
hello, colleges

Has anyone had a success in launching a ProToolkit DLL-file's function from JLink application (preferably asynchronous)?

Thanks in advance.
Regards,
 
i have done it. what are you looking for, even i need some help in reading Fam tables.
 
Problems with protk.dat file?

-Hora
 
public void setAssemblyFamilyTable(Solid solid, Session session) throws Exception {
String solidName = solid.GetFullName();
Hashtable _instTable = new Hashtable();
FamilyTableRows famRows = solid.ListRows();
int rowSize = famRows.getarraysize();
FamilyTableColumns famCols = solid.ListColumns();
int colSize = famCols.getarraysize();
for (int inf = 0; inf < colSize; inf ++) {
FamColModelItem col = (FamColModelItem)famCols.get(inf);
col.GetSymbol();
}
=======================================================
i get the column object, but i dont know how to get the component info that is ref. in column for a assembly famtable.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top