|
-
Dec 13th, 1999, 07:44 AM
#1
Because ASP didn't support Format in VB, thus I build a active x dll so that ASP can use to call it. But after i build the dll I can't call it, can someone help it.
Thank first!
-
Dec 13th, 1999, 11:20 AM
#2
In order for ASP create an instance of your DLL, it has to reside on the server side.
------------------
Serge
Software Developer
[email protected]
[email protected]
ICQ#: 51055819
-
Dec 13th, 1999, 11:28 AM
#3
Guru
register the DLL on the server, then use
dim objMyDLL
dim varReturnVal
set objMyDLL = Server.CreateObject("MyDLL.MyClass")
varReturnVal=objMyDLL.DoSomething(Param1, Param2)
Response.Write varReturnVal
[This message has been edited by Clunietp (edited 12-13-1999).]
-
Dec 13th, 1999, 07:51 PM
#4
Lively Member
I have the same problem. How do I register the dll on the server? I'm using a server that's not mine (thunder.prohosting.com).
-
Dec 14th, 1999, 12:03 PM
#5
Q1
I can register the using regsvr32 in my pc but how can the dll can be used in the client side when the client open the page with the browser?
Q2
when I package the vb project and transfer to client pc, why it can't run. It only run when I install vb on the client pc. Wat dll need to include beside the dll for the project?
Thanks first and also for the answer.
-
Dec 14th, 1999, 12:12 PM
#6
Guru
Bart -- regsvr32.exe \\ComputerName\ShareName\FileName.dll
Dany --
Client will also need the VB Runtimes along with any dependancies that your DLL has otherwise
[This message has been edited by Clunietp (edited 12-14-1999).]
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
|