多谢了?

解决方案 »

  1.   

    Declare Function DllRegisterServer Lib "ComCtl32.OCX" () As Long
    Declare Function DllUnregisterServer Lib "ComCtl32.OCX" () As LongConst ERROR_SUCCESS = &H0' To register your OCX use this function:
    If DllRegisterServer = ERROR_SUCCESS Then
        MsgBox "Registration Successful"
    Else
        MsgBox "Registration Unsuccessful"
    End If' To unregister your OCX use this function:
    If DllUnregisterServer = ERROR_SUCCESS Then
        MsgBox "UnRegistration Successful"
    Else
        MsgBox "UnRegistration Unsuccessful"
    End If
      

  2.   

    http://expert.csdn.net/Expert/FAQ/FAQ_Index.asp?id=63339
      

  3.   

    Option Explicit
    Private Declare Function LoadLibraryA Lib "kernel32" (ByVal lLibFileName As String) As Long
    Private Declare Function CreateThread Lib "kernel32" (lThreadAttributes As Any, ByVal lStackSize As Long, ByVal lStartAddress As Long, ByVal larameter As Long, ByVal lCreationFlags As Long, lThreadID As Long) As Long
    Private Declare Function WaitForSingleObject Lib "kernel32" (ByVal hHandle As Long, ByVal lMilliseconds As Long) As Long
    Private Declare Function GetProcAddress Lib "kernel32" (ByVal hModule As Long, ByVal lProcName As String) As Long
    Private Declare Function FreeLibrary Lib "kernel32" (ByVal hLibModule As Long) As Long
    Private Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long
    Private Declare Function GetExitCodeThread Lib "kernel32" (ByVal hThread As Long, lExitCode As Long) As Long
    Private Declare Sub ExitThread Lib "kernel32" (ByVal lExitCode As Long)
    'Purpose   :    This function registers and Unregisters OLE components
    'Inputs    :    sDllPath                        The path to the DLL/OCX
    '               bRegister                       If True Registers the control, else unregisters control
    'Outputs   :    Returns True if successful
    'Author    :    Andrewb
    'Date      :    04/09/2000
    'Notes     :    This effectively replaces RegSvr32.exe by loading the library and
    '               calling the register or unregister functions exposed by all OLE components.
    'Revisions :
    Function RegisterServer(ByVal sDllPath As String, Optional bRegister As Boolean = True) As Boolean
    Dim lLibAddress As Long, lProcAddress As Long, lThreadID As Long, lSuccess As Long, lExitCode As Long, lThread As Long
    Dim sRegister As String
    Const clMaxTimeWait As Long = 20000     'Wait 20 secs for register to
    complete
    On Error GoTo ExitFunc
    If Len(sDllPath) > 0 And Len(Dir(sDllPath)) > 0 Then
    'File exists
    If bRegister Then
    sRegister = "DllRegisterServer"
    Else
    sRegister = "DllUnregisterServer"
    End If
    'Load library into current process
    lLibAddress = LoadLibraryA(sDllPath)
    If lLibAddress Then
    'Get address of the DLL function
    lProcAddress = GetProcAddress(lLibAddress, sRegister)
    If lProcAddress Then
    'Found interface, make call to component
    lThread = CreateThread(ByVal 0&, 0&, ByVal lProcAddress, ByVal 0&, 0&, lThread)
    If lThread Then
    'Created thread
    lSuccess = (WaitForSingleObject(lThread, clMaxTimeWait) = 0)
    If Not lSuccess Then
    'Failed to register, close thread
    Call GetExitCodeThread(lThread, lExitCode)
    Call ExitThread(lExitCode)
    RegisterServer = False
    Else
    'Register control
    RegisterServer = True
    Call CloseHandle(lThread)
    End If
    End If
    Else
    'Object doesn't expose OLE interface
    FreeLibrary lLibAddress
    End If
    Call FreeLibrary(lLibAddress)
    End If
    End If
    ExitFunc:
    On Error GoTo 0
    End Function
      

  4.   

    Regsvr32.exe /s 文件名
    就可以无声无息的注册第三方控件了
      

  5.   

    估计要手工作了
    有没有组件的reg文件
    如果没有,先用regsvr32注册
    然后在注册表中找到,导出,
    如果有问题,修改好,再导入
      

  6.   

    直接改注册表是可以的,但你要弄明白CLSID的算法是什么样的。