listview printing

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • aaronv
    New Member
    • Jan 2008
    • 1

    listview printing

    Hi vb programmers. I would just like to know if it's possible to directly print what I see on my listview or put what I see on my listview to a datareport.
    I am having a problem with printing because i'm trying to have a sort of open searching way of looking for data in my listview, then if i'll print it the usual way, I have to consider some number of databases. Is it possible? Im using vb6
  • werks
    New Member
    • Dec 2007
    • 218

    #2
    Originally posted by aaronv
    Hi vb programmers. I would just like to know if it's possible to directly print what I see on my listview or put what I see on my listview to a datareport.
    I am having a problem with printing because i'm trying to have a sort of open searching way of looking for data in my listview, then if i'll print it the usual way, I have to consider some number of databases. Is it possible?
    Hi aaronv, i have never encountered printing directly to listview (but if somebody know i'll be glad to know how). Why not send it to datareport?

    Comment

    • lotus18
      Contributor
      • Nov 2007
      • 865

      #3
      Originally posted by aaronv
      Hi vb programmers. I would just like to know if it's possible to directly print what I see on my listview or put what I see on my listview to a datareport.
      I am having a problem with printing because i'm trying to have a sort of open searching way of looking for data in my listview, then if i'll print it the usual way, I have to consider some number of databases. Is it possible? Im using vb6
      Hi

      Why don't you use a Like operator to achieve that? just a suggestion : )

      Rey Sean

      Comment

      • daniel aristidou
        Contributor
        • Aug 2007
        • 494

        #4
        Originally posted by aaronv
        Hi vb programmers. I would just like to know if it's possible to directly print what I see on my listview or put what I see on my listview to a datareport.
        I am having a problem with printing because i'm trying to have a sort of open searching way of looking for data in my listview, then if i'll print it the usual way, I have to consider some number of databases. Is it possible? Im using vb6
        I would try......
        [CODE=vb] Dim lstboxtxt as string
        lstboxtxt = listbox.text
        print lstboxtxt
        [/CODE]

        Comment

        • lotus18
          Contributor
          • Nov 2007
          • 865

          #5
          Originally posted by daniel aristidou
          I would try......
          [CODE=vb] Dim lstboxtxt as string
          lstboxtxt = listbox.text
          print lstboxtxt
          [/CODE]
          He wants to print on a data report

          Comment

          • shuvo2k6
            New Member
            • Jan 2008
            • 68

            #6
            Originally posted by aaronv
            Hi vb programmers. I would just like to know if it's possible to directly print what I see on my listview or put what I see on my listview to a datareport.
            I am having a problem with printing because i'm trying to have a sort of open searching way of looking for data in my listview, then if i'll print it the usual way, I have to consider some number of databases. Is it possible? Im using vb6

            Hi,
            I think u do that 'PaintForm' method of any form.
            If u get success reply me, plz.

            Get Better.

            Regards,
            shuvo2k6

            Comment

            • daniel aristidou
              Contributor
              • Aug 2007
              • 494

              #7
              Originally posted by lotus18
              He wants to print on a data report
              Excuse me i belive he did use the word "or"

              Comment

              Working...