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. Linda224

    Print.css and auto scroll div

    Oh I just figured it out. In my reference to the print.css I had media="print" but I did not have media="screen" on the main.css. It works now Thank you
  2. Linda224

    Print.css and auto scroll div

    Vragabond - I deleted the references to other style sheets and I'm still getting the same result. There is a detailsview in the div does that make a difference? darryncooke - What would that small adjustment be? Thank you
  3. Linda224

    Print.css and auto scroll div

    Yeah I tried the height: auto; but that is not working either. There isn't anything below the div that I'm concerned about pushing down. Is this something that could be done with javascript or something?
  4. Linda224

    Print.css and auto scroll div

    The hiding of the other stuff from the print works: #scrolling, #header, #headerright, #sub-header, #sub-header-nav, #sidebar { display : none; } its just the content of the scrolling div that doesn't show up
  5. Linda224

    Print.css and auto scroll div

    unfortunately I cant give you the link to the page but this is what I have. Just let me know if you need more. in the main.css for the div I have this: #detailsgrid { width: 780px; height: 500px; overflow: auto; } In the print.css I have this: #detailsgrid { overflow: visible...
  6. Linda224

    Print.css and auto scroll div

    I have a page that has an auto scroll on a div to prevent the page from being a mile long however when the page is printed it only prints what is in the current window. Is it possible to have the print.css show the entire div without the scroll? Thank you for any help
  7. Linda224

    Regular Expression Validators

    Hello I have a c#.net application that I am working on putting some validation on the form. I have 9 regular expression validators on one page and I want to know if it is possible that only one will show up at a time. Right now if they fail two or more of the validators they all show up but I...
  8. Linda224

    A condition on the hidden property over writes the pagebreak at end

    What I am looking for is for all subreports to show up and have a page break at the end of each one and if only one subreport is chosen show the one that is chosen with out all the other page breaks
  9. Linda224

    A condition on the hidden property over writes the pagebreak at end

    Well only 1 or all 35 subreports are shown and only once each if I set the page break before then I would get a blank page before the report and that is what i am trying to avoid. But either way ssrs does not see the page break if i have a condition on the hidden property
  10. Linda224

    A condition on the hidden property over writes the pagebreak at end

    Each SubReport is a different report The main report can pull all reports or just one If all reports are shown they all need to be on different pages. This part works. If one report is chosen then all other reports need to be hidden. This is where the issue is. The Main report only has...
  11. Linda224

    A condition on the hidden property over writes the pagebreak at end

    I have the page break on the rectangle. it is structured like this: Main Report List Rectangle1 - PageBreakAtEnd Subreport1 Rectangle2 - PageBreakAtEnd Subreport2 Rectangle3 - PageBreakAtEnd Subreport3 also I have on the Rectangles hidden property...
  12. Linda224

    A condition on the hidden property over writes the pagebreak at end

    Hello I have a report with multiple sub reports. The sub report all need to show up on a new page so when it exports to excel they are all in different tabs The sub reports are all grouped in a list and then each one is in a rectangle. The rectangle is there for the page break at end. This...
  13. Linda224

    SQL Reporting services hiding blank subreports

    ok so this works =IIF(IsNothing("subreport1"),True,False) to hide it when the subreport is empty but the page break at end doesnt work when this is there :(
  14. Linda224

    SQL Reporting services hiding blank subreports

    I cant get show hide logic to work right I took the rectangles out of the main report and put them in the sub report. Now instead of a blank space where the sub report is I get an entire blank page. How do I make the show hide work. I tried putting it in the rectangle but i dont think i am...
  15. Linda224

    SQL Reporting services hiding blank subreports

    So far putting it in a rectangle is the only way I can get it to page break after each report. I need all sub reports to show up on their own page so when it exports to excel they are on separate sheets. How do I put a border around it?
  16. Linda224

    SQL Reporting services hiding blank subreports

    Hello This is an issue with sql reporting services I have posted it in that forum but no one has replied. I was hoping someone here might have a suggestion. I have a report that has about 35 subreports in it. The report can return all subreports or just one. This works but when the say 25th...
  17. Linda224

    Hide subreport

    The subreports are in rectangles and i think it is the rectangles that are still there when the sub report is blank. So I think I am trying to hide the rectangle when the sub report is empty
  18. Linda224

    Hide subreport

    Hello I have a report that has about 35 subreports in it. The report can return all subreports or just one. This works but when the say 25th subreport is selected there are 24 spaces above it where the other subreports are. Does any one have a suggestion on how to hide the subreport...
  19. Linda224

    Split string at uppercase

    Well I could probably figure this out in the code behind but it is wanted in the sql. I ran your code and it works beautifuly Thank you so much!
  20. Linda224

    Split string at uppercase

    would it just be easier to do this in the code behind c#

Part and Inventory Search

Back
Top