CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    How to print particular objects displayed on a form

    How do we Print a MSChart displayed on a form? there are 3 different MSChart displayed on a form. how do we print individual MSChart? the print option is given as a right click menu for the MSChart items


  2. #2
    Join Date
    Feb 2000
    Posts
    12

    Re: How to print particular objects displayed on a form

    chart.EditCopy

    Printer.Print " "

    Printer.PaintPicture Clipboard.GetData(), 0, 0

    Printer.NewPage
    Printer.Orientation = vbPRORLandscape
    Printer.EndDoc


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

Featured