0

我正在使用 VS 2017 在 VB.Net 中制作一个非常简单的应用程序。

添加代码以使用消息框获取用户响应后,当我运行应用程序时,卡巴斯基反病毒软件将应用程序视为恶意软件并删除“.exe”文件。

Dim intResponse1 As Integer = MsgBox("Strip Metadata from selected image?" & vbCr & vbCr & "Warning this cannot be undone!", vbExclamation + vbYesNo, "Strip Metadata")

如果我“REM”与 msgbox 关联的代码行,它可以正常工作吗?

启动应用程序时会出现这种情况?同样的情况也发生在 VS2015 中。

有没有其他人有这个问题?

我正在运行 WIN10x64 build 16299,卡巴斯基 170.0.0.611。我的 VS 2017 是 15.5.6

谢谢

4

1 回答 1

0

如果您将 VB6 代码更改为 VB.NET 等效代码,您还有问题吗?

Dim Response1 As DialogResult = MessageBox.Show("Strip Metadata from selected image?" & Environment.NewLine & Environment.NewLine & "Warning this cannot be undone!", "Strip Metadata", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation)
于 2018-02-12T01:00:14.513 回答