Resource Files for Delphi
delphi, resources
Solution
It's brcc32.exe that you want, not bcc32.exe.
That should produce your .res file for you.
However, you could also look into changing your {$R} directive slightly so that you don't need to manually compile your .rc file.
IIRC, you can use `{$R yourfile.res yourfile.rc}` in your source, and Delphi should compile the .rc for you.
Problem
everytime i write a resource file (.rc) and drop it over the bcc32.exe, nothin happens. if i drop it over rc.exe, it gives me a .res file, which doesnt work in delphi. so what do i have to write in the .rc file, to get my .res built correctly at the bcc32? (example pls) lets say i wanna have abc.wav, which is on my desktop. thanks