No relative paths with resource files?
Posted: Wed Aug 23, 2006 4:39 pm
Since PB suports the use of resource files I tried this with a project of mine to include some bitmaps. Problem is that you have to specify the full (absolute) path in the resource file.
This will give a compiler error saying "File not found". So you would have to use this:
When I code in C using the DevC++ IDE and use resource scripts I don't have specify the full path. Is this a limitation of PORC or am I missing something here?
Code: Select all
100 BITMAP "logo.bmp"Code: Select all
100 BITMAP "C:\Develoment\PB\Resources\logo.bmp"