Advertisement
2002VB Miscellaneous #23218

IsInIDE?

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

AI

สรุปโดย 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.

ซอร์สโค้ด
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
ความคิดเห็นดั้งเดิม (3)
กู้คืนจาก Wayback Machine