只有从 IDE 启动应用程序时,才能执行部分代码?
我想设置一个条件,如果应用程序是从 VS IDE 启动的,那么做一件事,但如果应用程序是从编译中手动启动的(从 Windows 资源管理器,单击已编译的应用程序等),然后做其他事情。
这个有可能?
像这样,但将#Debug更改为 (Unknown thing...) :
Public Class Form2
Private Sub Form2_Load(sender As Object, e As EventArgs) Handles MyBase.Load
#If DEBUG Then
Me.Location = New Point(Form1.Right, Form1.Top)
#Else
Dim BorderWidth = (Me.Width - Me.ClientSize.Width)
Me.Location = New Point((Form1.Location.X + (Form1.Width + BorderWidth)), Form1.Location.Y)
#End If
End Sub
End Class