|
- Characteristics of dialog box
- Special cases
- Emulation
- Application in the background: Android 10 specific case
InfoBuild (Function) In french: InfoConstruit
User_Name is string = "Florence" NextTitle("Welcome") InfoBuild("Hello %1" + CR + "Welcome!", User_Name)
Syntax
InfoBuild(<Format string> [, <Parameter 1> [... [, <Parameter N>]]])
<Format string>: Character string Character string to display containing optional parameters (%1 to %n). To display the % character in the final string, this character must be typed twice (%%). <Parameter 1>: Optional character string (with quotes) First parameter that will be inserted into the formatted character string. <Parameter 1> will replace the %1 character, <Parameter 2> will replace the %2 character, etc. The number of specified parameters must be equal to or greater than the number of parameters used in <Format string>. If <Format string> contains more parameters, the additional parameters will be replaced by empty strings. <Parameter N>: Optional character string (with quotes) Nth parameter that will be inserted into the formatted character string. <Parameter 1> will replace the %1 character, <Parameter 2> will replace the %2 character, etc. The number of specified parameters must be equal to or greater than the number of parameters used in <Format string>. If <Format string> contains more parameters, the additional parameters will be replaced by empty strings. Remarks Versions 25 and later New in version 25
This page is also available for…
|
|
|
| |
| | // correct use... sUser_Name is string = "Vince" NextTitle("Welcome") InfoBuild("Hello %1" + CR + "Welcome!",sUser_Name) |
|
|
|
| |
| |
| |
| |
| |
| |
| | |
| |