IsInIDE?
--IsInIDE()
--It'll return true if running in IDE
Original Author: TV2k.net
API Declarations
'none
Code
Public Function IsInIDE() As Boolean
'-----------------------------------
'- IsInIDE()
'-
'- It'll return true if running in IDE
'-
'- By T-Virus Creations
'- http://www.tvirusonline.be
'- email: tvirus4ever@yahoo.co.uk
'-
'-----------------------------------
'-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
Loading Comments ...
Comments
No comments have been added for this post.
You must be logged in to make a comment.