Компьютерный форум OSzone.net  

Компьютерный форум OSzone.net (http://forum.oszone.net/index.php)
-   Программирование и базы данных (http://forum.oszone.net/forumdisplay.php?f=21)
-   -   Звуковая плата - звук. (http://forum.oszone.net/showthread.php?t=30206)

Prisoner 24-10-2003 23:44 207770

Сабж.

Megabyte 27-10-2003 11:06 207771

Пример на Дельфи:
Код:

unit Unit1;

interface

uses
  mmsystem,Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  StdCtrls;

type
  TForm1 = class(TForm)
    Memo1: TMemo;
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.DFM}

procedure TForm1.Button1Click(Sender: TObject);
begin
if WaveOutGetNumDevs>0 then memo1.Lines.Add(' Sound Hardware present')
else memo1.Lines.Add(' Sound Hardware not present');

end;

end.


Prisoner 27-10-2003 23:40 207772

Ништяк! Спасибо большое :).


Время: 19:04.

Время: 19:04.
© OSzone.net 2001-