Ask a Question related to ASP.NET General, Design and Development.
-
Alan Kosmonov #1
Activex dll
how do we register an activex dll in win98? is regsvr32 sufficient? I want
to create an object in asp. it is no problem in win2000 by assignin the dll
to the component services COM+ applications.
Alan Kosmonov Guest
-
ActiveX
I am have trouble making the internet keys on my keyboard to work, it tells me to activate ActiveX but I have already gone into... -
ActiveX??
So I designed an HTML e-mail for my work http://www.hookweb.net/testing/devotional.htm But aparently there are people who receive the e-mail that... -
Help for ActiveX (2)
Hi YanHong, I was very busy in the last days with other business problems, but now I'm ready to solve the problem about ActiveX control and the... -
ActiveX on Mac OSX
Does the Active X xtra come with Director MX for Mac? The trial version did not have it and I need it to access web pages within my program. thanks -
Help for ActiveX
I have created an ActiveX control for use on a web application for an intranet. Do I still have to pay for a Certification Authority to sign my... -
Benjie Fallar #2
Re: Activex dll
as long as it complies to COM specs, yes! you can use REGSVR32.exe to
register a ActiveX DLL
"Alan Kosmonov" <sen_ersen@hotmail.com> wrote in message
news:O8$joPrRDHA.3132@tk2msftngp13.phx.gbl...dll> how do we register an activex dll in win98? is regsvr32 sufficient? I want
> to create an object in asp. it is no problem in win2000 by assignin the> to the component services COM+ applications.
>
>
Benjie Fallar Guest
-
Alan Kosmonov #3
Re: Activex dll
is this the only way in win98?
is it possible then to write?
set obj= Server.CreateObject("mypackage.myclass")
in win2000 or winXP when i register the dll only with regsvr32 it cannot
create the object?
"Benjie Fallar" <bfallar@wizardsgroup.com> wrote in message
news:uPtLLTrRDHA.1720@TK2MSFTNGP10.phx.gbl...want> as long as it complies to COM specs, yes! you can use REGSVR32.exe to
> register a ActiveX DLL
>
> "Alan Kosmonov" <sen_ersen@hotmail.com> wrote in message
> news:O8$joPrRDHA.3132@tk2msftngp13.phx.gbl...> > how do we register an activex dll in win98? is regsvr32 sufficient? I> dll> > to create an object in asp. it is no problem in win2000 by assignin the>> > to the component services COM+ applications.
> >
> >
>
Alan Kosmonov Guest
-
George Ter-Saakov #4
Re: Activex dll
1.The term "register dll" means "to put correct phrases into registry".
You can do it manually but usually DLL does it itself by exporting
DllRegisterServer.
Regsvr32 loads DLL into memory then it locates DllRegisterServer and calls
it.
So it's hard to answer the question is it the onyl way or not.
2. regsvr32 works fine for win2000 and winXP. I think you have a security
problem. Because both systems usually have NTFS with security in place. And
IIS account might not have permission to read the folder and load DLL into
their memory space.
So you have to give IIS account rights to read the DLL file.
George.
"Alan Kosmonov" <sen_ersen@hotmail.com> wrote in message
news:%23zs50XrRDHA.704@tk2msftngp13.phx.gbl...the> is this the only way in win98?
> is it possible then to write?
> set obj= Server.CreateObject("mypackage.myclass")
>
> in win2000 or winXP when i register the dll only with regsvr32 it cannot
> create the object?
>
>
> "Benjie Fallar" <bfallar@wizardsgroup.com> wrote in message
> news:uPtLLTrRDHA.1720@TK2MSFTNGP10.phx.gbl...> want> > as long as it complies to COM specs, yes! you can use REGSVR32.exe to
> > register a ActiveX DLL
> >
> > "Alan Kosmonov" <sen_ersen@hotmail.com> wrote in message
> > news:O8$joPrRDHA.3132@tk2msftngp13.phx.gbl...> > > how do we register an activex dll in win98? is regsvr32 sufficient? I> > > to create an object in asp. it is no problem in win2000 by assignin>> > dll> >> > > to the component services COM+ applications.
> > >
> > >
> >
>
George Ter-Saakov Guest



Reply With Quote

