473,804 Members | 3,712 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Accessing HTML embeded objects with Internet Explorer ActiveX...

Hi all,
I'm using .NET v1.1 and the scenario I have is as follows...

I have IE as an ActiveX control embedded in may C# App.
I generate a HTML file dynamically and within the HTML file I embed a
Flash, powerpoint presentation or movie file similar to ...
<object id="globalnav-object"
classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macrom edia.com/pub/shockwave/cabs/flash/swflash.cab#ver sion=6,0,0,0"
width="756" height="88">
<param name="movie"
value="/swf/globalnav/globalnav_en_us .swf?fpReqMinor =79" />
<param name="FlashVars "
value="loc=en_U S&htmlApp=false &gatewayURL=gwu rl" />
<param name="bgcolor" value="#c6cfd0" />
<param name="menu" value="false" />

<param name="quality" value="high" />
<param name="salign" value="tl" />
<param name="scale" value="noscale" />
<embed id="globalnav-embed"
src="/swf/globalnav/globalnav_en_us .swf?fpReqMinor =79"
type="applicati on/x-shockwave-flash"
pluginspage="ht tp://www.macromedia. com/go/getflashplayer"
flashvars="loc= en_US&htmlApp=f alse&gatewayURL =gwurl" bgcolor="#c6cfd 0"
menu="false" quality="high" salign="tl" scale="noscale" width="756"
height="88"></embed>
</object>

I then save this HTML file to the HD and then get my C# embeded IE
browser to navigate to the new HTML file to display it to the user.
This is all fine and working.

From my C# App, how can I know when the user has pressed play on
either the Flash or MediaPlayer movie and also how can I tell when the
movie has finished playing, either by the user pressing Stop or if the
movie reaches the end?

I would like to be able to generate two C# events, one which is
fired when the Flash/Movie in the HTML file starts and also one when it
finishs. Is this possible and if so how? Would MSHTML be usefull for this,
again if so how?

Any links/advice/example code appreciated.
Dec 5 '05 #1
6 2607
Dominique,

That's going to be hard to do. You will have to find out which object
it is exactly (using the class id, most likely), and then find out the
specific events based on that.

I would recommend standardizing the format and the player you are going
to use, this way, you can be sure to detect when the movie ends (instead of
trying to determine this from arbitrary players).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Dominique" <Do*******@disc ussions.microso ft.com> wrote in message
news:48******** *************** ***********@mic rosoft.com...
Hi all,
I'm using .NET v1.1 and the scenario I have is as follows...

I have IE as an ActiveX control embedded in may C# App.
I generate a HTML file dynamically and within the HTML file I embed a
Flash, powerpoint presentation or movie file similar to ...
<object id="globalnav-object"
classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macrom edia.com/pub/shockwave/cabs/flash/swflash.cab#ver sion=6,0,0,0"
width="756" height="88">
<param name="movie"
value="/swf/globalnav/globalnav_en_us .swf?fpReqMinor =79" />
<param name="FlashVars "
value="loc=en_U S&htmlApp=false &gatewayURL=gwu rl" />
<param name="bgcolor" value="#c6cfd0" />
<param name="menu" value="false" />

<param name="quality" value="high" />
<param name="salign" value="tl" />
<param name="scale" value="noscale" />
<embed id="globalnav-embed"
src="/swf/globalnav/globalnav_en_us .swf?fpReqMinor =79"
type="applicati on/x-shockwave-flash"
pluginspage="ht tp://www.macromedia. com/go/getflashplayer"
flashvars="loc= en_US&htmlApp=f alse&gatewayURL =gwurl" bgcolor="#c6cfd 0"
menu="false" quality="high" salign="tl" scale="noscale" width="756"
height="88"></embed>
</object>

I then save this HTML file to the HD and then get my C# embeded IE
browser to navigate to the new HTML file to display it to the user.
This is all fine and working.

From my C# App, how can I know when the user has pressed play on
either the Flash or MediaPlayer movie and also how can I tell when the
movie has finished playing, either by the user pressing Stop or if the
movie reaches the end?

I would like to be able to generate two C# events, one which is
fired when the Flash/Movie in the HTML file starts and also one when it
finishs. Is this possible and if so how? Would MSHTML be usefull for this,
again if so how?

Any links/advice/example code appreciated.

Dec 5 '05 #2
Hi Nicholas,
Thanks for your reply. Are you suggesting I use MSHTML or some other
method?
I quite new to this whole embed IE thing, so need a little bit more direction.

