NEWBIE: please interpret help file: making table

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need help getting started with the Access help file article:"How to display
images from a folder in a form, a report, or a data access page" (In the end
I need to store images in a database):

The help file instructs: "2. Create the following table either in
Northwind.mdb " then it lists some code:
"Table: tblImage
----------------------------
Field Name: ImageID
Data Type: AutoNumber
Indexed: Yes (No Duplicates)

Field Name: txtImageName
Data Type: Text

Table Properties: tblImage
--------------------------
PrimaryKey: ImageID"
Where do I paste that code? (Tried in a new module's code window..nope.)

Thanks for the help,
Paul
 
Hi Paul,

No expert but what you have indicated is not code, its telling you what your
table should have. Such as:
- create a table with a name of: tbImage
- create a filed named: ImageID as an autonumber field and set it as the
primary key
- create another field named: txtImageName as a text field

That's all.

Alp
 
Back
Top