report type view in a form?

shiner

Registered User.
Local time
Today, 21:00
Joined
Feb 6, 2003
Messages
30
Hello,
I am currently making a database to track what equipment athletes have checked out from their school. After getting some suggestions from fellow forum members, I have moved away from my static, flat db and am going for a relational database that will be dynamic. I wasted a lot of time hard coding the db to handle 30 equipment items. That really limited ones ability to go beyond 30 items! So, the way it is now, it can handle an unlimited amount of items. However, I have not been successful in getting the data entry screen that I once had with the static db.

Please look at the attached screenshot. This is what I would like to achieve, I just don't know how to get access to do it.

From a design standpoint, I am not sure if I can do this in parts. You will notice that I would like to essentially see every item that someone could have, and then use check boxes to indicate that the individual has the item checked out.

Here are the database basics:

Table: Personnel
Description: This holds info like name, address, phone number, and so on with a primary key of personnel_ID

Table: Equipment_Items
Description: This holds the key info in the individual items one can check out like the item description, vendor part number, unit cost, and so on with a primary key of equipment_ID

Table: Issued_Equipment
Description: This is a table that essentially lists the equipment_ID number, the personnel_ID number for who has it checked out, the size that they checked out, and the style that they checked out.

Here are my unresolved issues:
1) When the db was static, I could have a value like equipment_item_1 and it be true or false. I would run queries against that item to see who had something out and when I built the form, it was easy - I made 30 lines for items 1-30 and each had a checkbox next to it.

2) I eventually want to have an inventory screen that shows what is in stock. Items that are checked out are subtracted from the total that the coach has entered for that equipment_ID. From this equipment screen, one can either return something to the inventory, or they can delete it from the system. We have some personal issue items that stay with the athlete like undershirts or socks, so these items would need to be deleted alltogether from the item count. The interesting twist for me is that there are different sizes and styles for each item. The easy way around the style issue is to simply create a new equipment item rather than say you have a running suit out (item 6) that is style 4. It is easier to make item 6 Running Suit - Red and item 7 that Running suit - green. BUT, the hard part is the sizes, I do not want to make different item numbers for each size, like item 6 is Running Suit - Red - Small, and so forth. I think this is easy to query, but I have not gotten into that component of the db yet.

Please take a look at the screen shot and see if you have any suggestions as to how I can achieve this result.

Thank you!
 

Attachments

  • form1.gif
    form1.gif
    64.2 KB · Views: 144
The more I think on this issue, the more I see that my envisioned layout for this is all wrong. If any of you who have experience with items like this have any suggestions for possible layouts, please let me know. I am not set on this format, it is just what came to me based on my old layout.
 
You may have eliminated the limitations in your database, but you've recreated them in your form! How is this going to work when the screen is full?

I would make your equipment list a continuous subform. This way you can scroll up and down and accomodate an unlimited number of pieces of equiment. This would be close to your design, but much more flexible.
 
I would like to make the subform continuous - complete with scroll bars. I am just unsure how to get the desired display. If I printed a report of all of the equipment items, it would list them down the page - that is what I am looking for here, but in the form--just unsure how to do it.
 
Which bit is hard? Create a continuous form, and then drag it onto your main form. It should link the parent child details for you, and inherit scroll bars etc.
 
I will read up on continuous forms. Thanks!
 

Users who are viewing this thread

Back
Top Bottom