Pelles C Resource editor .. How to use
- Rick Lipkin
- Posts: 2675
- Joined: Fri Oct 07, 2005 1:50 pm
- Location: Columbia, South Carolina USA
Pelles C Resource editor .. How to use
To All
I am asking for help ... I have downloaded and installed the Pelles C IDE .. can someone walk me thru the steps to create and or open a .rc file please ??
Thanks
Rick Lipkin
I am asking for help ... I have downloaded and installed the Pelles C IDE .. can someone walk me thru the steps to create and or open a .rc file please ??
Thanks
Rick Lipkin
- Antonio Linares
- Site Admin
- Posts: 42604
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 44 times
- Been thanked: 88 times
- Contact:
Re: Pelles C Resource editor .. How to use
Visual Studio Community (free) resources editor seems to work great 
Time to start using it...

Time to start using it...
- Rick Lipkin
- Posts: 2675
- Joined: Fri Oct 07, 2005 1:50 pm
- Location: Columbia, South Carolina USA
Re: Pelles C Resource editor .. How to use
Antonio
Quick questions
1) Can I create a .rc with visual studio ?
2) Can I double click on a .rc and open the visual studio resource editor ?
Thanks ..
Rick
Quick questions
1) Can I create a .rc with visual studio ?
2) Can I double click on a .rc and open the visual studio resource editor ?
Thanks ..
Rick
- Antonio Linares
- Site Admin
- Posts: 42604
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 44 times
- Been thanked: 88 times
- Contact:
Re: Pelles C Resource editor .. How to use
Rick,
Based on what I have discovered so far:
1. You can create a new Windows desktop app which automatically includes a RC file you can edit
2. You can open any RC and edit it
Based on what I have discovered so far:
1. You can create a new Windows desktop app which automatically includes a RC file you can edit
2. You can open any RC and edit it
- Antonio Linares
- Site Admin
- Posts: 42604
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 44 times
- Been thanked: 88 times
- Contact:
Re: Pelles C Resource editor .. How to use
Simplest way to go:
1. You create an empty RC file using notepad
2. You edit it from Visual Studio Community (file - open - select the RC file)
1. You create an empty RC file using notepad
2. You edit it from Visual Studio Community (file - open - select the RC file)
Re: Pelles C Resource editor .. How to use
Antonio,
I try to open with Visual Studio adorick.rc and I get this error:
Thanks
I try to open with Visual Studio adorick.rc and I get this error:
Code: Select all | Expand
error RC104: undefinied keyword o kwy name: WS_CHILD
Thanks
- Antonio Linares
- Site Admin
- Posts: 42604
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 44 times
- Been thanked: 88 times
- Contact:
Re: Pelles C Resource editor .. How to use
Elvira,
You can add:
#define WS_CHILD 0x40000000L
or simply:
#include <windows.h>
You can add:
#define WS_CHILD 0x40000000L
or simply:
#include <windows.h>
- Marc Venken
- Posts: 1485
- Joined: Tue Jun 14, 2016 7:51 am
- Location: Belgium
Re: Pelles C Resource editor .. How to use
Antonio Linares wrote:Elvira,
You can add:
#define WS_CHILD 0x40000000L
or simply:
#include <windows.h>
Is windows.H in the download section of FWH ?
or.. marc (at) maveco.be

Marc Venken
Using: FWH 23.08 with Harbour
Using: FWH 23.08 with Harbour
- FranciscoA
- Posts: 2164
- Joined: Fri Jul 18, 2008 1:24 am
- Location: Chinandega, Nicaragua, C.A.
Re: Pelles C Resource editor .. How to use
elvira wrote:Where is this file?
c:\bccxxx\include\\windows\sdk
Francisco J. Alegría P.
Chinandega, Nicaragua.
Fwxh-MySql-TMySql
Chinandega, Nicaragua.
Fwxh-MySql-TMySql
- Antonio Linares
- Site Admin
- Posts: 42604
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 44 times
- Been thanked: 88 times
- Contact:
- Marc Venken
- Posts: 1485
- Joined: Tue Jun 14, 2016 7:51 am
- Location: Belgium
Re: Pelles C Resource editor .. How to use
elvira wrote:Now the other files are missing!
I linked the above and the include from the samples dir.
That way it worked here.
Marc Venken
Using: FWH 23.08 with Harbour
Using: FWH 23.08 with Harbour