Hi, Steven
Thanks for your quick response I have tried your code but no luck .
trigger OnOpenPage()
var
Begin
ShowMessage();
end;
procedure ShowMessage()
var
Text: Text;
Number: Decimal;
Text000: Label 'You can use message windows to display text and numbers: \';
Text001: Label 'The number: ';
Text002: Label 'The text: ';
begin
Text := 'ABCDE';
Number := 12345.678;
// The backslash indicates a new line.
// You can concatenate strings using the + operator.
// You can insert variable values using the % symbol.
MESSAGE(Text000 + Text001 + '%1\' + Text002 + '%2\', Number, Text);
end;
