A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Create dbase and Form to add Client & report access



 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old February 24th, 2006, 01:22 AM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Create dbase and Form to add Client & report access

If at all practical, stay away from hard coding report names and
titles into labels on your form or into the field names of the
underlying table. Businesses and their applications evolve.
Individual reports may eventually fall into disuse. New reports will
come into being. You would be continually going back to re-design and
coding of your table form.

I recommend that you create a new table: tblCustomerReport which will
be in a one to many relationship with tblCustomer. It will have a
record for each report for this/each customer.

For Customer Report management, create a form based on tblCustomer and
a subform based on tblCustomerReport.

At this point, you have something that will work and that doesn't
require constant re-design/re-code. However, it leaves lots of typing
to do in order to get the correct reports associated with individual
Customers. Also, those selfsame changes I referenced above would
require individually removing defunct reports from customers' lists.
A new report coming into the system would require manual entry into
every appropriate customer list.

If this were mine to do I would replace the subform above with a
custom multiselect list box. That listbox would load all of the
reports in the database. tblCustomerReport would then be scanned and
each report found would be marked in the listbox. The user could then
add or remove reports from the list by selecting them on or off (I
always provide "Select All" and "Unselect All" so that the user can
decide which way to begin). At the Before_Update event for this form,
all of this customer's records in tblCustomerReport are deleted and
the currently selected list of reports is added. Now you have a
system that will allow you to maintain report lists without manual
data entry.

I don't use the MSLB provided by Microsoft because it's vulnerable to
version changes of Access and the OS but I'm sure you can use it
somehow to achieve the same effects..

HTH
--
-Larry-
--

"ttbbgg" wrote in message
...
Hi there.
Trying to create a dbase that keeps track of client name, their

affiliated
codes (could be more than 1), and the reports they use. We have

about 150
reports but not all clients use every report. Trying to sort out a

proper
dbase and the required form for entry of new client, their code(s),

and
reports they use. I was hoping to have a form that had a series of
checkboxes for each report but if there is a better or easier way to

do it
I'm open to suggestion.



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
adding a form to a table already linked to several forms debs_n_soots Using Forms 2 January 5th, 2006 08:20 AM
Linking v Embedded Jim Bunton General Discussion 5 August 10th, 2005 11:09 PM
Understanding Primary Keys Khai Database Design 3 January 20th, 2005 09:47 PM
Show form when activating a dbase Jenn General Discussion 2 October 13th, 2004 11:34 PM


All times are GMT +1. The time now is 07:57 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.