Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to make a pop-up at the start of my application

Hello,

I try to make a pop-up/warning which is going top help me to know the differents points of my application. To have a first view of my application.

Regards.

1 Solution

Accepted Solutions
Not applicable
Author

Thanks for your help. Now, if I want this pop-up only appear when I have a number greater than 0.  Which function I have to use to make it ?

View solution in original post

3 Replies
Gysbert_Wassenaar

You can use text boxes that hide when you click on them. See attached example.


talk is cheap, supply exceeds demand
Not applicable
Author

Thanks for your help. Now, if I want this pop-up only appear when I have a number greater than 0.  Which function I have to use to make it ?

Not applicable
Author

Hi Kenny,

Try like this....

1. Go to Settings -> Document Settings

2. Select Trigger tab

3. In the Field Event Triggers window, select the field that the user will select to activate the "pop-up"

4. Click the Add Action button under the OnSelect label

5. Click Add

6. Select Action Type External

7. Select the action Set Variable

8. Click OK

9. In the Variable field enter in the name of the variable you created

10. In the Value field enter a formula like the following: =if(GetSelectedCount(Customer)=1,1,0)

11. Click OK

12. Click OK

If the variable is set to 1 the detail is shown and if the variable is set to 0 the detail is hidden.