Advertisement
2002ASP Miscellaneous #6010

IsInIDE?

--IsInIDE() --It'll return true if running in IDE

AI

Riepilogo AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Codice sorgente
original-source
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
Commenti originali (3)
Recuperato da Wayback Machine