Hello,
I'm looking into automating MT Creation process. 3 simply steps:
1. Convert from excel
2. Create MT
3.Import
I saw that there MultiTerm Desktop SDK.chm however this is only about accessing tb content. Has anyone tried to do something else?
Hello,
I'm looking into automating MT Creation process. 3 simply steps:
1. Convert from excel
2. Create MT
3.Import
I saw that there MultiTerm Desktop SDK.chm however this is only about accessing tb content. Has anyone tried to do something else?
Hi,
I work with the Sdl.MultiTerm.TMO.Interop.dll library. It has not been changed (that much?) between 2011 and 2014 as I hadn't to update my code inbetween.
1. The conversion from Excel is not part of the API. You will have to create your own XML from your spreadsheets out of your data and import it in Multiterm.
2. To create the termbase, use the "New" Method of the "Termbases" class.
Otermbases.New(termbaseName, termbaseDescription, termbaseDefinitionFilePath, termbaseLocalPath);
3. to import, you will have to create an import object, load its definition and "process it". Take a look in that thread community.sdl.com/.../8663.aspx where I gave the code for the export process.
Kind regards
Hi,
I work with the Sdl.MultiTerm.TMO.Interop.dll library. It has not been changed (that much?) between 2011 and 2014 as I hadn't to update my code inbetween.
1. The conversion from Excel is not part of the API. You will have to create your own XML from your spreadsheets out of your data and import it in Multiterm.
2. To create the termbase, use the "New" Method of the "Termbases" class.
Otermbases.New(termbaseName, termbaseDescription, termbaseDefinitionFilePath, termbaseLocalPath);
3. to import, you will have to create an import object, load its definition and "process it". Take a look in that thread community.sdl.com/.../8663.aspx where I gave the code for the export process.
Kind regards