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

    what's system resource?and what can cause its level down?

    thank u


  2. #2
    Join Date
    May 1999
    Location
    Farnborough, Hants, England
    Posts
    710

    Re: what's system resource?and what can cause its level down?

    It probably means memory for graphical items. It can go down by not properly matching calls to CreateXXX() & DeleteXXX() / DestroyXXX(), GetXXX() & ReleaseXXX(), etc. and by not selecting GDI objects out of DCs before destroying the DC (as you should).



    --
    Jason Teagle
    [email protected]

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