Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools


While determine whether the current program is running as interpreted or compiled code is relatively easy, determine whether an ActiveX DLL is serving an interpreted or compiled application is a bit more difficult. This information might be useful to disable or enable special features, or just to prevent from other programmers to reuse the code in your own DLL.

The following solution is based on the EnumThreadWindows API function. This API function enumerates all the windows that belong to a given thread, and the code below uses it to check whether there is a window of class "IDEOwner" in the same thread as the DLL. If this is the case, it means that the DLL is running in the same thread as the Visual Basic IDE, hence its client is an interpreted program.

This function doesn't check for other possible interpreted clients, but you can do that simply by checking for additional window class names in the EnumThreadWindows routine.

Click here to copy the following block
Private Declare Function EnumThreadWindows Lib "user32" (ByVal dwThreadId As _
  Long, ByVal lpfn As Long, ByVal lParam As Long) As Long
Private Declare Function GetClassName Lib "user32" Alias "GetClassNameA" (ByVal _
  hWnd As Long, ByVal lpClassName As String, ByVal nMaxCount As Long) As Long

' this variable is shared between the two routines below
Dim m_ClientIsInterpreted As Boolean

' return True if the client application of this DLL
' is an interpreted Visual Basic program running in the IDE
'
' NOTE: this code is meant to be inserted in a BAS module
'    inside an ActiveX DLL project

Function ClientIsInterpreted() As Boolean
  EnumThreadWindows App.ThreadID, AddressOf EnumThreadWindows_CBK, 0
  ClientIsInterpreted = m_ClientIsInterpreted
End Function

' this is a callback function that is executed for each
' window in the same thead as the DLL

Public Function EnumThreadWindows_CBK(ByVal hWnd As Long, _
  ByVal lParam As Long) As Boolean
  Dim buffer As String * 512
  Dim length As Long
  Dim windowClass As String

  ' get the class name of this window  
  length = GetClassName(hWnd, buffer, Len(buffer))
  windowClass = Left$(buffer, length)
  
  If windowClass = "IDEOwner" Then
    ' this is the main VB IDE window, therefore
    ' the client application is interpreted
    m_ClientIsInterpreted = True
    ' return False to stop evaluation
    EnumThreadWindows_CBK = False
  Else
    ' return True to continue enumeration
    EnumThreadWindows_CBK = True
  End If
End Function


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.