Command no longer in use
Replaced with command SetCustomText
Allows defining an alternative text on the left side (white area) of the activation screen. With this command you can define the text for MULTIPLE languages. You should define an alternative text for each language you specified either with SetLanguage and/or SetRegisterLanguages.

Modify text for activation screen
You have to use the command for each language.
Example
If you support the languages French, German and English you have to call SetRegisterHelpL 3 times for language 30000, 10000 and 20000.
If you do not specify an alternative text then
•the default text defined with SeRegisterHelp is used. If there is no default text then
•the inbuilt default text per language is used
Name
|
SetRegisterHelpL 
|
Purpose
|
Sets the help texts for the EasyGo page for the specified language (PrepareAndCheck)
|
Params
|
Parameter
|
Type
|
Example
|
Note
|
Language
|
String
|
‘2’
|
You can use the language codes (e.g. en, de,..) or you can use the language numbers (e.g. 1, 2) as string - for a complete list of language codes see SetLanguage
|
HelptextBuy
|
String
|
‘To buy you have to do the following…’
|
Help text that is displayed on the left side of the EasyGo form on the Activation page that handles the Serial Number input for all registration methods (Online, e-mail, Fax, Phone).
This is the part above the Buy-Button.
If empty then the default text is used.
|
HelpWelcome
|
String
|
|
Help text that is displayed on the left side of the EasyGo form on the first page that welcomes the user.
If empty then the default text is used.
|
HelpExpired
|
String
|
|
Text that is displayed on the “Expired” section of the EasyGo Form
|
HelptextActivation
|
String
|
|
Help text that is displayed on the left side of the EasyGo form on the Activation page that handles the Serial Number input for all registration methodsOnline, e-mail, Fax, Phone).
This is the part below the Buy-Button.
If empty then the default text is used.
|
HelpUnlock
|
String
|
|
Help text that is displayed on the left side of the EasyGo form on the Unlock page that handles the Unlock Key input for the manual registration methods (e-mail, Fax, phone).
If empty then the default text is used.
|
HelpDone
|
String
|
|
Help text that is displayed on the left side of the EasyGo form on the page that tells the user that the Activation has succeeded.
If empty then the default text is used.
|
HelpErrorMsg
|
String
|
|
Help text that is displayed on the left side of the EasyGo form on the Error-Message page.
If empty then the default text is used.
|
|
Returncode
|
Returncode
Type Integer
|
Note
|
0
|
ok
|
8193
|
The specified language is illegal
|
8194
|
Function is not implemented
|
|
Usage
|
SetRegisterHelpL should be used to set individual help texts on the left side of the EasyGo Form (PrepareAndCheck) for different languages.
|
Sample
|
iRes := lic.SetRegisterHelpL(‘2’, ‚Sample text fort he buy section’, ‚Sample text for the Welcome section’, ‘Sample text for the Expired section’, ‘Sample text for the Activation section’, ‘Sample text for the Enter Key section’, ‘Sample text for the Done section’, ‘Sample text for displaying an Error’);
if iRes = 0 then
// ok, no error
|
See also
|
SetRegisterHelp, SetRegisterLanguages, SetRegisterSettings, PrepareAndCheck (EasyGo), Language codes
|