Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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
    5. 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...
  3. #2

    Default 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...
    > 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.
    >
    >

    Benjie Fallar Guest

  4. #3

    Default 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...
    > 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
    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

  5. #4

    Default 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...
    > 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...
    > > 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
    > want
    > > > to create an object in asp. it is no problem in win2000 by assignin
    the
    > > dll
    > > > to the component services COM+ applications.
    > > >
    > > >
    > >
    > >
    >
    >

    George Ter-Saakov Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139