miltiadis21
Junior Programmer
- Local time
- Today, 12:09
- Joined
- Jul 11, 2007
- Messages
- 44
have three questions with choices Yes and no (or two options)
See my diagram-picture of how is planned
1. The first Question has two choices
1.1 Yes and no
1.2 If Yes is selected a Second question is spawned
1.3 if No is selected the same question is opened (Second question)
2. The Second Question is two same Questions (see diagram)
2.1 On the Second question in the first part if the answer is Yes a bound combobox is spawn and the user selects the appropriate method ( i need to keep there the value of yes in order to be used for calculations)
2.2 On the second Question in the first Part if the answer is No: we keep the value of no in order to be used for calculations
3.1 Repeats 2.1
(On the Second Question in the Second Part if the answer is yes a bound combobox is spawn and the user selects the method) It is the same process and bound combobox with the 2.1 method
3.2 On the Second Question in the Second Part if the answer is no Form closes without saving the record
When I am saying that I want to kept the value I mean I want the 1 ,2 of option group to be used in a query for example
Select Field
From Answers
where question = 1;
I am thinking not to use boolean fields but numeric fields to store them
How I am going to do this any hint suggestions?
See my diagram-picture of how is planned
1. The first Question has two choices
1.1 Yes and no
1.2 If Yes is selected a Second question is spawned
1.3 if No is selected the same question is opened (Second question)
2. The Second Question is two same Questions (see diagram)
2.1 On the Second question in the first part if the answer is Yes a bound combobox is spawn and the user selects the appropriate method ( i need to keep there the value of yes in order to be used for calculations)
2.2 On the second Question in the first Part if the answer is No: we keep the value of no in order to be used for calculations
3.1 Repeats 2.1
(On the Second Question in the Second Part if the answer is yes a bound combobox is spawn and the user selects the method) It is the same process and bound combobox with the 2.1 method
3.2 On the Second Question in the Second Part if the answer is no Form closes without saving the record
When I am saying that I want to kept the value I mean I want the 1 ,2 of option group to be used in a query for example
Select Field
From Answers
where question = 1;
I am thinking not to use boolean fields but numeric fields to store them
How I am going to do this any hint suggestions?