CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    May 2001
    Posts
    7

    need mschart.ocx

    I can not find mschart.ocx in my computer (WinNT, VS 6.0). I only can find mschrt20.ocx.

    what's the difference between these two ActiveX control. any if you happen to have mschart.ocx, would you please email to me.
    [email protected]


  2. #2
    Join Date
    May 2000
    Location
    New York, NY, USA
    Posts
    2,878

    Re: need mschart.ocx

    I have VB6 SP5 on W98. I also have only mschrt20.ocx.

    Iouri Boutchkine
    [email protected]
    Iouri Boutchkine
    [email protected]

  3. #3
    Join Date
    May 2001
    Posts
    7

    Re: need mschart.ocx

    I change ur command_click code to

    Private Sub Command1_Click()
    Picture1.Picture = LoadPicture("d:/one2one/vb/c.bmp")
    'Picture1.AutoRedraw = False
    Picture1.ScaleMode = vbPixels
    Call DrawPiePiece(QBColor(1), 0.001, 36)
    Call DrawPiePiece(QBColor(2), 36, 55)
    Call DrawPiePiece(QBColor(3), 55, 75)
    Call DrawPiePiece(QBColor(4), 75, 99.999)
    End Sub

    then it work. just wonder is it neccessary to load a existing picture file first.


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