Last change
on this file was 6, checked in by george, 16 years ago |
- Přesunuto: Hlavní vývojová větev přesunuta do podsložky trunk.
|
File size:
969 bytes
|
Line | |
---|
1 | unit Loading;
|
---|
2 |
|
---|
3 | interface
|
---|
4 |
|
---|
5 | uses
|
---|
6 | Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
---|
7 | Dialogs, StdCtrls, Gauges;
|
---|
8 |
|
---|
9 | type
|
---|
10 | TForm9 = class(TForm)
|
---|
11 | Gauge1: TGauge;
|
---|
12 | Button1: TButton;
|
---|
13 | Label1: TLabel;
|
---|
14 | procedure FormShow(Sender: TObject);
|
---|
15 | procedure Button1Click(Sender: TObject);
|
---|
16 | procedure FormClose(Sender: TObject; var Action: TCloseAction);
|
---|
17 | private
|
---|
18 | { Private declarations }
|
---|
19 | public
|
---|
20 | { Public declarations }
|
---|
21 | end;
|
---|
22 |
|
---|
23 | var
|
---|
24 | Form9: TForm9;
|
---|
25 |
|
---|
26 | implementation
|
---|
27 |
|
---|
28 | uses ImportZWebu;
|
---|
29 |
|
---|
30 | {$R *.dfm}
|
---|
31 |
|
---|
32 | procedure TForm9.FormShow(Sender: TObject);
|
---|
33 | begin
|
---|
34 | Application.ProcessMessages;
|
---|
35 | // Form8.WriteServersWoWStatus('http://wowstatus.net/serverlist.php');
|
---|
36 | end;
|
---|
37 |
|
---|
38 | procedure TForm9.Button1Click(Sender: TObject);
|
---|
39 | begin
|
---|
40 | EndLoadingBool := True;
|
---|
41 | // Form8.Close;
|
---|
42 | Close;
|
---|
43 | end;
|
---|
44 |
|
---|
45 | procedure TForm9.FormClose(Sender: TObject; var Action: TCloseAction);
|
---|
46 | begin
|
---|
47 | Gauge1.Progress := 0;
|
---|
48 | end;
|
---|
49 |
|
---|
50 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.