A family of Microsoft relational database management systems designed for ease of use.
Would be useful to provide an example of what you are trying to do, as there could be many ways to address this.
If for example, you have a fixed number of questions to be answered and you want to stop the user from answering later questions until they've answered an earlier question, then you can initialise all but the first answer input fields as hidden (visible = false) or disabled (enabled = false). When the user has provided a value for the first answer then you unhide or enable the next question in sequence.
You might also want to lock a previously entered answer (locked = true) and provide a mechanism for the user to go back to earlier answers to revise them (if required).
Brett