-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProperties.pas
More file actions
50 lines (44 loc) · 1.06 KB
/
Properties.pas
File metadata and controls
50 lines (44 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
unit Properties;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Buttons;
type
TFilePropertiesForm = class(TForm)
GroupBox1: TGroupBox;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
lSamplesPerSec: TStaticText;
lBitsPerSample: TStaticText;
lChannels: TStaticText;
lAvgBytesPerSec: TStaticText;
BitBtn1: TBitBtn;
Label5: TLabel;
Label6: TLabel;
GroupBox2: TGroupBox;
Label7: TLabel;
Label8: TLabel;
lWaveSize: TStaticText;
lTotalTime: TStaticText;
GroupBox3: TGroupBox;
Label9: TLabel;
lMaxSampleValue: TStaticText;
lMaxSamplePercent: TStaticText;
Label10: TLabel;
Label11: TLabel;
lMinSampleValue: TStaticText;
Label12: TLabel;
lMinSamplePercent: TStaticText;
Label13: TLabel;
Label14: TLabel;
lClippedSectors: TStaticText;
private
{ Private declarations }
public
{ Public declarations }
end;
implementation
{$R *.DFM}
end.