home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / access / diverses / msaccess / accfld.txt next >
Text File  |  1995-02-27  |  1KB  |  24 lines

  1.  
  2. To print the FIELD DESCRIPTIONS (status bar text):
  3.  
  4. I sure hope ACCESS fixes the lack of ability to print out the FIELD DESCRIPTIONS in version 2.0, but in case they don't, here's a crude work around.  This allows you to print a cross index booklet that matches the FIELD names with their DESCRIPTIONS.
  5.  
  6. First, get ANALYZER running by following the instructions in the PSSKB.TXT file in your ACCESS directory.  Then do the following insane procedures.
  7.  
  8. Use the Form Wizard to build a form using a tabular design based on the original table.  Select all fields from the table to appear on the form.
  9. Go to form design view and delete the labels of the text (in Form Header) but leave the data below in Detail.  Circle the objects and press delete.  Save the form to a unique name "Test".
  10.  
  11. Run the analyzer on the original table and "Test".
  12. Go to Properties and select ControlSource and StatusBarText.
  13.  
  14. This will create the @TableDetails table the @FormControls table and the @FormProperties table.
  15.  
  16. Open the @FormControls table in design view and change OLE objects, Memo fields, Pictures to type text.
  17.  
  18. Build a query using the @TableDetails and @FormControls tables.
  19. Perform a join on @TableDetails.Name and  @FormControls.ControlSource.
  20. Drag the Name field from @TableDetails box down to the first query position and drag the StatusBarText field from the @FormControls box down to the second position.  
  21.  
  22.  
  23. Run the query !        Now you have it !    Enjoy,  John Bercik
  24.