John Vinson said:
The Column property of a combo box is a read-only property. You cannot
set it to 1, or to anything else.
What are you trying to accomplish?
John W. Vinson[MVP]
Bummer!
I'm apparently way off in the wrong direction.
I have a table tblChkDigits.
tblChkDigits originally had a table with a bunch of field...W1, W2, W3,
etc. I know this is not according to 1NF protocol, and since I want to
refer to these "like" fields as an array, I decided to go in a different
direction.
The application was working fine until I decided to go in that different
direction, but lots of code to refer to each "W" separately by name.
So I then put all these variables into a table zCDW, with the following
fields:
WID (autonumber), RoutineID(Number), DigitNum(Number), W(Number),
S(Text)
The purpose of this table is to provide "default" values that will fill
the values of "something" so that I can later refer to them as array
values.
Notice that the RoutineID in this table, which I chose to be values
dependent on the which RoutineID was specified in tblChkDigits also.
When the user (me) chooses a Routine ID from tblChkDigits, I want all
the values in table zCDW to be accessible as array values, and also to
allow me to change those values if I choose to do so.
Ideally, I do not want tblChkDigits to produce additional records for
the total records in zCDW table. In other words, Id prefer to not have
on record in tblChkDigits be multiplied times the number of records in
zCDW having a particular RoutineID. (I understand that this may not be
possible).
I'm now at a complete loss as to how to proceed. I don't know if my
table (zCDW) is properly designed, I don't know if I should use this
table, I don't know how to update tblChkDigits.
I hope I've explained what I'm after. As I said...Bummer!
bw