A family of Microsoft relational database management systems designed for ease of use.
- What is your citizenship? Canadian Other (this one I'd need help for too as I have to have the end user use free format for "other" and need it to record the answer in the database in the backend)
The image below is of the model for my Questionnaire.accd demo, to which I gave you a link earlier. As it stands the file allows for single or multiple choice answers to questions via combo boxes, but does not allow free text entry. To add this would mean adding a text column to the Responses table. In the fsubResponses subform code in the Answer combo box's AfterUpdate event procedure could, if the answer is 'Other', pop up a little unbound dialogue form in which the free text value could be inserted. On confirmation in the dialogue form the value would be assigned to the text column in the subform's current row, and the dialogue form closed. The text would not show in the subform, but code in its BeforeUpdate event procedure could guarantee that the text column contains a value if 'other' has been answered. It would be a simple task to show the text in the rptQuestionaires report, hiding the control if the answer is not 'other' by code in the details section's Format event procedure.