|
- Using the syntax with wizard
- Characteristics of dialog box
- Miscellaneous
- Emulation
Dialog (Function) In french: Dialogue
// Caution: This example must not be copied directly. // The following code is generated by the wizard. SWITCH Dialog("Do you want to save the modifications in the %1? file", MySource) // Yes CASE 1: Procedure_Save() END
Versions 20 and later
// Caution: This example must not be copied directly. // The following code is generated by the wizard. IF Dialog("Do you want to save the modifications in the %1? file", MySource), ... ["Yes - Save","No"], 1, 2, dlgIconQuestion) = 1 THEN Procedure_Save() END
New in version 20
// Caution: This example must not be copied directly. // The following code is generated by the wizard. IF Dialog("Do you want to save the modifications in the %1? file", MySource), ... ["Yes - Save","No"], 1, 2, dlgIconQuestion) = 1 THEN Procedure_Save() END
// Caution: This example must not be copied directly. // The following code is generated by the wizard. IF Dialog("Do you want to save the modifications in the %1? file", MySource), ... ["Yes - Save","No"], 1, 2, dlgIconQuestion) = 1 THEN Procedure_Save() END
Syntax
Syntax that is using the wizard Hide the details
<Result> = Dialog(<Message identifier> [, <Parameter 1> [... [, <Parameter N>]]])
<Result>: Integer Identifies the answer selected by the user. This answer depends on the selected message. The different values corresponding to the different answers are automatically included in comments in the code editor when selecting the message. <Message identifier>: Integer Identifies the question asked to the user as well as the different possible answers. <Parameter 1>: Optional character string If the selected message contains configurable elements (identified by %1, %2, ...), this parameter is used to give the requested value. Therefore, <Parameter 1> will replace %1. <Parameter N>: Optional character string If the selected message contains configurable elements (identified by %1, %2, etc.), this parameter is used to give the Nth requested value. Therefore, <Parameter N> will replace %N. Versions 20 and later
Direct syntax Hide the details
<Result> = Dialog(<Question> , <Captions of buttons> [, <Default button> [, <Cancelation button> [, <Icon>]]])
<Result>: Integer Identifies the answer selected by the user. This answer depends on the selected message. <Question>: Character string (with quotes) Question asked to the user. <Captions of buttons>: Array Name of Array variable containing the captions of buttons. <Default button>: Integer Subscript of button selected by default. This parameter is set to 1 by default. <Cancelation button>: Integer Subscript of cancelation button. By default, this parameter corresponds to the subscript of last button. <Icon>: Character string (with quotes) or Integer constant Icon displayed. This parameter can correspond to: - the path of file corresponding to the displayed icon.
- one of the following constants:
| | dlgIconError | Icon representing an error. | dlgIconInfo (Default value) | Icon representing an information. | dlgIconQuestion | Icon representing a question. |
New in version 20
Direct syntax Hide the details
<Result> = Dialog(<Question> , <Captions of buttons> [, <Default button> [, <Cancelation button> [, <Icon>]]])
<Result>: Integer Identifies the answer selected by the user. This answer depends on the selected message. <Question>: Character string (with quotes) Question asked to the user. <Captions of buttons>: Array Name of Array variable containing the captions of buttons. <Default button>: Integer Subscript of button selected by default. This parameter is set to 1 by default. <Cancelation button>: Integer Subscript of cancelation button. By default, this parameter corresponds to the subscript of last button. <Icon>: Character string (with quotes) or Integer constant Icon displayed. This parameter can correspond to: - the path of file corresponding to the displayed icon.
- one of the following constants:
| | dlgIconError | Icon representing an error. | dlgIconInfo (Default value) | Icon representing an information. | dlgIconQuestion | Icon representing a question. |
Direct syntax Hide the details
<Result> = Dialog(<Question> , <Captions of buttons> [, <Default button> [, <Cancelation button> [, <Icon>]]])
<Result>: Integer Identifies the answer selected by the user. This answer depends on the selected message. <Question>: Character string (with quotes) Question asked to the user. <Captions of buttons>: Array Name of Array variable containing the captions of buttons. <Default button>: Integer Subscript of button selected by default. This parameter is set to 1 by default. <Cancelation button>: Integer Subscript of cancelation button. By default, this parameter corresponds to the subscript of last button. <Icon>: Character string (with quotes) or Integer constant Icon displayed. This parameter can correspond to: - the path of file corresponding to the displayed icon.
- one of the following constants:
| | dlgIconError | Icon representing an error. | dlgIconInfo (Default value) | Icon representing an information. | dlgIconQuestion | Icon representing a question. |
Remarks Using the syntax with wizard To use this syntax, you must use the wizard proposed when writing the function name in the code editor ("<Wizard>" option proposed by the assisted input). This wizard allows you to specify the different parameters of the dialog box that will be used. This function cannot be used if the dialog window is not created by the wizard. To start the wizard: - In the code editor, type "Dialog(".
- Click "Wizard". The wizard starts. Go to the next step.
- Choose an existing question or create a new question (<Click here to create a new question>). Go to the next step.
- If you have chosen to create a question, a screen is displayed. This screen allows you to enter the different parameters of the dialog box used to ask the question. You can specify:
- The text of the question,
- The image of dialog box,
- The different buttons allowing the user to answer.
- Validate the screen for defining the question. The corresponding code is automatically inserted into the code editor. Press the ENTER key again. The entire code is added in the code editor. The characteristics of dialog box can be modified via the icon found beside the question text.
Characteristics of dialog box - The title of the dialog box corresponds to the title of the current window (or page).
To comply with the system specifications, the title of dialog box is empty by default. To define this title, use NextTitle.  To comply with the system specifications, the title of dialog box is empty by default. To define this title, use NextTitle. - To modify or define the title of dialog box, use NextTitle.
 The skin template of current project is automatically applied to the dialog box.
