jo boxen sind dran und sound installiert ( soweit am ende bin ich nun auch noch nicht
)....kommt aber dennoch kein sound (hatte sogar musik extra ausgemacht.
sah nun so aus:
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var
hDll: THandle;
Begin
hDll := LoadLibrary('C:\sound.DLL');
IF hDll <> 0 Then Begin
PlaySound(MAKEINTRESOURCE(1), hDll, SND_SYNC or SND_RESOURCE or SND_NODEFAULT);
FreeLibrary(hDll);
end;
end;