Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. AfxSetResourceHandle() - I failed to load the default resources of the application.

AfxSetResourceHandle() - I failed to load the default resources of the application.

Scheduled Pinned Locked Moved C / C++ / MFC
tutorialquestion
3 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    julych
    wrote on last edited by
    #1

    In case that some of the buttons' captions (or other resources)of a dialog application have been changed - is it possible at runtime to set all the resources to their original names/values? I tried with AfxSetResourceHandle(), but nothing happened. Any suggestions how to do this? Thanks.

    A 1 Reply Last reply
    0
    • J julych

      In case that some of the buttons' captions (or other resources)of a dialog application have been changed - is it possible at runtime to set all the resources to their original names/values? I tried with AfxSetResourceHandle(), but nothing happened. Any suggestions how to do this? Thanks.

      A Offline
      A Offline
      Antti Keskinen
      wrote on last edited by
      #2

      I assume you used a dialog template to create your dialog ? Now, mostly all (if not all) controls you place on this template are NOT resources, but control windows. The button is not a resource; it is a window with "Button" class and a title it displays on it as it's caption. If you use an icon or a bitmapped button, then those resources are bound to the button: a window with a bound resource that is drawn to it. So, once more: the dialog template is a resource, but the controls placed there are not. The template just specifies what controls are placed and where. The Framework will worry about creating these controls and placing them. Consider the template like a drawing plan. If the captions of buttons have changed, it is possible to change them back by using GetDlgItem and specifying the ID as parameter. If you convert the return value to CButton*, you can use the 'SetWindowText' method of the class to set the button's caption. Hope this helps. If it doesn't, I suggest you dig up the infamous 'Programming Windows' book by Charles Petzold. This should help you get started by first introducing you to the concept of resources: what and where they are and how they are used in a Windows environment. -Antti Keskinen ---------------------------------------------- The definition of impossible is strictly dependant on what we think is possible.

      J 1 Reply Last reply
      0
      • A Antti Keskinen

        I assume you used a dialog template to create your dialog ? Now, mostly all (if not all) controls you place on this template are NOT resources, but control windows. The button is not a resource; it is a window with "Button" class and a title it displays on it as it's caption. If you use an icon or a bitmapped button, then those resources are bound to the button: a window with a bound resource that is drawn to it. So, once more: the dialog template is a resource, but the controls placed there are not. The template just specifies what controls are placed and where. The Framework will worry about creating these controls and placing them. Consider the template like a drawing plan. If the captions of buttons have changed, it is possible to change them back by using GetDlgItem and specifying the ID as parameter. If you convert the return value to CButton*, you can use the 'SetWindowText' method of the class to set the button's caption. Hope this helps. If it doesn't, I suggest you dig up the infamous 'Programming Windows' book by Charles Petzold. This should help you get started by first introducing you to the concept of resources: what and where they are and how they are used in a Windows environment. -Antti Keskinen ---------------------------------------------- The definition of impossible is strictly dependant on what we think is possible.

        J Offline
        J Offline
        julych
        wrote on last edited by
        #3

        OK, thanks! But I was trying to avoid using GetDlgItem and SetWindowText functions. What I was asking was is it possible to load the default values (caption, size and so on)as they are defined in the *.rc file? Let's say the captions of some button or static controls have been changed (using 'SetWindowText'). Is it possible at runtime to restore the original values as they are defined in the *.rc-file? I mean to load them directly from this file? I can't get Petzold's book and that's why I'm asking here. By the way, is it available somewhere on the net as eBook? Greetings -J.

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups