IsInIDE?
--IsInIDE()
--It'll return true if running in IDE
API Declarations
'none
Rate IsInIDE?
(4(4 Vote))
Public Function IsInIDE() As Boolean
'-----------------------------------
'- IsInIDE()
'-
'- It'll return true if running in IDE
'-
'- By T-Virus Creations
'- http://www.tvirusonline.be
'- email: [email protected]
'-
'-----------------------------------
'-TESTED: In VB6.0 SP5
'-----------------------------------
Dim x As Long
On Error Resume Next
x = VB.App.LogMode()
If x = 1 Then IsInIDE = False Else IsInIDE = True
End Function
IsInIDE? Comments
No comments yet — be the first to post one!
Post a Comment