Autor Beitrag
Roy
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 184

Windows7 Ultimate
Delphi 2007, NET, Embarcadero
BeitragVerfasst: Fr 23.03.07 10:44 
Hallo Freunde,
mal wieder eine Frage von mir:

Ich arbeite in meinem Tool mit Access und somit auch DBEdit Komponenten. Ich möchte nun wenn DBEdit1=1 ist einen Ton erzeugen, zum Beispiel LoadFromFile weiß aber nicht wie.

Kann mir jemand helfen?
DBR
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 46



BeitragVerfasst: So 01.04.07 15:20 
ausblenden Delphi-Quelltext
1:
2:
3:
4:
5:
6:
7:
uses mmsystem;

procedure TForm1.DBEdit1Change(Sender: TObject);
begin
  if DBEdit1.text = '1' then
  playsound('c:\demo.wav'0, SND_FILENAME or SND_ASYNC);
end;


Gruß DBR