Thanks.

"Nicholas Paldino [.NET/C# MVP]" wrote:
Dominique,

That's going to be hard to do. You will have to find out which object
it is exactly (using the class id, most likely), and then find out the
specific events based on that.

I would recommend standardizing the format and the player you are going
to use, this way, you can be sure to detect when the movie ends (instead of
trying to determine this from arbitrary players).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Dominique" <Do*******@disc ussions.microso ft.com> wrote in message
news:48******** *************** ***********@mic rosoft.com...
Hi all,
I'm using .NET v1.1 and the scenario I have is as follows...

I have IE as an ActiveX control embedded in may C# App.
I generate a HTML file dynamically and within the HTML file I embed a
Flash, powerpoint presentation or movie file similar to ...
<object id="globalnav-object"
classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macrom edia.com/pub/shockwave/cabs/flash/swflash.cab#ver sion=6,0,0,0"
width="756" height="88">
<param name="movie"
value="/swf/globalnav/globalnav_en_us .swf?fpReqMinor =79" />
<param name="FlashVars "
value="loc=en_U S&htmlApp=false &gatewayURL=gwu rl" />
<param name="bgcolor" value="#c6cfd0" />
<param name="menu" value="false" />

<param name="quality" value="high" />
<param name="salign" value="tl" />
<param name="scale" value="noscale" />
<embed id="globalnav-embed"
src="/swf/globalnav/globalnav_en_us .swf?fpReqMinor =79"
type="applicati on/x-shockwave-flash"
pluginspage="ht tp://www.macromedia. com/go/getflashplayer"
flashvars="loc= en_US&htmlApp=f alse&gatewayURL =gwurl" bgcolor="#c6cfd 0"
menu="false" quality="high" salign="tl" scale="noscale" width="756"
height="88"></embed>
</object>

I then save this HTML file to the HD and then get my C# embeded IE
browser to navigate to the new HTML file to display it to the user.
This is all fine and working.

From my C# App, how can I know when the user has pressed play on
either the Flash or MediaPlayer movie and also how can I tell when the
movie has finished playing, either by the user pressing Stop or if the
movie reaches the end?

I would like to be able to generate two C# events, one which is
fired when the Flash/Movie in the HTML file starts and also one when it
finishs. Is this possible and if so how? Would MSHTML be usefull for this,
again if so how?

Any links/advice/example code appreciated.


Dec 5 '05 #3
Dominique,

No, I'm recommending that in your page you standardize the movie format,
so that the player is always the same. Different formats are going to use
different players, and getting notification that a movie stopped for all of
them is going to be a pain.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Dominique" <Do*******@disc ussions.microso ft.com> wrote in message
news:2E******** *************** ***********@mic rosoft.com...
Hi Nicholas,
Thanks for your reply. Are you suggesting I use MSHTML or some other
method?
I quite new to this whole embed IE thing, so need a little bit more
direction.

Thanks.

"Nicholas Paldino [.NET/C# MVP]" wrote:
Dominique,

That's going to be hard to do. You will have to find out which
object
it is exactly (using the class id, most likely), and then find out the
specific events based on that.

I would recommend standardizing the format and the player you are
going
to use, this way, you can be sure to detect when the movie ends (instead
of
trying to determine this from arbitrary players).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Dominique" <Do*******@disc ussions.microso ft.com> wrote in message
news:48******** *************** ***********@mic rosoft.com...
> Hi all,
> I'm using .NET v1.1 and the scenario I have is as follows...
>
> I have IE as an ActiveX control embedded in may C# App.
> I generate a HTML file dynamically and within the HTML file I embed a
> Flash, powerpoint presentation or movie file similar to ...
> <object id="globalnav-object"
> classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000"
> codebase="http://download.macrom edia.com/pub/shockwave/cabs/flash/swflash.cab#ver sion=6,0,0,0"
> width="756" height="88">
> <param name="movie"
> value="/swf/globalnav/globalnav_en_us .swf?fpReqMinor =79" />
> <param name="FlashVars "
> value="loc=en_U S&htmlApp=false &gatewayURL=gwu rl" />
> <param name="bgcolor" value="#c6cfd0" />
> <param name="menu" value="false" />
>
> <param name="quality" value="high" />
> <param name="salign" value="tl" />
> <param name="scale" value="noscale" />
> <embed id="globalnav-embed"
> src="/swf/globalnav/globalnav_en_us .swf?fpReqMinor =79"
> type="applicati on/x-shockwave-flash"
> pluginspage="ht tp://www.macromedia. com/go/getflashplayer"
> flashvars="loc= en_US&htmlApp=f alse&gatewayURL =gwurl" bgcolor="#c6cfd 0"
> menu="false" quality="high" salign="tl" scale="noscale" width="756"
> height="88"></embed>
> </object>
>
> I then save this HTML file to the HD and then get my C# embeded IE
> browser to navigate to the new HTML file to display it to the user.
> This is all fine and working.
>
> From my C# App, how can I know when the user has pressed play on
> either the Flash or MediaPlayer movie and also how can I tell when the
> movie has finished playing, either by the user pressing Stop or if the
> movie reaches the end?
>
> I would like to be able to generate two C# events, one which is
> fired when the Flash/Movie in the HTML file starts and also one when it
> finishs. Is this possible and if so how? Would MSHTML be usefull for
> this,
> again if so how?
>
> Any links/advice/example code appreciated.


