HELP: ActiveX Control on webform

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

  1. #1

    Default HELP: ActiveX Control on webform

    I am going to use an ActiveX control on my webform.

    1. How can I set it up so that if a user views the web page and doesn't
    have the ActiveX control it immediately/automatically downloads it from a
    predefined location?

    2. How do I handle registering it on their machine (with 'regsvr32'?), or
    do I even need to do this? (This ActiveX control is an unmanaged,
    non-server control.)

    Thanks,
    Robert


    VB Programmer Guest

  2. Similar Questions and Discussions

    1. Help: ASP.NET Webform using VB.NET User Control
      I created a VB.NET user control which uses a nonmanaged ActiveX control. I built it as 'mycontrol.dll'. In my ASP.NET webform I'm trying to add...
    2. How do I make my control show up in the webform?
      I built my control. It shows up and works at runtime. But at design time, it does not show up on the page. How do I make it show on the page at...
    3. does webform control equal to asp.net control?
      If no, could you show me the differentia? thanks, ThxBruin
    4. image webform control
      I am trying to adjust the size of an image web control but if I try to say myimage.height = 200 it says that an integer cannot be converted to a...
    5. Including WebForm Image Control in a Webform Table Control
      What is the code for including an image control in a Table control of a WebForm ???? regards
  3. #2

    Default Re: ActiveX Control on webform

    Hi


    Make an internet install CAB file and reference the CAB file with the
    CODEBASE tag in your OBJECT tag

    The CAB file should contain a setup program for the control that installs
    the control/registers it in the system registry

    <OBJECT ID="myControl" CLASSID="CLSID:whatever"
    CODEBASE="http://WHERE.com/MYCONTROL">
    ......

    --
    Best Regards
    Vidar Petursson
    ==============================
    Microsoft Internet Client & Controls MVP
    ==============================
    "VB Programmer" <growNO-SPAM@go-intech.com> wrote in message
    news:OZiVlKVRDHA.3796@tk2msftngp13.phx.gbl...
    > I am going to use an ActiveX control on my webform.
    >
    > 1. How can I set it up so that if a user views the web page and doesn't
    > have the ActiveX control it immediately/automatically downloads it from a
    > predefined location?
    >
    > 2. How do I handle registering it on their machine (with 'regsvr32'?), or
    > do I even need to do this? (This ActiveX control is an unmanaged,
    > non-server control.)
    >
    > Thanks,
    > Robert
    >
    >

    Vidar Petursson 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