Unanswered Updating the Client Window?

  • Sunday, August 12, 2012 7:21 PM
     
     

    I've been teaching myself VC++ so my question is how do you store your client area (i.e. text, images, etc) so the area is quickly updated when redrawn?  Are there functions in VC to help with this or you have to create your own?

All Replies

  • Monday, August 13, 2012 12:00 AM
     
     

    >I've been teaching myself VC++ so my question is how do you store your client area (i.e. text, images, etc) so the area is quickly updated when redrawn?  Are there functions in VC to help with this or you have to create your own?

    It depends on the amount of data you have, but you normally store them
    in memory in whatever form is most convenient and appropriate to your
    application.

    Dave