|
-
Jun 12th, 2000, 04:12 AM
#1
Thread Starter
transcendental analytic
Or do I have to shell REGSVR32.EXE?
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Jun 12th, 2000, 05:26 AM
#2
Guru
I believe you can do this:
Private Declare Function DllRegisterServer() lib "MyDll.Dll" as long
then just call it like any other API...
-
Jun 12th, 2000, 06:40 AM
#3
Thread Starter
transcendental analytic
How about the unregistering part?
I got it work with regsrvr32, by using /S flag i could remove the popup message, so i guess if all people have regsrvr32 on their computer it's ok.
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Jun 12th, 2000, 07:51 AM
#4
PowerPoster
DllUnregisterServer
To Unregister a DLL/OCX
Code:
Option Explicit
Private Declare Function DllUnregisterServer Lib "MyDll.Dll" () As Long
Const ERROR_SUCCESS = &H0
Private Sub Form_Load()
If DllUnregisterServer = ERROR_SUCCESS Then
MsgBox "UnRegistration Successful"
Else
MsgBox "UnRegistration Unsuccessful"
End If
End Sub
-
Jun 12th, 2000, 07:58 AM
#5
Thread Starter
transcendental analytic
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|