Well, i think that it is a good start, but i have two more questions. First one is How should i setup a relation ships between tables and second one is how can i setup a cascading comboboxies for example in new joiner form i choose that user has desktop after that second box will appear and i will choose one of four type what we have here.
Thanks
Main Topics
Browse All Topics





by: boag2000Posted on 2009-09-03 at 13:30:23ID: 25254631
This should get you started...
tblDevices
DeviceID (Primary Key) (Serial Number?)
DeviceName
DeviceCategory (Foreign Key)
...etc
tblDeviceCategory
DeviceCategoryID (Primary Key)
DeviceCategoryName
...etc
tblUsers
UserID (Primary Key)
UserFName
UserLName
...etc
tblUserDevice
UserDeviceID (Primary Key)
UserID
DeviceID
DeviceAssignDate
tblService
ServiceID (Primary Key)
ServiceName
...etc
tblDeviceService
DeviceServiceID (Primary Key)
DeviceID
ServiceID
DeviceServiceReason
DeviceServiceDate
...etc
JeffCoachman