Andres Rormoser
|
| Posted: 11/01/2004, 2:00 PM |
|
I need to develop a test, in the test i need to have a table (30 cols x 40
rows) each cell must have a different image and a checkbox below it. And the
user has to click on certain cells.
I was thinking but i don't figure out how to do it. Any help please?
The only way i think was to make a table with 1200 (30x40) boolean fields
and put that in a record form but i think it has to be a better way.
TABLE TEST
id
userid
date
boolean1
boolean2
.
.
.
boolean1200
|
|
|
 |
Benjamin Krajmalnik
|
| Posted: 11/01/2004, 6:06 PM |
|
I would probably take a slightly different route, which would also make it
more universal and reusable.
I would have a test definition table.
The structure would consist of a test id, a row number, and 30 columns
holding pointers to the images..
Each row would contain the test id number, the row number (for sorting it
properly) and whatever information you need .
When a use comes in to get tested, you create dynamically a test "grid" for
him, whose table consists of the following:
test id, user id, row number, 30 columns (each of which will contain the
status of the checkbox).
From there, it is now simple to continue.
"Andres Rormoser" <arormoser@witcom.com.ar> wrote in message
news:cm6bmo$jv2$1@news.codecharge.com...
> I need to develop a test, in the test i need to have a table (30 cols x 40
> rows) each cell must have a different image and a checkbox below it. And
the
> user has to click on certain cells.
>
> I was thinking but i don't figure out how to do it. Any help please?
>
> The only way i think was to make a table with 1200 (30x40) boolean fields
> and put that in a record form but i think it has to be a better way.
>
> TABLE TEST
> id
> userid
> date
> boolean1
> boolean2
> .
> .
> .
> boolean1200
>
>
>
>
>
|
|
|
 |
|