strange error with Pelles

Post Reply
User avatar
Silvio.Falconi
Posts: 4956
Joined: Thu Oct 18, 2012 7:17 pm

strange error with Pelles

Post by Silvio.Falconi »

[1]:PORC.EXE Resource\default.rc /I c:\work\pellesc\include /I c:\work\pellesc\include\win
PORC: Resource\default.rc(54): error: File not found: 'beach\simboliote.png'.
PORC: Resource\default.rc(55): error: File not found: 'beach\simboliew.png'.


I have on default.rc

BTN_PNG_NOTE 10 "beach\simboli\note.png"
BTN_PNG_ALL 10 "beach\simboli\new.png"

why not accept the string \simboli\new.png ?
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
User avatar
karinha
Posts: 4882
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil

Re: strange error with Pelles

Post by karinha »

Intenta:

Code: Select all

BTN_PNG_NOTE 10 ".\beach\simboli\note.png"
BTN_PNG_ALL 10 ".\beach\simboli\new.png"
 
João Santos - São Paulo - Brasil
User avatar
Silvio.Falconi
Posts: 4956
Joined: Thu Oct 18, 2012 7:17 pm

Re: strange error with Pelles

Post by Silvio.Falconi »

resolved with
BTN_PNG_NOTE 10 "beach/simboli/note.png"
BTN_PNG_ALL 10 "beach/simboli/new.png"
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
Post Reply