473,395 Members | 2,446 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Check off Items in Form

Hello,

I have a form that users type in a part number and a due date. I then run a
report that prints the part number, the components needed and the processes
needed. For example:

------User Form-------

Part 1 6/25/05
Part 2 6/28/05
Part 3 7/1/05
---------Report--------

Part 1 6/25/05

Component 1--------SAW-----WELD------SMOOTH
Component 2--------WELD-----PAINT
-------------------------------------------------------------
Part 2 6/28/05

Component 1--------DRILL-------WELD
Component 2--------SMOOTH-----PAINT
-------------------------------------------------------------
Part 3 7/1/05

Component 1--------DRILL-----PUNCH
Component 2--------CUT-------PAINT
-------------------------------------------------------------
What the users want the ability to check off (and make dissappear) the
processes each day, so they can see what processes are left.

For example, after day 1 with SAW and WELD done:

Part 1 6/25/05

Component 1--------WELD------SMOOTH
Component 2--------PAINT

I'm confused about how to go about this. I don't want the users to have to
manually type in anything. I want the components and processes to show up
when they type in the part number. I want the user to be able to check off
processes as they go, but I want all the processes to show up when they type
a new part in the form. I would appreciate it if someone would point me in
the right direction.

Thank You,

Chad
Nov 13 '05 #1
4 1672
What if you were to insert all of these records into an existing table
with a Y/N field for "completed" or whatever. Or a datestamp for
completed, and then you could just filter for Completed=False or
CompletionDate IS NULL or whatever.

The rest looks fairly straightforward:
for each component, there are a series of processes, which begin X days
from starting date. You can do all that with DateAdd() and calculate
on the fly, and/or insert into a final table.

Nov 13 '05 #2
Hello,

Thanks for responding. Let me see if I am on the right track. I have 2
tables-The first is the table the user types in the part number, contract
(forgot to mention that), and due date. The second has all the parts and
their components and processes:

Part------Component-----Process1------Process2-----Process3
-------------------------------------------------------------------
Part 1----1st component--SAW---------PAINT
Part 1----2nd component---DRILL-----SAND---------PAINT

I ran an append query to pull the proper components and processes from the
above table and add them to a cumulative table. This is the table the user
can edit because it is tied to a specific contract number and the original
remains untouched. I have a form and subform linked by contract number. Am
I close? If so, is there a way to stop duplicate records from being
inserted into this table---the cumulative destination table. If I am way
off, let me know. This is unlike anything I have done with Access. I
appreciate the help.

Thanks,

Chad

<pi********@hotmail.com> wrote in message
news:11**********************@g47g2000cwa.googlegr oups.com...
What if you were to insert all of these records into an existing table
with a Y/N field for "completed" or whatever. Or a datestamp for
completed, and then you could just filter for Completed=False or
CompletionDate IS NULL or whatever.

The rest looks fairly straightforward:
for each component, there are a series of processes, which begin X days
from starting date. You can do all that with DateAdd() and calculate
on the fly, and/or insert into a final table.

Nov 13 '05 #3
Just to clarify my unique values question-The processes will be different
than the parts table if the user changes them, but they will still have the
same contract number. I might get double the component parts needed. I am
using the user input table in the query--if I have 5 records and add a
sixth, I don't want to append the original 5 again. I didn't explain very
well, but I really appreciate the help. Again, I might be way off from what
you suggested.

This will be a list I keep adding to. In addition, I will add a check box
for Total Item Completed, so I can filter out an order (not just processes)
when completely done.

Thank You,

Chad
<pi********@hotmail.com> wrote in message
news:11**********************@g47g2000cwa.googlegr oups.com...
What if you were to insert all of these records into an existing table
with a Y/N field for "completed" or whatever. Or a datestamp for
completed, and then you could just filter for Completed=False or
CompletionDate IS NULL or whatever.

The rest looks fairly straightforward:
for each component, there are a series of processes, which begin X days
from starting date. You can do all that with DateAdd() and calculate
on the fly, and/or insert into a final table.

Nov 13 '05 #4
I got it. Please disregard the other posts. Thanks a lot for the help. I
really appreciate it.

Chad

<pi********@hotmail.com> wrote in message
news:11**********************@g47g2000cwa.googlegr oups.com...
What if you were to insert all of these records into an existing table
with a Y/N field for "completed" or whatever. Or a datestamp for
completed, and then you could just filter for Completed=False or
CompletionDate IS NULL or whatever.

The rest looks fairly straightforward:
for each component, there are a series of processes, which begin X days
from starting date. You can do all that with DateAdd() and calculate
on the fly, and/or insert into a final table.

Nov 13 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Mr. B | last post by:
The following code is how I check for duplicates in a List box. This is simple enough as there is only one column of stuff to check. ' Check for Duplicates ' Search listbox (from last to first)...
5
by: Steve Wylie | last post by:
I am constructing an HTML questionnaire and one of the questions requires people to rate some choices from 1 to 5, where 1 is their favourite and 5 is their least favourite: Car Bus Taxi cab...
0
by: Empire City | last post by:
I have an ASP.NET form with a DataGrid and Button. I want to put a RadioButtonList in a DataGrid cell. I bind it to an ArrayList which has a ListItem in the cell. The display part works fine. I...
2
by: Rekha | last post by:
Hi I have datagrid with 5 items. Out of which 1 items are checkboxes. The bool column(checkbox column ) in added in datagrid. The rest of Data is binded dynamically to the datagrid Based on...
2
by: Mike Kim | last post by:
hi all, i have a checklistbox populated with about 50 items from database. and on the same form, i added to button to do the following. if you click this button, i want to have all items in the...
2
by: akunuri.swapna | last post by:
Hi All - I have a checkedListBox in my form. I am adding items to it at run time. However I also need to check the items depending on a condition. I have tried a lot but cant get the added item to...
10
by: rn5a | last post by:
All the rows in a DataGrid, including the Header, are accompanied with a CheckBox. I want that when the CheckBox in the Header is checked, then all the CheckBoxes should automatically get checked....
3
by: jsurkin | last post by:
I have a form that lists a single work request, with an attached continuous subform that lists specific items that are part of the request. Each item in the subform has a check box to indicate when...
3
by: Search & You Will Find | last post by:
I have a database in Access 2000 that I need some help on. I have three tables: PROJECTS, SYSTEMS, & SYSTEMSREF. They possess the following fields: -----------------------------------...
5
by: Andrew Meador | last post by:
I have a form (Change Card List by Status) with a check box (cboNOT) and a list box (lstStatus). There is an Open Report button that opens a report (Report - Change Card List) which uses a query...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.