CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Feb 2009
    Posts
    252

    PictureBoxes and VC6

    when try to asign a member variable to it on the IDE it shows like CStatic Member variable

    i seen another examples in vc6 which shows this member on the picturebox when i create a CStatic the intelisense doesnt show any members.

    m_Picture.SetBitmap


    in resume what i need is to display a image stored on a buffer with the bmp file format in a picture or even in the body of the dialogbox works for me.

    Thx in Advance!!!

  2. #2
    Join Date
    Jul 2002
    Posts
    2,543

    Re: PictureBoxes and VC6

    Intellisence is not compiler. Sometimes it doesn't work, but you can still write m_Picture.SetBitmap(...) without intellisence.

  3. #3
    Join Date
    Sep 2004
    Location
    Holland (land of the dope)
    Posts
    4,123

    Re: PictureBoxes and VC6

    Sometimes it doesn't work
    Sometimes ? Intellisense has been broken from day one.

  4. #4
    Join Date
    Jul 2002
    Posts
    2,543

    Re: PictureBoxes and VC6

    Quote Originally Posted by Skizmo View Post
    Sometimes ? Intellisense has been broken from day one.
    Quick fix:
    Sometimes it may work, but don't believe it anyway.

  5. #5
    Join Date
    Feb 2009
    Posts
    252

    Re: PictureBoxes and VC6

    Quote Originally Posted by Alex F View Post
    Intellisence is not compiler. Sometimes it doesn't work, but you can still write m_Picture.SetBitmap(...) without intellisence.
    Thx its true it reconices SetBitmap as member just that isnt shown in the intelisence.

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