Check whether application is running from VB IDE or outside VB

I was looking for a one line code which can tell me if i am running my application from inside ide or from outside vb scope because i need to call some api calls which crash my vb ide if i run them from inside vb. i had seen many working code for this but i think this checking is best... please vote and comment for this code.....
Rate Check whether application is running from VB IDE or outside VB
(13(13 Vote))
Sub Main()
If App.LogMode = 0 Then
MsgBox "Inside IDE"
Else
MsgBox "Outside IDE"
End If
End Sub
Check whether application is running from VB IDE or outside VB Comments
No comments yet — be the first to post one!
Post a Comment