Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove ActiveX Warning Popup for rdpcheck #1107

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src-rdpcheck/MainUnit.dfm
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ object Frm: TFrm
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object RDP: TMsRdpClient2
object RDP: TMsRdpClient2NotSafeForScripting
Left = 0
Top = 0
Width = 640
Height = 480
Align = alClient
TabOrder = 0
OnDisconnected = RDPDisconnected
ControlData = {0003000008000200000000000B0000000B000000}
Expand Down
2 changes: 1 addition & 1 deletion src-rdpcheck/MainUnit.pas
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ interface

type
TFrm = class(TForm)
RDP: TMsRdpClient2;
RDP: TMsRdpClient2NotSafeForScripting;
procedure RDPDisconnected(ASender: TObject; discReason: Integer);
procedure FormCreate(Sender: TObject);
private
Expand Down