i am able to edit field contents just not the fields themselves...
i'm in design stages of these tables, plus i guess i'm what you'd call
a newbie with pervasive...i wanted to experiment with all methods
available to the developer & noticed the differences..
i'm not quite sure what you mean in the last part of your reply,
are you saying not to bother with the wizard? i sort of prefer doing
things manually anyway unless a wizard is a real timesaver..
thanks..
here's my create table statement:
create table MyTestAppts
(ApptID IDENTITY,
CustID int,
CustomerNumber char(20),
NotesID int,
CustOnFile char (1),
ApptDate char (10),
ApptMonth int,
ApptDay int,
ApptYear int,
ApptTime char (8),
BegTimeSlot int,
NumberOfSlots int,
Crew int,
Zone char (20),
NumberOfUnits int,
ApptInsertDate date,
ApptInsertTime time,
Filler1 char (10),
Filler2 char (10),
PRIMARY KEY (ApptID))