G
Guest
Dear All
I am trying to create a Make Table query that will create a True/False
datatype field in the underlying table that is created. The user creates the
table and views the contents in a form, so I don't want them to alter the
table design to use it.
The code I use at the moment is:
SELECT DISTINCT
Query1.Gross, Query1.MaxBookees, Query1.SalesInvoices.ID, "" AS Contact INTO
tblDailyNonAttendees IN 'K:\Attendees.mdb'
FROM Query1 LEFT JOIN qryAccessNLSubscriptionsL2b ON Query1.MemberID =
Query2.MemberID;
If I declare the field as: "" AS Contact, how can I ensure that when the
user sees the Contact field on the form what they see is the square box field
data type that they can tick. Is it only acheivable through DAO?
Alastair MacFarlane
I am trying to create a Make Table query that will create a True/False
datatype field in the underlying table that is created. The user creates the
table and views the contents in a form, so I don't want them to alter the
table design to use it.
The code I use at the moment is:
SELECT DISTINCT
Query1.Gross, Query1.MaxBookees, Query1.SalesInvoices.ID, "" AS Contact INTO
tblDailyNonAttendees IN 'K:\Attendees.mdb'
FROM Query1 LEFT JOIN qryAccessNLSubscriptionsL2b ON Query1.MemberID =
Query2.MemberID;
If I declare the field as: "" AS Contact, how can I ensure that when the
user sees the Contact field on the form what they see is the square box field
data type that they can tick. Is it only acheivable through DAO?
Alastair MacFarlane