How to print a DataReport in a desired size ?????

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vishwaskothari
    New Member
    • Aug 2007
    • 60

    How to print a DataReport in a desired size ?????

    i want to print a datareport in 8" by 6" size.

    so how can i proceed?

    TIA

    regards
    vishwas
  • hariharanmca
    Top Contributor
    • Dec 2006
    • 1977

    #2
    Originally posted by vishwaskothari
    i want to print a datareport in 8" by 6" size.
    so how can i proceed?
    Actually the reports are in A4, A5, landscape, etc.

    You have to design your own text format report for 8" by 6" size.

    Comment

    • vishwaskothari
      New Member
      • Aug 2007
      • 60

      #3
      Originally posted by hariharanmca
      Actually the reports are in A4, A5, landscape, etc.

      You have to design your own text format report for 8" by 6" size.
      how it can be done and how should i ensure that it is in 8" by 6" size

      Comment

      • hariharanmca
        Top Contributor
        • Dec 2006
        • 1977

        #4
        Originally posted by vishwaskothari
        how it can be done and how should i ensure that it is in 8" by 6" size
        [CODE=vb]
        Open LPT1 For Output As #1
        Print #1, "printLine1 Here"
        Print #1, "printLine2 Here"
        Print #1, "printLine3 Here"
        Print #1, "printLine..... .... etc Here"
        Print #1, vbCrLf ' for line feed
        Close #1[/CODE]

        that you have to test with 8 by 6 paper for alignment.

        Comment

        Working...