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

Thread: Hide MSChart

  1. #1
    Join Date
    May 2001
    Location
    israel
    Posts
    99

    Hide MSChart

    hi,

    is there a way to hide the MSChart object??
    i want to hide and show the chart by clicking on a command button.

    thanks,
    ohad.


  2. #2
    Join Date
    Jun 2001
    Location
    MO, USA
    Posts
    2,868

    Re: Hide MSChart

    This code behind a button should toggle it back and forth...


    private Sub Command1_Click()
    MSChart1.Visible = Not MSChart1.Visible
    End Sub






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