Table of Content
HAL Forum
procedure StrSetAdd (
integer StringSetId)
Description:
Begins an extension to already existing string set and lets the user to add new values into it.
Parameters:
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;


Related topics:
««