Creating Assembly Codes

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi
Im working with Keynotes and Assembly Codes.
Basic stuff, just set the paths to the files i already have.
As i found no simple method to just set these paths i worked through the SDK samples.
ExternalResourceDBServer and ExternalResourceUIServer.
Its slightly more advanced than i was aiming for.
But theres gotta be some cool stuff you can make with it 😉
Anyway the resource server works fine and now i generate the Keynote file on the fly.
But how to generate an AssemblyCode File ?
The keynotes are done like this:
keyNotes.AddEntry(new KeynoteEntry("AJ1", "AJ", "Planlegging av eget kontraktarbeid"));
The KeynoteEntry method has max 3 parameters.
But an AssemblyCode file requires four parameters, being, Key - Parent Key - Text and Category.
Where Category is what makes it different.
Can KeynoteEntry create AssemblyCode files and if so how do we specify the category ?
This is what i would assume logically:
assemblyCodes.AddEntry(new KeynoteEntry("AJ1", "AJ", "Planlegging av eget kontraktarbeid", "-2000011"));
...but as mentioned "KeynoteEntry" only has 3 parameters.
Tnx