Dec 5 '05 #4
Nicholas,
Since I am controlling how the HTML is generated, I also know what file (
flash, wmv etc ) is being embeded into the HTML file. Thus I thought of
having different HTML templates for the formats I plan to support ( Flash,
wmv, mov etc ). Since I will know the file extention I should be able to
create separte code paths which are specific for each file format. I plan to
create an abstract MediaPlayer class and then have wrappers for each format's
play, stop and finish, but the problem I have is actually hooking into the
Flash, Media Player or QuickTime respective events.

Or am I missing the point?

Thanks.
"Nicholas Paldino [.NET/C# MVP]" wrote:
Dominique,

No, I'm recommending that in your page you standardize the movie format,
so that the player is always the same. Different formats are going to use
different players, and getting notification that a movie stopped for all of
them is going to be a pain.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Dominique" <Do*******@disc ussions.microso ft.com> wrote in message
news:2E******** *************** ***********@mic rosoft.com...
Hi Nicholas,
Thanks for your reply. Are you suggesting I use MSHTML or some other
method?
I quite new to this whole embed IE thing, so need a little bit more
direction.

Thanks.

"Nicholas Paldino [.NET/C# MVP]" wrote:
Dominique,

That's going to be hard to do. You will have to find out which
object
it is exactly (using the class id, most likely), and then find out the
specific events based on that.

I would recommend standardizing the format and the player you are
going
to use, this way, you can be sure to detect when the movie ends (instead
of
trying to determine this from arbitrary players).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Dominique" <Do*******@disc ussions.microso ft.com> wrote in message
news:48******** *************** ***********@mic rosoft.com...
> Hi all,
> I'm using .NET v1.1 and the scenario I have is as follows...
>
> I have IE as an ActiveX control embedded in may C# App.
> I generate a HTML file dynamically and within the HTML file I embed a
> Flash, powerpoint presentation or movie file similar to ...
> <object id="globalnav-object"
> classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000"
> codebase="http://download.macrom edia.com/pub/shockwave/cabs/flash/swflash.cab#ver sion=6,0,0,0"
> width="756" height="88">
> <param name="movie"
> value="/swf/globalnav/globalnav_en_us .swf?fpReqMinor =79" />
> <param name="FlashVars "
> value="loc=en_U S&htmlApp=false &gatewayURL=gwu rl" />
> <param name="bgcolor" value="#c6cfd0" />
> <param name="menu" value="false" />
>
> <param name="quality" value="high" />
> <param name="salign" value="tl" />
> <param name="scale" value="noscale" />
> <embed id="globalnav-embed"
> src="/swf/globalnav/globalnav_en_us .swf?fpReqMinor =79"
> type="applicati on/x-shockwave-flash"
> pluginspage="ht tp://www.macromedia. com/go/getflashplayer"
> flashvars="loc= en_US&htmlApp=f alse&gatewayURL =gwurl" bgcolor="#c6cfd 0"
> menu="false" quality="high" salign="tl" scale="noscale" width="756"
> height="88"></embed>
> </object>
>
> I then save this HTML file to the HD and then get my C# embeded IE
> browser to navigate to the new HTML file to display it to the user.
> This is all fine and working.
>
> From my C# App, how can I know when the user has pressed play on
> either the Flash or MediaPlayer movie and also how can I tell when the
> movie has finished playing, either by the user pressing Stop or if the
> movie reaches the end?
>
> I would like to be able to generate two C# events, one which is
> fired when the Flash/Movie in the HTML file starts and also one when it
> finishs. Is this possible and if so how? Would MSHTML be usefull for
> this,
> again if so how?
>
> Any links/advice/example code appreciated.


