Simple form of combo boxes and textboxes driving me nuts Please he

M

mobcdi

I hope someone can help me before I have to be fitted for a straight jacket..

Background
I have 2 combo boxes (cboMember, cboPrograme) that are populated from 2
queries (GetMembers,GetProgrammes) and a text box

GetMembers returns a list of records (MemberID,Surname)
GetProgramme returns a list of records (ProgrammeID,ProgrammeName,BonusValue)

I would like the user to select a value from cboMember, a value from the
cboProgramme list and enter a sales value into the text box.

Problem
My problem is that when I run the form the user cannot choose any of the
options from the combo boxes that the queries return or enter a sales value
in the text box.
 
O

Ofer

Check the following proprties:
1. The fields Lock property should be set to False
2. The Enabled property of the fields should be set to True
3. The AllowEdits Property of the form should be yes
 
M

mobcdi

Thanks Ofer

I thought I was being smart and choosing Allow Additions only because I
wanted to add a record to a table.
 
Top