In order for the skin template of project to be applied to the dialog box, you must:- apply the skin template to the dialog boxes ("Apply the theme of skin template to the system windows" in the "Style" tab of the description window of project).apply the skin template to the dialog boxes ("Customize the system windows (Info, YesNo, Confirm, Dialog)" in the "Style" tab of the project description window).
- make sure that the "WinDevMessageBox" window is found in the project.
The dialog box displayed is using the system style (the skin template of project is not applied). The characteristics of dialog box are as follows: - The displayed dialog box is using the system style.
- The dialog box must not contain more than 3 buttons. The additional buttons will not be displayed.
- The position of buttons depends on the Android version. From Android version 4.1, the validation button is positioned on the right. To modify the order of buttons, display the wizard for editing a question and uncheck "Use the order defined by the system for the validation/cancelation buttons".
The displayed dialog box is a native iPhone/iPad dialog box.
  DelayBeforeClosing is used to limit the time required to display the message. The dialog box is automatically closed. For the question or confirmation dialog boxes, the expected answer corresponds to the default button.   To allow the user to type a value in a dialog box, use Input. This function must not be used: - in the event "Resizing" of the window. Otherwise, the application will be locked.
- in the event "Changing of orientation" of the window.
- in the event "Placing in foreground" associated with the project.
Remark: However, the function can be used in the event "Placing in foreground" of a window. - in a thread.
Versions 24 and later Special cases: - If your project uses pre-launched sessions, this function must not be used in the event "Initializing" of the project. It must be used in the event "Initializing the project after connection to the site".
- This function must not be used in a scheduled WEBDEV task.
New in version 24 Special cases: - If your project uses pre-launched sessions, this function must not be used in the event "Initializing" of the project. It must be used in the event "Initializing the project after connection to the site".
- This function must not be used in a scheduled WEBDEV task.
Special cases: - If your project uses pre-launched sessions, this function must not be used in the event "Initializing" of the project. It must be used in the event "Initializing the project after connection to the site".
- This function must not be used in a scheduled WEBDEV task.
This page is also available for…
|
|
|
| |
| | // CLOSING WIN_MENU s_REPOSTA is string="" s_REPOSTA=Dialog("Deseja fazer cópia de segurança?",["SIM","NAO","VOLTAR"]) SWITCH s_REPOSTA CASE 1 Open(WIN_Backup_backup_Dados) HCloseConnection(Matos_hyperfil_server) EndProgram() CASE 2 HCloseConnection(Matos_hyperfil_server) EndProgram() CASE 3 ReturnToCapture(WIN_MENU) OTHER CASE END // BLOG COM VIDEO E EXEMPLO http://windevdesenvolvimento.blogspot.com.br/2017/10/windev-1274-dialog.html
https://www.youtube.com/watch?v=29aTZpUp1iU
|
|
|
|
| |
| |
| |
| |
| |
| |
| | |
| |