[ brenas @ 22.06.2006. 01:47 ] @
Kako da dobijem zvuk na sistemskom zvucniku? Da li je to neka funkcija ili moram da ukjlucujem i neke dodatne biblioteke?
[ Trodmi @ 22.06.2006. 02:07 ] @
Code:

procedure TForm1.Button1Click(Sender: TObject);
var i:integer;
begin
for i:= 100 to 120 do
//this plays the sound
  Windows.Beep(i, 1 );
//first param is the number of hertzs
//second param is the duration in ms
 for i:= 120 downto 100 do
//this plays the sound
  Windows.Beep(i, 1 );
  end;

Mada ne znam cemu
[ Miloš Baić @ 22.06.2006. 09:02 ] @
Koliko se sećam, na www.torry.net imaš nekoliko komponenti ( besplatnih ) na tu temu...
[ brenas @ 23.06.2006. 11:01 ] @
Ok. Hvala!