Dec 5 '05 #5
Dominique,

If you HAD to support all of those formats, then having an abstract
class will be the way you want to go. The thing is, not all of those
players will offer you the event to indicate when the movie is done (it's
not guaranteed they will). What I am saying is convert all the files to
say, an AVI format, and force them to use windows media player embedded in
the page (for example).
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Dominique" <Do*******@disc ussions.microso ft.com> wrote in message
news:60******** *************** ***********@mic rosoft.com...
Nicholas,
Since I am controlling how the HTML is generated, I also know what file (
flash, wmv etc ) is being embeded into the HTML file. Thus I thought of
having different HTML templates for the formats I plan to support ( Flash,
wmv, mov etc ). Since I will know the file extention I should be able to
create separte code paths which are specific for each file format. I plan
to
create an abstract MediaPlayer class and then have wrappers for each
format's
play, stop and finish, but the problem I have is actually hooking into the
Flash, Media Player or QuickTime respective events.

Or am I missing the point?

Thanks.
"Nicholas Paldino [.NET/C# MVP]" wrote:
Dominique,

No, I'm recommending that in your page you standardize the movie
format,
so that the player is always the same. Different formats are going to
use
different players, and getting notification that a movie stopped for all
of
them is going to be a pain.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Dominique" <Do*******@disc ussions.microso ft.com> wrote in message
news:2E******** *************** ***********@mic rosoft.com...
> Hi Nicholas,
> Thanks for your reply. Are you suggesting I use MSHTML or some other
> method?
> I quite new to this whole embed IE thing, so need a little bit more
> direction.
>
> Thanks.
>
> "Nicholas Paldino [.NET/C# MVP]" wrote:
>
>> Dominique,
>>
>> That's going to be hard to do. You will have to find out which
>> object
>> it is exactly (using the class id, most likely), and then find out the
>> specific events based on that.
>>
>> I would recommend standardizing the format and the player you are
>> going
>> to use, this way, you can be sure to detect when the movie ends
>> (instead
>> of
>> trying to determine this from arbitrary players).
>>
>> Hope this helps.
>>
>>
>> --
>> - Nicholas Paldino [.NET/C# MVP]
>> - mv*@spam.guard. caspershouse.co m
>>
>> "Dominique" <Do*******@disc ussions.microso ft.com> wrote in message
>> news:48******** *************** ***********@mic rosoft.com...
>> > Hi all,
>> > I'm using .NET v1.1 and the scenario I have is as follows...
>> >
>> > I have IE as an ActiveX control embedded in may C# App.
>> > I generate a HTML file dynamically and within the HTML file I embed
>> > a
>> > Flash, powerpoint presentation or movie file similar to ...
>> > <object id="globalnav-object"
>> > classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000"
>> > codebase="http://download.macrom edia.com/pub/shockwave/cabs/flash/swflash.cab#ver sion=6,0,0,0"
>> > width="756" height="88">
>> > <param name="movie"
>> > value="/swf/globalnav/globalnav_en_us .swf?fpReqMinor =79" />
>> > <param name="FlashVars "
>> > value="loc=en_U S&htmlApp=false &gatewayURL=gwu rl" />
>> > <param name="bgcolor" value="#c6cfd0" />
>> > <param name="menu" value="false" />
>> >
>> > <param name="quality" value="high" />
>> > <param name="salign" value="tl" />
>> > <param name="scale" value="noscale" />
>> > <embed id="globalnav-embed"
>> > src="/swf/globalnav/globalnav_en_us .swf?fpReqMinor =79"
>> > type="applicati on/x-shockwave-flash"
>> > pluginspage="ht tp://www.macromedia. com/go/getflashplayer"
>> > flashvars="loc= en_US&htmlApp=f alse&gatewayURL =gwurl"
>> > bgcolor="#c6cfd 0"
>> > menu="false" quality="high" salign="tl" scale="noscale" width="756"
>> > height="88"></embed>
>> > </object>
>> >
>> > I then save this HTML file to the HD and then get my C# embeded IE
>> > browser to navigate to the new HTML file to display it to the user.
>> > This is all fine and working.
>> >
>> > From my C# App, how can I know when the user has pressed play on
>> > either the Flash or MediaPlayer movie and also how can I tell when
>> > the
>> > movie has finished playing, either by the user pressing Stop or if
>> > the
>> > movie reaches the end?
>> >
>> > I would like to be able to generate two C# events, one which is
>> > fired when the Flash/Movie in the HTML file starts and also one when
>> > it
>> > finishs. Is this possible and if so how? Would MSHTML be usefull for
>> > this,
>> > again if so how?
>> >
>> > Any links/advice/example code appreciated.
>>
>>
>>


Dec 5 '05 #6
Hi Nicholas,
I finally understand what you. thanks for the clarification.
If I could standardise on MediaPlayer, how could I hook into it's events
from within IE?

Thanks.

"Nicholas Paldino [.NET/C# MVP]" wrote:
Dominique,

If you HAD to support all of those formats, then having an abstract
class will be the way you want to go. The thing is, not all of those
players will offer you the event to indicate when the movie is done (it's
not guaranteed they will). What I am saying is convert all the files to
say, an AVI format, and force them to use windows media player embedded in
the page (for example).
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Dominique" <Do*******@disc ussions.microso ft.com> wrote in message
news:60******** *************** ***********@mic rosoft.com...
Nicholas,
Since I am controlling how the HTML is generated, I also know what file (
flash, wmv etc ) is being embeded into the HTML file. Thus I thought of
having different HTML templates for the formats I plan to support ( Flash,
wmv, mov etc ). Since I will know the file extention I should be able to
create separte code paths which are specific for each file format. I plan
to
create an abstract MediaPlayer class and then have wrappers for each
format's
play, stop and finish, but the problem I have is actually hooking into the
Flash, Media Player or QuickTime respective events.

Or am I missing the point?

Thanks.
"Nicholas Paldino [.NET/C# MVP]" wrote:
Dominique,

No, I'm recommending that in your page you standardize the movie
format,
so that the player is always the same. Different formats are going to
use
different players, and getting notification that a movie stopped for all
of
them is going to be a pain.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Dominique" <Do*******@disc ussions.microso ft.com> wrote in message
news:2E******** *************** ***********@mic rosoft.com...
> Hi Nicholas,
> Thanks for your reply. Are you suggesting I use MSHTML or some other
> method?
> I quite new to this whole embed IE thing, so need a little bit more
> direction.
>
> Thanks.
>
> "Nicholas Paldino [.NET/C# MVP]" wrote:
>
>> Dominique,
>>
>> That's going to be hard to do. You will have to find out which
>> object
>> it is exactly (using the class id, most likely), and then find out the
>> specific events based on that.
>>
>> I would recommend standardizing the format and the player you are
>> going
>> to use, this way, you can be sure to detect when the movie ends
>> (instead
>> of
>> trying to determine this from arbitrary players).
>>
>> Hope this helps.
>>
>>
>> --
>> - Nicholas Paldino [.NET/C# MVP]
>> - mv*@spam.guard. caspershouse.co m
>>
>> "Dominique" <Do*******@disc ussions.microso ft.com> wrote in message
>> news:48******** *************** ***********@mic rosoft.com...
>> > Hi all,
>> > I'm using .NET v1.1 and the scenario I have is as follows...
>> >
>> > I have IE as an ActiveX control embedded in may C# App.
>> > I generate a HTML file dynamically and within the HTML file I embed
>> > a
>> > Flash, powerpoint presentation or movie file similar to ...
>> > <object id="globalnav-object"
>> > classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000"
>> > codebase="http://download.macrom edia.com/pub/shockwave/cabs/flash/swflash.cab#ver sion=6,0,0,0"
>> > width="756" height="88">
>> > <param name="movie"
>> > value="/swf/globalnav/globalnav_en_us .swf?fpReqMinor =79" />
>> > <param name="FlashVars "
>> > value="loc=en_U S&htmlApp=false &gatewayURL=gwu rl" />
>> > <param name="bgcolor" value="#c6cfd0" />
>> > <param name="menu" value="false" />
>> >
>> > <param name="quality" value="high" />
>> > <param name="salign" value="tl" />
>> > <param name="scale" value="noscale" />
>> > <embed id="globalnav-embed"
>> > src="/swf/globalnav/globalnav_en_us .swf?fpReqMinor =79"
>> > type="applicati on/x-shockwave-flash"
>> > pluginspage="ht tp://www.macromedia. com/go/getflashplayer"
>> > flashvars="loc= en_US&htmlApp=f alse&gatewayURL =gwurl"
>> > bgcolor="#c6cfd 0"
>> > menu="false" quality="high" salign="tl" scale="noscale" width="756"
>> > height="88"></embed>
>> > </object>
>> >
>> > I then save this HTML file to the HD and then get my C# embeded IE
>> > browser to navigate to the new HTML file to display it to the user.
>> > This is all fine and working.
>> >
>> > From my C# App, how can I know when the user has pressed play on
>> > either the Flash or MediaPlayer movie and also how can I tell when
>> > the
>> > movie has finished playing, either by the user pressing Stop or if
>> > the
>> > movie reaches the end?
>> >
>> > I would like to be able to generate two C# events, one which is
>> > fired when the Flash/Movie in the HTML file starts and also one when
>> > it
>> > finishs. Is this possible and if so how? Would MSHTML be usefull for
>> > this,
>> > again if so how?
>> >
>> > Any links/advice/example code appreciated.
>>
>>
>>


Dec 5 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
15128
by: Tom Meuzelaar | last post by:
Hello: I'm using VB6 in VS enterprise. I'd like to place an HTML form inside a VB container, have a user fill out the form information, click a submit button, and then have the program capture the field values and write them to an ASCII file on the hard drive. Can anyone confirm that this is even possible? I have dredged up one article "Accessing the Internet Explorer Document Object Model from Visual Basic 5.0" (Asmi, 1998) that covers...
9
8149
by: Josh Mayfield | last post by:
Note: There is considerable background detail here, but I do have three questions, which are clearly marked and appear right before the sample code. I have a legitimate need to launch an EXE from an HTML page on Windows XP/Internet Explorer. The EXE is already locally installed, and the HTML page is also viewed locally on the PC- it's not a web site. I know of two ways to do this, both of which are featured in the sample HTML file at...
5
5381
by: Niyazi | last post by:
Hi, I have an html page and I might be moving to asp.net page that contains a some kind of forum and string. It is kind of application form. User have to enter some (string) value into the forum which forum actualy similar to small article. Then user have to use PRINT button to print the page. My problem is that when I try to print it prints the HTML Name on top left as well as the page
9
9908
by: Sean McKaharay | last post by:
Since no one can answer the following question: I have a issue. I need to create a command line application/or windows application that will take 2 parameters and will print to the default printer without any popups. the first parameter is the html file name(location) second is a switch that will tell the app to print in landscape or protrait. Basicly I when I type in (for example) PrintApp "c:\printthis.html" \L it should print the file...
11
1989
by: VB Programmer | last post by:
Is there a limit as to how big an aspx page's html can be? (number of characters) Why do I ask? I have a webform with a lot of ActiveX controls (shows up as OBJECT in html). When I place like 35 of these objects the form shows up BLANK in a web browser. When I remove a few (ANY few) I can see the page. Any ideas? Thanks.
0
12090
by: sonu | last post by:
I have following client side code which i have used in my asp.net project SummaryFeatured Resources from the IBM Business Values Solution Center WHITEPAPER : CRM Done Right Improve the likelihood of CRM success from less than 20 percent to 60 percent. WHITEPAPER :
0
1233
by: Punit | last post by:
Hello, I have an unmanaged VC7 app (ActiveX control implemented using MFC) calling a C# dotnet service. I'm using the VS2003 generated proxy class derived from CSoapSocketClientT. The activeX control works fine but when used through a proxy that requires authentication I end up getting 407 error. I tried using authentication schemes as suggested in most of the threads. CAtlHttpClient& httpClient = webserviceInst.m_socket;
2
2132
by: Filippo Bettinaglio | last post by:
Hi, I use, VS2005 C# I have a Windows Forms UserControl hosted within Internet Explorer According to MIcrosoft documentation: http://msdn2.microsoft.com/en-us/library(d=robot)/ms171712.aspx or
16
2339
by: Eric | last post by:
I have a user of a web application written in Java/JSP that is unable to login to the site simply because certain links on the page do not run when they are clicked. Other popups using Javascript on the same page work correctly. It appears to be isolated to 1-2 machines in a particular network. I cannot verify whether these machines have had virus/spyware scans, but I do know the user is running Firefox 2.1 and IE 7 with the same...
0
9706
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10580
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10335
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
7621
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6854
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5525
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5652
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3821
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2993
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.