cishpix wroteThanks for your respond
PointsWell wroteIF Question.Reply ='Yes' Then ENTER NEW Bo ELSE [Whatever your next step is]
I have test it and when I press No button, the question box is repeat appear again after I press Cancel button
I have try with the below but I'm still stuck.
IF Question.Reply <>'No' Then ENTER NEW bo ELSE [display message]
Where did you try it, what does the process look like, how are you initiating this whole process
On testing AIM is unable to create a DISPLAY QUESTION after the SAVE of an ENTER NEW (ie a modal window)
What you could do is instead
Process One
CREATE BO
VIEW BO
On Save
DISPLAY QUESTION
IF Question.Reply='Yes' THEN AddMore
The issue you will have is that run process after Save does not allow you to specify the output location for that process and so it will just splat it onto the VP (it is designed for running non UI process like updating a balance when a transaction has been created for example).
To define the output location you'd need to create a new button on your form called SAVE have it Start a Process and check the Save quietly check box.
Attached is an example (it is not really a zip, just rename it back to .bsv)
Bear in mind:
This is not using modal windows - you might be able to get it to work in a modal window.
You may need to clean up unused BOs by following this route.