|
"> 请问版主dmis的接口文件能不能在delphi中用
请问版主dmis的接口文件能不能在delphi中用
请问版主dmis的接口文件能不能在delphi中用
因為我們這邊都沒有用delphi,故沒法幫你測試,故建議你自己試試看能不能像vb一樣引用pcdmis tlb文件,測試出后,請將結果發貼告知!謝謝!
我只会用vc:
{
iapplicationptr app = null;
ipartprogramptr partgram = null;
icommandsptr cmds = null;
icommandwrapperptr cmd = null;
hresult hr = app.createinstance(__uuidof(application));
if (failed(hr))
{
afxmessagebox("create the pcdmis_application failed!");
return;
}
partgram = app->activepartprogram;
cmds = partgram->getcommands();
cstring strid;
int nfeature;
int ntype;
cstring strcmd;
icommandwrapperptr prt;
for( long index=0; index< cmds->count; index++ ) |
|