VB 6.0 Questions

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • hmmm...

    VB 6.0 Questions

    Does VB 6.0 come packaged with:

    Data Controls (e.g. Data Grid) that can be bound to a database query.
    Control that supports report formatting and printing (with print preview).
    Control that supports display and manipulation (e.g. zoom in/out) of image
    files.

    Thank you


  • Adrian Parker

    #2
    Re: VB 6.0 Questions


    "hmmm..." <blahblah@blah. com> wrote in message
    news:q8XPb.2359 4$zj7.16662@new sread1.news.pas .earthlink.net. ..[color=blue]
    > Does VB 6.0 come packaged with:
    >
    > Data Controls (e.g. Data Grid) that can be bound to a database query.[/color]

    Yes.

    [color=blue]
    > Control that supports report formatting and printing (with print preview).[/color]

    Somewhat.

    [color=blue]
    > Control that supports display and manipulation (e.g. zoom in/out) of image
    > files.[/color]

    No clue. You could always write it, if not :)



    Adrian


    Comment

    • hmmm...

      #3
      Re: VB 6.0 Questions

      Can you elaborate a bit on "somewhat"? :^) Thanks.

      "Adrian Parker" <adrian.parker@ NOSPAMsympatico .ca> wrote in message
      news:IQYPb.6445 $rW5.527110@new s20.bellglobal. com...[color=blue]
      >
      > "hmmm..." <blahblah@blah. com> wrote in message
      > news:q8XPb.2359 4$zj7.16662@new sread1.news.pas .earthlink.net. ..[color=green]
      > > Does VB 6.0 come packaged with:
      > >
      > > Data Controls (e.g. Data Grid) that can be bound to a database query.[/color]
      >
      > Yes.
      >
      >[color=green]
      > > Control that supports report formatting and printing (with print[/color][/color]
      preview).[color=blue]
      >
      > Somewhat.
      >
      >[color=green]
      > > Control that supports display and manipulation (e.g. zoom in/out) of[/color][/color]
      image[color=blue][color=green]
      > > files.[/color]
      >
      > No clue. You could always write it, if not :)
      >
      >
      >
      > Adrian
      >
      >[/color]


      Comment

      • Adrian Parker

        #4
        Re: VB 6.0 Questions


        "hmmm..." <blahblah@blah. com> wrote in message
        news:YaZPb.2238 5$1e.16557@news read2.news.pas. earthlink.net.. .[color=blue]
        > Can you elaborate a bit on "somewhat"? :^) Thanks.[/color]

        As for data grids, VB can use all kinds of neat things like Recordset
        variables, and datagrids. From MEMORY the datagrid is used by adding the
        "Microsoft ADO Data Control". I could be wrong, I never use the ruddy
        thing. I really don't like Access, it has a tendency to want to store the
        entire bloody database into a recordset variable every time you want to
        query, traverse records, etc.

        As for formatting and printing, I've never used it, but search google for,
        "Crystal Reports". You could of course also just write the output to HTML
        format. That's a rather randabout way of making a report though. You can
        also have VB manipulate Word. Again I don't use that too often (I'm more of
        a Linux guy, then a hardcore Windows programmer). If it's just a boring
        report VB supports fixed-width fields, and alignment of text using tab(). I
        guess it depends on your exact needs really.

        As for zooming in and out of images, I would not have a clue how to do that.
        Various people provide controls you can use to allows such. This seems to
        be one: http://www.hallogram.com/vbtools/features.html



        Adrian



        [color=blue]
        >
        > "Adrian Parker" <adrian.parker@ NOSPAMsympatico .ca> wrote in message
        > news:IQYPb.6445 $rW5.527110@new s20.bellglobal. com...[color=green]
        > >
        > > "hmmm..." <blahblah@blah. com> wrote in message
        > > news:q8XPb.2359 4$zj7.16662@new sread1.news.pas .earthlink.net. ..[color=darkred]
        > > > Does VB 6.0 come packaged with:
        > > >
        > > > Data Controls (e.g. Data Grid) that can be bound to a database query.[/color]
        > >
        > > Yes.
        > >
        > >[color=darkred]
        > > > Control that supports report formatting and printing (with print[/color][/color]
        > preview).[color=green]
        > >
        > > Somewhat.
        > >
        > >[color=darkred]
        > > > Control that supports display and manipulation (e.g. zoom in/out) of[/color][/color]
        > image[color=green][color=darkred]
        > > > files.[/color]
        > >
        > > No clue. You could always write it, if not :)
        > >
        > >
        > >
        > > Adrian
        > >
        > >[/color]
        >
        >[/color]


        Comment

        Working...