I've placed a DLL into a folder on a website. The DLL is an
ActiveXDLL I've downloaded from PSCODE.
The code on the page is currently:
<%@ Language="VBScript" %>
<head>
<title>Test Page</title>
</head>
<html>
<%
Dim x
Set x = CreateObject("ProperCaseName.clsName")
%>
</html>
The DLL has two public strings, FirstName and LastName.
It has one public subroutine, EnterName which presents
two InputBoxes which ask for the FirstName and LastName.
The file is located at:
http://www.microcosmotalk.com/test.asp
and the dll is located at the same location.
The source code for that file is found at:
http://www.pscode.com/vb/scripts/ShowCode.asp?txtCodeId=45194&lngWId=1
It's VB code that creates an ActiveX DLL. The DLL is
located at:
http://www.microcosmotalk.com/ProperCaseName.dll
I can see a couple problems:
1) The file is not registered on the webserver.
2) I don't know how to create/use an API call within .ASP.
3) I don't know how to register the file on the webserver. I guess
it's possible, but I don't have a clue. If I can't get the DLL to work
I'm going to have to figure out some other way to make something
to track the number of software items in use.
Thanks for your response, Mike. Thanks in advance to any more
replies that come through.