Results 1 to 6 of 6

Thread: dynamic html reporting

  1. #1

    Thread Starter
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    25,481

    dynamic html reporting

    create dynamic html pages in code:
    Attached Images Attached Images  
    Attached Files Attached Files
    Last edited by .paul.; Dec 3rd, 2011 at 07:30 AM.

  2. #2
    PowerPoster make me rain's Avatar
    Join Date
    Sep 2008
    Location
    india/Hubli
    Posts
    2,208

    Re: dynamic html reporting

    poul thanks
    is it possible to add the pageset up & print options here
    The averted nuclear war
    My notes:

    PrOtect your PC. MSDN Functions .OOP LINUX forum
    .LINQ LINQ videous
    If some one helps you please rate them with out fail , forum doesn't expects any thing other than this

  3. #3
    Fanatic Member BlindSniper's Avatar
    Join Date
    Jan 2011
    Location
    South Africa
    Posts
    865

    Re: dynamic html reporting

    Quote Originally Posted by make me rain View Post
    poul thanks
    is it possible to add the pageset up & print options here
    This code was not meant to be printed, there is a codebank entry for printing datatables.

    Useful CodeBank Entries of mine
    Expand Function
    Code Compiler
    Sudoku Solver
    HotKeyHandler Class

    Read this to get Effective help on VBForums
    Hitchhiker's Guide to Getting Help at VBF

  4. #4

    Thread Starter
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    25,481

    Re: dynamic html reporting

    Quote Originally Posted by make me rain View Post
    poul thanks
    is it possible to add the pageset up & print options here
    vb Code:
    1. Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    2.     'WebBrowser1.ShowPrintPreviewDialog()
    3.     'WebBrowser1.ShowPrintDialog()
    4.     WebBrowser1.ShowPageSetupDialog()
    5.     'WebBrowser1.Print()
    6. End Sub

  5. #5
    PowerPoster make me rain's Avatar
    Join Date
    Sep 2008
    Location
    india/Hubli
    Posts
    2,208

    Re: dynamic html reporting

    thank you
    The averted nuclear war
    My notes:

    PrOtect your PC. MSDN Functions .OOP LINUX forum
    .LINQ LINQ videous
    If some one helps you please rate them with out fail , forum doesn't expects any thing other than this

  6. #6
    PowerPoster make me rain's Avatar
    Join Date
    Sep 2008
    Location
    india/Hubli
    Posts
    2,208

    Re: dynamic html reporting

    @.paul
    i think some more work around is required to over come the table row breaking between 2 pages
    the table row must end at the page end.
    at present only the opera browser have this , but not the webbrowser control

    secondly grouping by columns
    for example say ,
    SQL Code:
    1. SELECT E.empName  ,E.JourneyDate , E.journeyDetails FROM E;
    here empname need not be repeated in the table for each journeyDate and JourneyDetails rows

    the Column header repeat for each page is achieved by using [thead]
    The averted nuclear war
    My notes:

    PrOtect your PC. MSDN Functions .OOP LINUX forum
    .LINQ LINQ videous
    If some one helps you please rate them with out fail , forum doesn't expects any thing other than this

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width