Ok I changed the DLL to an EXE and that helps. If I reference this from
another VB program it works great! But if I reference this from an ASP page I
get a 282 error. Here is the ASP page code that I'm using.
<% Option Explicit
Dim oGMUser 'Create an object for the component
Dim Username 'Create a string to hold the result
'Create an instance of the Component we just wrote
Set oGMUser = CreateObject("GMCurrentUser.GM_Class")
'Call the IsLeapYear function in our component, and
'store the result
UserName = oGMUser.GetUserID
'Close the instance, good programming practice
Set oGMUser = Nothing
%>
<HTML>
<HEAD>
<TITLE>Gm User</TITLE>
</HEAD>
<BODY>
<%
'Let the user know
Response.Write UserName
%>
</BODY>
</HTML>
> Ok I started this post in another thread but the topic I think should be
> placed here based on my current status.
[quoted text clipped - 35 lines]
>
> Again, nothing really fancy but yet I still get stumped.