M
mark R.
The user has a value to input and store which could be
positive or negative, depending on the user. At the time
they purchase the software, users choose whether the value
will be negative or positive. They would rarely, if ever,
switch the sign. On the form it looks like this:
- 4.00
But, should the need arise, I would like to give them the
option to change the sign, or at the time of installation,
they need to select - or +
So I thought I would have a table called SIGN, with one
field (THE_SIGN) (with a validation = "-" or "+" and only
one record (so it seems I needed to add a dummy field and
have no primary key, or else ACCESS offers a prompt for
more than one record).
I thought I could have a MAINFORM_SIGN field that in
LOOKUP had LIST, TABLE/QUERY, and Rowsource as (table)SIGN
or perhaps a query(whatsign). I can't get it to work.
My query
From Sign
Select The_sign
Of course, I could just have the default value for
MAINFORM_SIGN = "-" and let the user have a text box to
change the sign.........maybe that's better.
But I thought as a learning process, I'd pose this question
anyway
positive or negative, depending on the user. At the time
they purchase the software, users choose whether the value
will be negative or positive. They would rarely, if ever,
switch the sign. On the form it looks like this:
- 4.00
But, should the need arise, I would like to give them the
option to change the sign, or at the time of installation,
they need to select - or +
So I thought I would have a table called SIGN, with one
field (THE_SIGN) (with a validation = "-" or "+" and only
one record (so it seems I needed to add a dummy field and
have no primary key, or else ACCESS offers a prompt for
more than one record).
I thought I could have a MAINFORM_SIGN field that in
LOOKUP had LIST, TABLE/QUERY, and Rowsource as (table)SIGN
or perhaps a query(whatsign). I can't get it to work.
My query
From Sign
Select The_sign
Of course, I could just have the default value for
MAINFORM_SIGN = "-" and let the user have a text box to
change the sign.........maybe that's better.
But I thought as a learning process, I'd pose this question
anyway