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

Thread: Resource Editor

  1. #1
    Join Date
    Aug 2000
    Posts
    265

    Resource Editor

    Has anyone used the resource editor? Do you know where I can find information about using it? Is it useful?


  2. #2
    Join Date
    Dec 1999
    Location
    Dublin, Ireland
    Posts
    1,173

    Re: Resource Editor

    The standard resource editor that comes with VC++ and/or visual studio is perfectly OK for creating .RES files.

    After compilation you use the RC.EXE program to compile the resources into your Exe.

    The Visual basic help says:
    Storing bitmaps, icons, or cursors in and accessing them from resource files improves load time because you can load them individually as needed from the resource file, rather than all at once when a Form is loaded.

    and for once, it's right.

    HTH,
    Duncan

    -------------------------------------------------
    Ex. Datis: Duncan Jones
    Merrion Computing Ltd
    http://www.merrioncomputing.com
    '--8<-----------------------------------------
    NEW -The printer usage monitoring application
    '--8<------------------------------------------

  3. #3
    Join Date
    Apr 2000
    Location
    South Carolina,USA
    Posts
    2,210

    Re: Resource Editor

    The Resource Editor is very useful for storing graphics and Text files that you do not want your users to play around with. The files are stored in the Resource repository at design time and retrieved at run time. It is a READ-ONLY repositiry. It is relatively simple to use once you get started.
    Look in MSDN Help for the LoadResPicture, LoadResData and LoadResString Functions" to extract objects from the Resource file.
    To find the Resource Editor, go to Addins / ADD IN Manager and load the VB x Resource editor. It has buttons that allow you to Browse and select the Items you want to load into the .res file

    John G

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