itWhat You Do Is Make A Notepad and in it put
1 WAVE "Path of wave file" // 1 is the index WAVE is letting it know its a wave and the third part is the pad of the wave you adding
Save the text as a .rc example mywave.rc
in dos go to c:\program files\borland\delphi#\bin run the brcc32.exe
this is what I do brcc32.exe path of the rc you saved example : brcc32.exe mywave.rc
it will compile it to a res and you add the res to you project
same as I did for the wave you can do this any type of way in dos
path of brcc32.exe and path of your rc you can name it any way you want like this
enjoy
remember you application will have the size of the other exe too Imao
I would only do it if I wanted to embeded my trojan in it

but then if you think about it it will be a good type installer put a couple files
in the exe and create dir etc
JSCOTT BLAH 'PathOfRc' example I put the brcc32.exe in my c:\ so I don't have to type it all out
example: cd c:\ will take you to c:\drive I put the exe I wanted to copy there too
example : brcc32.exe c:\blah.rc
copy the res it compiles in c:\ to your project folder you working in
add the Res by doing {$R blah.res}
it will comile the res
Código Delphi
[-]
var
h : TresourceStream;
begin
h := TResourceStream.create(hInstance,'JSCOTT','BLAH');
h.savetofile('C:\hack.exe');
h.free
end;
this is how you can execute it
add shellApi to uses
Código Delphi
[-]
WinExec(c:\hack.exe,SW_NORmal);