C
Christopher Glaeser
I thought my database had been working but I just now discovered a problem
with a combo box. I have two tables as follows:
tblTasks
TaskID :autonum
Status :long integer
tblStatus
StatusID :autonum
Status :string
tblStatus contains the following three entries:
1, "Open"
4, "Closed"
7, "Cancelled"
Note that tblStatus.StatusID is the primary key and unique, but not
sequential (due to a few deletions). The form frmTasks has a combo box to
select the Task Status, and I thought everything was working fine, but when
I looked at the data in tblTasks, the tblTasks.Status values are 1,2, or 3
and not 1,4, or 7 as I had expected. Where should I look to find the source
of this problem?
Best,
Christopher
with a combo box. I have two tables as follows:
tblTasks
TaskID :autonum
Status :long integer
tblStatus
StatusID :autonum
Status :string
tblStatus contains the following three entries:
1, "Open"
4, "Closed"
7, "Cancelled"
Note that tblStatus.StatusID is the primary key and unique, but not
sequential (due to a few deletions). The form frmTasks has a combo box to
select the Task Status, and I thought everything was working fine, but when
I looked at the data in tblTasks, the tblTasks.Status values are 1,2, or 3
and not 1,4, or 7 as I had expected. Where should I look to find the source
of this problem?
Best,
Christopher