These calls are never executed in PB9.
I have used a messagebox.
I have the same crash now.
For registering (not an issue yet) i have used this:
I am pretty tired of this excel mess, will go on though..
I have used a messagebox.
I have the same crash now.
For registering (not an issue yet) i have used this:
Code:
Local T As String Local szKey As Asciiz * %MAX_PATH Local lResult As Long Select Case fwdReason Case %DLL_PROCESS_ATTACH ghInstance = hInstance ' We don't need to do any thread initialization DisableThreadLibraryCalls hInstance Case %DLL_THREAD_ATTACH Case %DLL_PROCESS_DETACH T = VD_Registry_ReadStr( %HKEY_CLASSES_ROOT, "CLSABABAB\CLSID", "", "" ) 'MsgBox "'" & T & "'" If Len( T ) Then szKey = "CLSID\" lstrcat szKey, GuidTxt$($CLSID_CEXCELADDINPB) If VD_Registry_Exist( %HKEY_CLASSES_ROOT, szKey & "\Programmable", "" ) = 0 Then DllRegisterServer2() End If Else DllUnregisterServer2() End If Case %DLL_THREAD_DETACH End Select Function = 1
Comment