Ask a Question related to ASP.NET General, Design and Development.
-
Jerry III #1
Re: Inserting ActiveX
With an <object> tag. Where to put it and how to use it depends on what
exactly you're doing.
Jerry
"Mircea Pleteriu" <mpleteriu@asp-gmbh.de> wrote in message
news:OzC%23nilWDHA.1492@TK2MSFTNGP12.phx.gbl...> How to insert on my aspx page an ActiveX control developed with VB6?
>
>
Jerry III 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 -
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... -
Mircea Pleteriu #2
Re: Inserting ActiveX
Thanks.
Please let me know how to create an instance of
object in code behind.
"Jerry III" <jerryiii@hotmail.com> wrote in message
news:OPS1AHmWDHA.1896@TK2MSFTNGP12.phx.gbl...> With an <object> tag. Where to put it and how to use it depends on what
> exactly you're doing.
>
> Jerry
>
> "Mircea Pleteriu" <mpleteriu@asp-gmbh.de> wrote in message
> news:OzC%23nilWDHA.1492@TK2MSFTNGP12.phx.gbl...>> > How to insert on my aspx page an ActiveX control developed with VB6?
> >
> >
>
Mircea Pleteriu Guest
-
Mircea Pleteriu #3
Re: Inserting ActiveX
How to access it from code behind?
"Jerry III" <jerryiii@hotmail.com> wrote in message
news:OPS1AHmWDHA.1896@TK2MSFTNGP12.phx.gbl...> With an <object> tag. Where to put it and how to use it depends on what
> exactly you're doing.
>
> Jerry
>
> "Mircea Pleteriu" <mpleteriu@asp-gmbh.de> wrote in message
> news:OzC%23nilWDHA.1492@TK2MSFTNGP12.phx.gbl...>> > How to insert on my aspx page an ActiveX control developed with VB6?
> >
> >
>
Mircea Pleteriu Guest
-
Jerry III #4
Re: Inserting ActiveX
Oh, you meant how to use it in the server side code. That's a lot easier,
you need to create an interop assembly with tlbimp.exe and then simply use
that assembly in your project. There are some issues with data types, search
your documentation for COM interop, exposing COM components.
Jerry
"Mircea Pleteriu" <mpleteriu@asp-gmbh.de> wrote in message
news:eCh49OmWDHA.1480@tk2msftngp13.phx.gbl...> Thanks.
> Please let me know how to create an instance of
> object in code behind.
>
>
> "Jerry III" <jerryiii@hotmail.com> wrote in message
> news:OPS1AHmWDHA.1896@TK2MSFTNGP12.phx.gbl...>> > With an <object> tag. Where to put it and how to use it depends on what
> > exactly you're doing.
> >
> > Jerry
> >
> > "Mircea Pleteriu" <mpleteriu@asp-gmbh.de> wrote in message
> > news:OzC%23nilWDHA.1492@TK2MSFTNGP12.phx.gbl...> >> > > How to insert on my aspx page an ActiveX control developed with VB6?
> > >
> > >
> >
>
Jerry III Guest
-
Jerry III #5
Re: Inserting ActiveX
You use it by giving the object tag an id. Then a variable with that name
will be exposed to your client side scripts. You use it just like any other
client side objects. Find a page that embeds Windows Media Player and take a
look at the source to see how it's done.
Jerry
"mazza" <mazza@doobry.com> wrote in message
news:eq%23u6H3WDHA.1384@TK2MSFTNGP10.phx.gbl...> Hi Jerry,
>
> I also had a similar question. I'm using the VS.NET 2003 IDE to insert
> an ActiveX control onto my toolbox and from there I'm able to drop it
> into my page - no problem (I also see the <OBJECT> tag in the HTML
> view). But once it's dropped onto my page (Web Form), I'm expecting to
> be able to use it like I do in Windows Forms, i.e., give it a Name in
> the 'Properties' window, access its methods/properties and get a
> pick-list of its events in the code window. However, I notice that the
> properties exposed on the Property page when the component is dropped
> onto an ASP.NET page are very different from what we see in a Windows
> Form (e.g., I see name, progid, classid, etc.). The component name was
> not generated with a leading "Ax" prefix, etc. as in the Windows Forms
> case.
>
> What do I need to do to use the component from an ASP.NET web page?
>
> Any help will be appreciated.
>
> Thanks!
>
> Mazza.
>
> "Jerry III" <jerryiii@hotmail.com> wrote in message
> news:eZW8LnpWDHA.1512@TK2MSFTNGP11.phx.gbl...
> Oh, you meant how to use it in the server side code. That's a lot
> easier,
> you need to create an interop assembly with tlbimp.exe and then simply
> use
> that assembly in your project. There are some issues with data types,
> search
> your documentation for COM interop, exposing COM components.
>
> Jerry
>
> "Mircea Pleteriu" <mpleteriu@asp-gmbh.de> wrote in message
> news:eCh49OmWDHA.1480@tk2msftngp13.phx.gbl...> what> > Thanks.
> > Please let me know how to create an instance of
> > object in code behind.
> >
> >
> > "Jerry III" <jerryiii@hotmail.com> wrote in message
> > news:OPS1AHmWDHA.1896@TK2MSFTNGP12.phx.gbl...> > > With an <object> tag. Where to put it and how to use it depends on> VB6?> > > exactly you're doing.
> > >
> > > Jerry
> > >
> > > "Mircea Pleteriu" <mpleteriu@asp-gmbh.de> wrote in message
> > > news:OzC%23nilWDHA.1492@TK2MSFTNGP12.phx.gbl...
> > > > How to insert on my aspx page an ActiveX control developed with>> >> > > >
> > > >
> > >
> > >
> >
>
>
Jerry III Guest



Reply With Quote

