Skip to content

Commit 9e02aa0

Browse files
authored
Sync from PC
1 parent ce9a93e commit 9e02aa0

11 files changed

+234
-169
lines changed

src-rdpcheck/MainUnit.dcu

14.7 KB
Binary file not shown.

src-rdpcheck/MainUnit.dfm

+28-29
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,28 @@
1-
object Frm: TFrm
2-
Left = 0
3-
Top = 0
4-
BorderIcons = [biSystemMenu, biMinimize]
5-
BorderStyle = bsSingle
6-
Caption = 'Local RDP Checker'
7-
ClientHeight = 480
8-
ClientWidth = 640
9-
Color = clBtnFace
10-
Font.Charset = DEFAULT_CHARSET
11-
Font.Color = clWindowText
12-
Font.Height = -11
13-
Font.Name = 'Tahoma'
14-
Font.Style = []
15-
OldCreateOrder = False
16-
Position = poDesktopCenter
17-
OnCreate = FormCreate
18-
PixelsPerInch = 96
19-
TextHeight = 13
20-
object RDP: TMsRdpClient2
21-
Left = 0
22-
Top = 0
23-
Width = 640
24-
Height = 480
25-
TabOrder = 0
26-
OnDisconnected = RDPDisconnected
27-
ControlData = {0003000008000200000000000B0000000B000000}
28-
end
29-
end
1+
object Frm: TFrm
2+
Left = 0
3+
Top = 0
4+
AutoSize = True
5+
BorderIcons = [biSystemMenu, biMinimize]
6+
BorderStyle = bsSingle
7+
Caption = 'Local RDP Checker by sebaxakerhtc'
8+
ClientHeight = 600
9+
ClientWidth = 800
10+
Color = clBtnFace
11+
Font.Charset = DEFAULT_CHARSET
12+
Font.Color = clWindowText
13+
Font.Height = -11
14+
Font.Name = 'Tahoma'
15+
Font.Style = []
16+
Position = poDesktopCenter
17+
OnCreate = FormCreate
18+
PixelsPerInch = 96
19+
TextHeight = 13
20+
object RDP: TMsRdpClient7NotSafeForScripting
21+
Left = 0
22+
Top = 0
23+
Width = 800
24+
Height = 600
25+
TabOrder = 0
26+
ControlData = {0008000008000200000000000B0000000B000000}
27+
end
28+
end

src-rdpcheck/MainUnit.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ interface
2424

2525
type
2626
TFrm = class(TForm)
27-
RDP: TMsRdpClient2;
27+
RDP: TMsRdpClient7NotSafeForScripting;
2828
procedure RDPDisconnected(ASender: TObject; discReason: Integer);
2929
procedure FormCreate(Sender: TObject);
3030
private

src-rdpcheck/RDPCheck.dpr

+28-31
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,28 @@
1-
{
2-
Copyright 2014 Stas'M Corp.
3-
4-
Licensed under the Apache License, Version 2.0 (the "License");
5-
you may not use this file except in compliance with the License.
6-
You may obtain a copy of the License at
7-
8-
http://www.apache.org/licenses/LICENSE-2.0
9-
10-
Unless required by applicable law or agreed to in writing, software
11-
distributed under the License is distributed on an "AS IS" BASIS,
12-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
See the License for the specific language governing permissions and
14-
limitations under the License.
15-
}
16-
17-
program RDPCheck;
18-
19-
uses
20-
Forms,
21-
MainUnit in 'MainUnit.pas' {Frm};
22-
23-
{$R *.res}
24-
25-
begin
26-
Application.Initialize;
27-
Application.MainFormOnTaskbar := True;
28-
Application.Title := 'Local RDP Checker';
29-
Application.CreateForm(TFrm, Frm);
30-
Application.Run;
31-
end.
1+
{
2+
Copyright 2014 Stas'M Corp.
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
http://www.apache.org/licenses/LICENSE-2.0
7+
Unless required by applicable law or agreed to in writing, software
8+
distributed under the License is distributed on an "AS IS" BASIS,
9+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10+
See the License for the specific language governing permissions and
11+
limitations under the License.
12+
}
13+
program RDPCheck;
14+
uses
15+
Forms,
16+
MainUnit in 'MainUnit.pas' {Frm},
17+
Vcl.Themes,
18+
Vcl.Styles;
19+
20+
{$R *.res}
21+
begin
22+
Application.Initialize;
23+
Application.MainFormOnTaskbar := True;
24+
Application.Title := 'Local RDP Checker';
25+
Application.CreateForm(TFrm, Frm);
26+
Application.CreateForm(TFrm, Frm);
27+
Application.Run;
28+
end.

0 commit comments

Comments
 (0)