|
-
Mar 12th, 2001, 08:48 PM
#1
Thread Starter
Lively Member
Here's the question:
I know that we need to register DLL's right? Well, the question is, do we need to manually register all the DLL's through (what's the command again?)? Is there no way to automatically register a DLL when it is distributed?
-
Mar 12th, 2001, 09:59 PM
#2
The command was regsvr32 c:\mydlls\mydll.dll
Umm, if you use packaging and deployment wizard it automatically registers them for you.
-
Mar 13th, 2001, 10:38 PM
#3
Thread Starter
Lively Member
not really an error
Why is it that when I am using either ActiveX DLL or ActiveX EXE, I don't really get an error but I get a delay wherein I get a dialog box saying that the DLL (or EXE) that I am running is busy. And I get two choices 'Switch To ...' and 'Retry' and when I 'press' 'Switch To ...' everything is just OK.
Why is this?
Is there any way to go 'around' this?
All I want to do is while testing is display a message and the other one is display a form. That's all!
-
Mar 14th, 2001, 12:50 AM
#4
Thread Starter
Lively Member
exact message
This is the exact message that I get
Title: Component Request Pending
An action cannot be completed because a component (whatever the DLL) is not responding. Choose "Switch To" to activate the component and correct the problem.
-
Mar 14th, 2001, 02:24 AM
#5
Do you want to post some code, that might help.
-
Mar 14th, 2001, 03:13 AM
#6
Thread Starter
Lively Member
just to give you an idea
-> the DLL (Test.DLL)
' in the DLL, I have a form (Form1) and a class module (Module1)
'Form1
'I have 1 command button for Form1
Private Sub Command1_Click
msgBox ("Hello World")
End Sub
'Module1
Public Sub Show
Form1.Show
End Sub
-> the EXE Project
'I have 1 form ProjForm and 1 command button CommandProj
Private Sub CommandProj_Click
Dim Message As New Test.Module1
Message.Show
End Sub
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
|