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

Thread: Image

  1. #1
    Join Date
    Nov 1999
    Posts
    11

    Image

    How to fix one photo (like image) in the right corner of the Frame. How to
    write prg. for this. I am creating one form like application form. And how to
    store in MSAccess.



  2. #2
    Guest

    Re: Image

    All you have to do is put this in you paint function

    g.drawImage(image,0,0,null);

    you may want to override update() and just call paint() in it so that you don't get as much flashing. If the image is really big and you are getting flashing anyway, you will have to double buffer it.

    As far as storing in MSAccess, that could be a book.


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