Ask a Question related to ASP.NET General, Design and Development.
-
VB Programmer #1
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
-
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... -
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... -
does webform control equal to asp.net control?
If no, could you show me the differentia? thanks, ThxBruin -
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... -
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 -
Vidar Petursson #2
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



Reply With Quote

