Hi,
In a b4A application, I have a set of validations that I am performing as follows:
i) Validation 1 : If failed
Dialog.Show("Message 1")
ii) Validation 2: If failed
Dialog.Show("Message 2")
iii)Validation 3: If failed
Dialog.Show("Message 3")
However, these messages are displayed in 'reverse' order while the program is executing
i.e. assuming all 3 validations have failed then
the messages appear as follows
Dialog.Show("Message 3")
Dialog.Show("Message 2")
Dialog.Show("Message 1")
My doubt: How to make them display in the order of its coding
viz.
Dialog.Show("Message 1")
Dialog.Show("Message 2")
Dialog.Show("Message 3")
Please help.. Thanks.
In a b4A application, I have a set of validations that I am performing as follows:
i) Validation 1 : If failed
Dialog.Show("Message 1")
ii) Validation 2: If failed
Dialog.Show("Message 2")
iii)Validation 3: If failed
Dialog.Show("Message 3")
However, these messages are displayed in 'reverse' order while the program is executing
i.e. assuming all 3 validations have failed then
the messages appear as follows
Dialog.Show("Message 3")
Dialog.Show("Message 2")
Dialog.Show("Message 1")
My doubt: How to make them display in the order of its coding
viz.
Dialog.Show("Message 1")
Dialog.Show("Message 2")
Dialog.Show("Message 3")
Please help.. Thanks.