Pelles C Resource editor .. How to use

Post Reply
User avatar
Rick Lipkin
Posts: 2675
Joined: Fri Oct 07, 2005 1:50 pm
Location: Columbia, South Carolina USA

Pelles C Resource editor .. How to use

Post by Rick Lipkin »

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
User avatar
Antonio Linares
Site Admin
Posts: 42603
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 43 times
Been thanked: 88 times
Contact:

Re: Pelles C Resource editor .. How to use

Post by Antonio Linares »

Visual Studio Community (free) resources editor seems to work great :-)

Time to start using it...
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
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

Post by Rick Lipkin »

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
User avatar
Antonio Linares
Site Admin
Posts: 42603
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 43 times
Been thanked: 88 times
Contact:

Re: Pelles C Resource editor .. How to use

Post by Antonio Linares »

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
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 42603
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 43 times
Been thanked: 88 times
Contact:

Re: Pelles C Resource editor .. How to use

Post by Antonio Linares »

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)
regards, saludos

Antonio Linares
www.fivetechsoft.com
elvira
Posts: 516
Joined: Fri Jun 29, 2012 12:49 pm

Re: Pelles C Resource editor .. How to use

Post by elvira »

Antonio,

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
User avatar
Antonio Linares
Site Admin
Posts: 42603
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 43 times
Been thanked: 88 times
Contact:

Re: Pelles C Resource editor .. How to use

Post by Antonio Linares »

Elvira,

You can add:

#define WS_CHILD 0x40000000L

or simply:

#include <windows.h>
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Marc Venken
Posts: 1485
Joined: Tue Jun 14, 2016 7:51 am
Location: Belgium

Re: Pelles C Resource editor .. How to use

Post by Marc Venken »

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 :D
Marc Venken
Using: FWH 23.08 with Harbour
elvira
Posts: 516
Joined: Fri Jun 29, 2012 12:49 pm

Re: Pelles C Resource editor .. How to use

Post by elvira »

Where is this file?
User avatar
FranciscoA
Posts: 2164
Joined: Fri Jul 18, 2008 1:24 am
Location: Chinandega, Nicaragua, C.A.

Re: Pelles C Resource editor .. How to use

Post by FranciscoA »

elvira wrote:Where is this file?


c:\bccxxx\include\\windows\sdk
Francisco J. Alegría P.
Chinandega, Nicaragua.

Fwxh-MySql-TMySql
elvira
Posts: 516
Joined: Fri Jun 29, 2012 12:49 pm

Re: Pelles C Resource editor .. How to use

Post by elvira »

Now the other files are missing!
User avatar
Antonio Linares
Site Admin
Posts: 42603
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 43 times
Been thanked: 88 times
Contact:

Re: Pelles C Resource editor .. How to use

Post by Antonio Linares »

which ones ?
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Marc Venken
Posts: 1485
Joined: Tue Jun 14, 2016 7:51 am
Location: Belgium

Re: Pelles C Resource editor .. How to use

Post by Marc Venken »

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
Post Reply