Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ZollerWagner

    Word: Save a new template; New doc opened with that template is blank

    Hi, I have saved a new template to the right folder: C:\Documents and Settings\USERNAME\Application Data\Microsoft\Templates Then when I try to open a new document using that template, the new doc is empty. (It doesn't show the content of the template). I've uploaded this template to other...
  2. ZollerWagner

    New Line for each Field in a Report...

    It may be the answer to this question is here: http://www.tek-tips.com/viewthread.cfm?qid=899790 This solution looks a bit like yours, but uses functions to make it more powerful and flexible.
  3. ZollerWagner

    How to suppress fields with no data & save space in report

    With the help of another person, I've finally found the answer. You have to create a function that tests the data for IsNull, sets up the text for the text box, and adds any needed spaces. Here's an example: Function AddressBlock$ (AName, Addr1, Addr2, City, State, Zip) Dim A1$, A2$, A3$...
  4. ZollerWagner

    How to suppress fields with no data & save space in report

    After more experimentation, it seems to me that part of the problem could be that the setting for the TOP property is set so that a subreport begins at a specific spot on the form. Maybe I should have them all placed at the same spot on the main report? In other words, should I set the TOP...
  5. ZollerWagner

    How to suppress fields with no data & save space in report

    Matethreat, how do you set your properties (can grow, can shrink, auto resize, etc.) so this works? I'm getting very inconsistent results. It's not clear to me where to set these properties (on the subreport, on the detail of the subreport, on the field in the detail of the subreport, etc.)
  6. ZollerWagner

    New Line for each Field in a Report...

    Wow, sorry about that. I'm still having trouble with this too. It seems as though the "can shrink" and "can grow" properties have some effect on the amount of space taken up, but the results have been very inconsistent for me. Sometimes I can get the space to collapse and sometimes I can't...
  7. ZollerWagner

    New Line for each Field in a Report...

    In my experience if there's no data, there's no space used by the subreport. Give a try and let us know how it goes. I understand your skeptism because I didn't think it would work either.
  8. ZollerWagner

    Printing "Yes" for yes/no field instead of a checkbox

    Or, here's a simpler solution: http://www.tek-tips.com/viewthread.cfm?qid=900053
  9. ZollerWagner

    How to suppress fields with no data & save space in report

    That's exactly what I needed to hear. I don't see any reason to have additional tables given the data. The services each organization offers are comments transcribed from a survey. They are specific to each organization. If the subreports don't require separate tables, I'm axing them. Thanks...
  10. ZollerWagner

    Printing "Yes" for yes/no field instead of a checkbox

    What if you create a text box in your report and use code to write yes or no depending on the value in the checkbox's table entry? To do that, add code to the main report's Detail area's Event On Format property. I'd think it'd be something like: Private Sub Detail_Format(Cancel As Integer...
  11. ZollerWagner

    New Line for each Field in a Report...

    I'm not the one to describe how to do this because I'm struggling with it myself.... But if you show the fields that might not have data in their own SubReports, then you can place code to cause a SubReport to not be shown if there is no data. You have to place the code in the main report's...
  12. ZollerWagner

    How to suppress fields with no data & save space in report

    Thanks, Duane. That really works! The structure is, in fact, causing me problems. I thought that to use SubReports, I'd have to use separate tables to get the data to the SubReports. Is that not so? The information on each organization's services tends to be different, so it's a 1-to-1...
  13. ZollerWagner

    How to suppress fields with no data & save space in report

    Hi, I'm creating an Access 2000 report that lists organizations, their contact info, and the services they provide. There are separate fields for each of the different categories of services. Most of the organizations don't have services in every category, so I want to be able to print out a...
  14. ZollerWagner

    IE requires refresh when returning to previous page to edit data

    After a lot of misery, I've decided that the problem is with using history in the input element. Am I correct in assuming that php isn't able to transparently add the session info to the history ref in the following? <input type=&quot;button&quot; value=&quot;Edit&quot...
  15. ZollerWagner

    IE requires refresh when returning to previous page to edit data

    I'm developing a site that has several PHP features. One of them allows a sender to mail an e-card to a friend. I do a lot of input testing to be sure the user inputs are clean and safe. At each step, I give the user the opportunity to go back and revise their inputs, or to start over. On the...
  16. ZollerWagner

    Any disadvantage to using .php on a non-php page

    Would using a .php extension have any advantages? I'm all ears....
  17. ZollerWagner

    Changing Dreamweaver 4 template doesn't update Javascript

    That's a better idea than what I just did... I did learn one interesting thing, though. It seems that on one page the spacing of the js had been changed, perhaps in notepad (outside DW, which won't allow you to change non-editable areas). I'm guessing that DW doesn't make changes if this area...
  18. ZollerWagner

    Changing Dreamweaver 4 template doesn't update Javascript

    Hi, all, I'm having trouble with Dreamweaver 4. I have added a line to a template so the page will access the js from an external file: <script type=&quot;text/javascript&quot; language=&quot;javascript&quot; src=&quot;scripts/wholeSite.js&quot;></script> I have also deleted the js that was...
  19. ZollerWagner

    Cross-browser table backgrounds

    Hi, Mike, It's working for me in Netscape and IE. It looks like maybe you fixed it by taking the background image out of the table tag. As you probably know by now, the background image in the table tag could be a problem with Netscape. It will frequently place that image them in all of the...
  20. ZollerWagner

    Making web pages printable. Please help

    The above two responses are probably right. I'd like to explain a bit more. The backgrounds of pages will print, but only if you select this option in your browser. I believe the default is to not print them, probably to conserve ink and make reading easier. As a test, you might try putting a...

Part and Inventory Search

Back
Top