|
Begins an extension to already existing string set and lets the user to add new values into it. |
|
StringSetId |
The Id of certain value set that we want to update with some additional items. |
|
event startup
begin
SetLangMode(LangEnglish,"ENG",0);
StrSetBegin(86);
StrSetText(Orders,"Order Entry");
StrSetText(Invoices,"Invoice Entry");
StrSetText(Quotes,"Quotation Entry");
StrSetText(Mail,"Mail and Conferences");
EndStrSet;
StrSetAdd(86);
StrSetText(Productions,"Production Entry");
EndStrSet;
return;
end;
««