Hi all,
Below is my SQL statement that creates a table. It works fine, but my column called Room1 is formated as text box (wich is the standerd in Microsoft Access) but I want it as check box. How can I change this SQL statement so that when I open the table in Access I see the values from the Room1 column as check boxes and no longer as text boxes? I can do it manually, but I wondered if I could change the SQL statement below to do it automaticly.
CREATE TABLE tbl_test(Autonummer AUTOINCREMENT CONSTRAINT Autonummer PRIMARY KEY, Datum DATE, Room1 LOGICAL)
Thanks in advance,
Buzzer
Below is my SQL statement that creates a table. It works fine, but my column called Room1 is formated as text box (wich is the standerd in Microsoft Access) but I want it as check box. How can I change this SQL statement so that when I open the table in Access I see the values from the Room1 column as check boxes and no longer as text boxes? I can do it manually, but I wondered if I could change the SQL statement below to do it automaticly.
CREATE TABLE tbl_test(Autonummer AUTOINCREMENT CONSTRAINT Autonummer PRIMARY KEY, Datum DATE, Room1 LOGICAL)
Thanks in advance,
Buzzer