473,761 Members | 8,372 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Media Player Element

I am currently using an Object element of type "applicatio n/x-mplayer2" to
create a media player in ASP.NET 3.5, and was wondering if there is a better
way to instantiate WMP in a browser. I'm hoping to find something with
better cross-browser compatibility.

I looked at System.Windows. Media.MediaPlay er in PresentationCor e.dll but I'm
assuming that is used for Windows Forms (WPF). I'm also looking at the
Silverlight 2.0 MediaElement as a possible solution.

I thought I remembered seeing a presentation at a conference last year where
the element <asp:MediaPlaye rwas used in the markup of an ASP.NET 3.5 Web
application, but I may be mistaken. Is anyone familiar with this or knows a
better way to handle rendering media in ASP.NET 3.5?
--
Regards,

Fred Chateau
fchateauAtComca stDotNet
Aug 14 '08 #1
5 2637
Fred Chateau wrote:
I am currently using an Object element of type "applicatio n/x-mplayer2" to
create a media player in ASP.NET 3.5, and was wondering if there is a better
way to instantiate WMP in a browser. I'm hoping to find something with
better cross-browser compatibility.

I looked at System.Windows. Media.MediaPlay er in PresentationCor e.dll but I'm
assuming that is used for Windows Forms (WPF). I'm also looking at the
Silverlight 2.0 MediaElement as a possible solution.

I thought I remembered seeing a presentation at a conference last year where
the element <asp:MediaPlaye rwas used in the markup of an ASP.NET 3.5 Web
application, but I may be mistaken. Is anyone familiar with this or knows a
better way to handle rendering media in ASP.NET 3.5?

Check out this:
http://quickstarts.asp.net/3-5-exten...erControl.aspx
LS
Aug 14 '08 #2
Hi Fred,

As Lloyd suggested, you can use ASP.NET MediaPlayer Server Control, which
is based on Silverlight. As we know, Silverlight is a browser plug-in
which is cross-browser, cross-platform and cross-device (not yet, but soon).

Some benefits you can gain when using ASP.NET MediaPlayer:
1. You can customize the skin of the media player, which brings better user
experience.
2. Markers and Captions support.
3. Playlist support.
4. You can detect whether your user has Silverlight installed on their
machine. Please refer to:
http://msdn.microsoft.com/en-us/libr...07(VS.95).aspx
Then can write some JavaScript to redirect your user to download it, which
is more user-friendly.
To get started please install Microsoft Silverlight Tools Beta 2 for Visual
Studio 2008 (Please note it's still in Beta. If it's not urgent I recommend
waiting for the release):
http://www.microsoft.com/downloads/d...C01-267B-4521-
B7D7-C0DBA8866434&di splaylang=en

And refer to:
http://quickstarts.asp.net/3-5-exten...yerControl.asp
x
It demonstrates how to use ASP.NET MediaPlayer Server Control.

Please let me know if you have further questions.

Regards,
Allen Chen
Microsoft Online Support

Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
| From: "Fred Chateau" <fc******@commu nity.nospam>
| Subject: Media Player Element
| Date: Thu, 14 Aug 2008 16:36:12 -0500
| Lines: 22
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.5512
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579
| Message-ID: <eH************ **@TK2MSFTNGP04 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| NNTP-Posting-Host: c-98-240-80-115.hsd1.tn.com cast.net 98.240.80.115
| Path: TK2MSFTNGHUB02. phx.gbl!TK2MSFT NGP01.phx.gbl!T K2MSFTNGP04.phx .gbl
| Xref: TK2MSFTNGHUB02. phx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:7389 0
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| I am currently using an Object element of type "applicatio n/x-mplayer2"
to
| create a media player in ASP.NET 3.5, and was wondering if there is a
better
| way to instantiate WMP in a browser. I'm hoping to find something with
| better cross-browser compatibility.
|
| I looked at System.Windows. Media.MediaPlay er in PresentationCor e.dll but
I'm
| assuming that is used for Windows Forms (WPF). I'm also looking at the
| Silverlight 2.0 MediaElement as a possible solution.
|
| I thought I remembered seeing a presentation at a conference last year
where
| the element <asp:MediaPlaye rwas used in the markup of an ASP.NET 3.5
Web
| application, but I may be mistaken. Is anyone familiar with this or knows
a
| better way to handle rendering media in ASP.NET 3.5?
|
|
| --
| Regards,
|
| Fred Chateau
| fchateauAtComca stDotNet
|
|
|

Aug 15 '08 #3
I did wind up using the ASP.NET MediaPlayer tool. It's working well and a
much better alternative to instantiating WMP in the browser.

I ran into a minor problem with the control and posted a message about it in
the Silverlight forums. I thought I'd copy it here too, in case anyone is
interested.

--

I just wanted to mention that when using the ASP.NET MediaPlayer wrapper
tool, it does not display the Install Silverlight prompt if the Silverlight
version is not installed in the browser.

To workaround this situation, I added an instance of the ASP.NET Silverlight
wrapper control at the top of the page, with the width and height set to 0.
This forces the Install Silverlight prompt to display when required. Not a
major problem but I wanted to mentioned it, as to appears to be a bug in the
MediaPlayer control.

Also, I noticed that the Silverlight control does not require a hyperlink in
the Not Installed Template to display the prompt. Is hardwiring that link in
the DLL wise, considering the link may change in the future?

--
Regards,

Fred Chateau
fchateauAtComca stDotNet
"Allen Chen [MSFT]" <v-******@online.m icrosoft.comwro te in message
news:fy******** ******@TK2MSFTN GHUB02.phx.gbl. ..
Hi Fred,

As Lloyd suggested, you can use ASP.NET MediaPlayer Server Control, which
is based on Silverlight. As we know, Silverlight is a browser plug-in
which is cross-browser, cross-platform and cross-device (not yet, but
soon).

Some benefits you can gain when using ASP.NET MediaPlayer:
1. You can customize the skin of the media player, which brings better
user
experience.
2. Markers and Captions support.
3. Playlist support.
4. You can detect whether your user has Silverlight installed on their
machine. Please refer to:
http://msdn.microsoft.com/en-us/libr...07(VS.95).aspx
Then can write some JavaScript to redirect your user to download it, which
is more user-friendly.
To get started please install Microsoft Silverlight Tools Beta 2 for
Visual
Studio 2008 (Please note it's still in Beta. If it's not urgent I
recommend
waiting for the release):
http://www.microsoft.com/downloads/d...C01-267B-4521-
B7D7-C0DBA8866434&di splaylang=en

And refer to:
http://quickstarts.asp.net/3-5-exten...yerControl.asp
x
It demonstrates how to use ASP.NET MediaPlayer Server Control.

Please let me know if you have further questions.

Regards,
Allen Chen
Microsoft Online Support

Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no
rights.

--------------------
| From: "Fred Chateau" <fc******@commu nity.nospam>
| Subject: Media Player Element
| Date: Thu, 14 Aug 2008 16:36:12 -0500
| Lines: 22
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.5512
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579
| Message-ID: <eH************ **@TK2MSFTNGP04 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| NNTP-Posting-Host: c-98-240-80-115.hsd1.tn.com cast.net 98.240.80.115
| Path: TK2MSFTNGHUB02. phx.gbl!TK2MSFT NGP01.phx.gbl!T K2MSFTNGP04.phx .gbl
| Xref: TK2MSFTNGHUB02. phx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:7389 0
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| I am currently using an Object element of type "applicatio n/x-mplayer2"
to
| create a media player in ASP.NET 3.5, and was wondering if there is a
better
| way to instantiate WMP in a browser. I'm hoping to find something with
| better cross-browser compatibility.
|
| I looked at System.Windows. Media.MediaPlay er in PresentationCor e.dll but
I'm
| assuming that is used for Windows Forms (WPF). I'm also looking at the
| Silverlight 2.0 MediaElement as a possible solution.
|
| I thought I remembered seeing a presentation at a conference last year
where
| the element <asp:MediaPlaye rwas used in the markup of an ASP.NET 3.5
Web
| application, but I may be mistaken. Is anyone familiar with this or
knows
a
| better way to handle rendering media in ASP.NET 3.5?
|
|
| --
| Regards,
|
| Fred Chateau
| fchateauAtComca stDotNet
|
|
|

Aug 15 '08 #4
I tried to use the silverlight media control and can't get sound out of it.
It just sits there like a lump on a log. Could this be because I don't have
silverlight installed as a browser plugin yet?
"Allen Chen [MSFT]" <v-******@online.m icrosoft.comwro te in message
news:fy******** ******@TK2MSFTN GHUB02.phx.gbl. ..
Hi Fred,

As Lloyd suggested, you can use ASP.NET MediaPlayer Server Control, which
is based on Silverlight. As we know, Silverlight is a browser plug-in
which is cross-browser, cross-platform and cross-device (not yet, but
soon).

Some benefits you can gain when using ASP.NET MediaPlayer:
1. You can customize the skin of the media player, which brings better
user
experience.
2. Markers and Captions support.
3. Playlist support.
4. You can detect whether your user has Silverlight installed on their
machine. Please refer to:
http://msdn.microsoft.com/en-us/libr...07(VS.95).aspx
Then can write some JavaScript to redirect your user to download it, which
is more user-friendly.
To get started please install Microsoft Silverlight Tools Beta 2 for
Visual
Studio 2008 (Please note it's still in Beta. If it's not urgent I
recommend
waiting for the release):
http://www.microsoft.com/downloads/d...C01-267B-4521-
B7D7-C0DBA8866434&di splaylang=en

And refer to:
http://quickstarts.asp.net/3-5-exten...yerControl.asp
x
It demonstrates how to use ASP.NET MediaPlayer Server Control.

Please let me know if you have further questions.

Regards,
Allen Chen
Microsoft Online Support

Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsof t.com.

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no
rights.

--------------------
| From: "Fred Chateau" <fc******@commu nity.nospam>
| Subject: Media Player Element
| Date: Thu, 14 Aug 2008 16:36:12 -0500
| Lines: 22
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.5512
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579
| Message-ID: <eH************ **@TK2MSFTNGP04 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| NNTP-Posting-Host: c-98-240-80-115.hsd1.tn.com cast.net 98.240.80.115
| Path: TK2MSFTNGHUB02. phx.gbl!TK2MSFT NGP01.phx.gbl!T K2MSFTNGP04.phx .gbl
| Xref: TK2MSFTNGHUB02. phx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:7389 0
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| I am currently using an Object element of type "applicatio n/x-mplayer2"
to
| create a media player in ASP.NET 3.5, and was wondering if there is a
better
| way to instantiate WMP in a browser. I'm hoping to find something with
| better cross-browser compatibility.
|
| I looked at System.Windows. Media.MediaPlay er in PresentationCor e.dll but
I'm
| assuming that is used for Windows Forms (WPF). I'm also looking at the
| Silverlight 2.0 MediaElement as a possible solution.
|
| I thought I remembered seeing a presentation at a conference last year
where
| the element <asp:MediaPlaye rwas used in the markup of an ASP.NET 3.5
Web
| application, but I may be mistaken. Is anyone familiar with this or
knows
a
| better way to handle rendering media in ASP.NET 3.5?
|
|
| --
| Regards,
|
| Fred Chateau
| fchateauAtComca stDotNet
|
|
|

Aug 18 '08 #5
Hi Andy,

Yes we have to install Silverlight runtime first to make this MediaPlayer
control work.
http://www.microsoft.com/silverlight...s/install.aspx

If you still have questions I suggest you to ask in the Silverlight forum:
http://silverlight.net/forums/

This forum is dedicated to Silverlight issue.

Regards,
Allen Chen
Microsoft Online Support

--------------------
| From: "Andy B" <a_*****@sbcglo bal.net>
| References: <eH************ **@TK2MSFTNGP04 .phx.gbl>
<fy************ **@TK2MSFTNGHUB 02.phx.gbl>
| Subject: Re: Media Player Element
| Date: Mon, 18 Aug 2008 19:47:43 -0400
| Lines: 121
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.5512
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579
| X-RFC2646: Format=Flowed; Original
| Message-ID: <#$************ **@TK2MSFTNGP02 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| NNTP-Posting-Host: adsl-76-235-161-199.dsl.klmzmi. sbcglobal.net
76.235.161.199
| Path: TK2MSFTNGHUB02. phx.gbl!TK2MSFT NGP01.phx.gbl!T K2MSFTNGP02.phx .gbl
| Xref: TK2MSFTNGHUB02. phx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:7416 4
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| I tried to use the silverlight media control and can't get sound out of
it.
| It just sits there like a lump on a log. Could this be because I don't
have
| silverlight installed as a browser plugin yet?
| "Allen Chen [MSFT]" <v-******@online.m icrosoft.comwro te in message
| news:fy******** ******@TK2MSFTN GHUB02.phx.gbl. ..
| Hi Fred,
| >
| As Lloyd suggested, you can use ASP.NET MediaPlayer Server Control,
which
| is based on Silverlight. As we know, Silverlight is a browser plug-in
| which is cross-browser, cross-platform and cross-device (not yet, but
| soon).
| >
| Some benefits you can gain when using ASP.NET MediaPlayer:
| 1. You can customize the skin of the media player, which brings better
| user
| experience.
| 2. Markers and Captions support.
| 3. Playlist support.
| 4. You can detect whether your user has Silverlight installed on their
| machine. Please refer to:
| http://msdn.microsoft.com/en-us/libr...07(VS.95).aspx
| Then can write some JavaScript to redirect your user to download it,
which
| is more user-friendly.
| >
| >
| To get started please install Microsoft Silverlight Tools Beta 2 for
| Visual
| Studio 2008 (Please note it's still in Beta. If it's not urgent I
| recommend
| waiting for the release):
| >
http://www.microsoft.com/downloads/d...C01-267B-4521-
| B7D7-C0DBA8866434&di splaylang=en
| >
| And refer to:
| >
http://quickstarts.asp.net/3-5-exten...yerControl.asp
| x
| It demonstrates how to use ASP.NET MediaPlayer Server Control.
| >
| Please let me know if you have further questions.
| >
| Regards,
| Allen Chen
| Microsoft Online Support
| >
| Delighting our customers is our #1 priority. We welcome your comments
and
| suggestions about how we can improve the support we provide to you.
Please
| feel free to let my manager know what you think of the level of service
| provided. You can send feedback directly to my manager at:
| ms****@microsof t.com.
| >
| =============== =============== =============== =====
| Get notification to my posts through email? Please refer to
| >
http://msdn.microsoft.com/subscripti...ult.aspx#notif
| ications.
| >
| Note: The MSDN Managed Newsgroup support offering is for non-urgent
issues
| where an initial response from the community or a Microsoft Support
| Engineer within 1 business day is acceptable. Please note that each
follow
| up response may take approximately 2 business days as the support
| professional working with you may need further investigation to reach
the
| most efficient resolution. The offering is not appropriate for
situations
| that require urgent, real-time or phone-based interactions or complex
| project analysis and dump analysis issues. Issues of this nature are
best
| handled working with a dedicated Microsoft Support Engineer by
contacting
| Microsoft Customer Support Services (CSS) at
| http://msdn.microsoft.com/subscripti...t/default.aspx.
| =============== =============== =============== =====
| This posting is provided "AS IS" with no warranties, and confers no
| rights.
| >
| --------------------
| | From: "Fred Chateau" <fc******@commu nity.nospam>
| | Subject: Media Player Element
| | Date: Thu, 14 Aug 2008 16:36:12 -0500
| | Lines: 22
| | X-Priority: 3
| | X-MSMail-Priority: Normal
| | X-Newsreader: Microsoft Outlook Express 6.00.2900.5512
| | X-RFC2646: Format=Flowed; Original
| | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579
| | Message-ID: <eH************ **@TK2MSFTNGP04 .phx.gbl>
| | Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| | NNTP-Posting-Host: c-98-240-80-115.hsd1.tn.com cast.net 98.240.80.115
| | Path: TK2MSFTNGHUB02. phx.gbl!TK2MSFT NGP01.phx.gbl!T K2MSFTNGP04.phx .gbl
| | Xref: TK2MSFTNGHUB02. phx.gbl
| microsoft.publi c.dotnet.framew ork.aspnet:7389 0
| | X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
| |
| | I am currently using an Object element of type
"applicatio n/x-mplayer2"
| to
| | create a media player in ASP.NET 3.5, and was wondering if there is a
| better
| | way to instantiate WMP in a browser. I'm hoping to find something with
| | better cross-browser compatibility.
| |
| | I looked at System.Windows. Media.MediaPlay er in PresentationCor e.dll
but
| I'm
| | assuming that is used for Windows Forms (WPF). I'm also looking at the
| | Silverlight 2.0 MediaElement as a possible solution.
| |
| | I thought I remembered seeing a presentation at a conference last year
| where
| | the element <asp:MediaPlaye rwas used in the markup of an ASP.NET 3.5
| Web
| | application, but I may be mistaken. Is anyone familiar with this or
| knows
| a
| | better way to handle rendering media in ASP.NET 3.5?
| |
| |
| | --
| | Regards,
| |
| | Fred Chateau
| | fchateauAtComca stDotNet
| |
| |
| |
| >
|
|
|

Aug 20 '08 #6

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

Similar topics

1
8917
by: Anise | last post by:
I have a question concerning embedding a windows media player into a web application in .net.. I download Windows Media Player 10 and its SDK On the .ascx page I placed a windows media player object from the toolbox and all the sites i read say when "Adding the Windows Media Player control from the Toolbox also adds references to two libraries created by Visual
1
7897
by: Stephen Adam | last post by:
Hi there, Have spent a while trying to find out how to connect to Windows Media Player through COM. Unfortunately there doesnt seem to be much stuff about it on the web. What I need to do is create a simple console application which will be able to find out what the values of a currently playing tack. I've downloaded the Windows Media player SDK which come with some IDL and
1
2310
by: Shane | last post by:
I'm trying to access the media player (V10) mediacollection object from my ..NET web service to return a list of media files. For some reason when i call getByAttribute("MediaType", "Audio") it does not return anything (ie. an empty playlist object), however if i call this using just a normal windows app, it returns all of my audio files as expected. I am suspecting it is using the ASPNET user (ie. default web service user) instead of...
3
5185
by: UJ | last post by:
I have a .avi file that uses the Divx codec. If I load it with windows media player program it works fine. If I load it using my control in a program, it doesn't display. Over standard media files work fine so it's this particular file. Do I have to do anything when the file uses a non-included codec? How can I tell what Codec it's using? TIA - Jeff.
19
19275
by: Tony | last post by:
I'm working on project that plays movies using Windows Media Player and I'm controlling everything with JavaScript. Per the client I only need to support IE 6 or greater which happens to make things a bit easier. What I need to do is create a playlist and play it using JavaScript. I keep on getting close but not close enough to play the dang files. Has anyone done this before and can shed some light on what worked for them?
2
3281
riptide2049
by: riptide2049 | last post by:
I really have a problem here. I have a code that is suppost to take the href of a link from the right class;value of a link maked toreturn false. the value is a Media file the file is sent to quicktime or windows meida player depending on which plugin was found. after the plug in is found a iframe with the right player is created. here is the code. for some reason In IE the plug in doesnt work and in fire fox it crashes <!DOCTYPE html...
3
5695
by: hurricane_number_one | last post by:
I want to be able to play/pause/next/back the tracks in whatever media player app is running. So if iTunes is running, it will receive those commands, if Windows Media Player is, it will receive those commands, and so on, just like my multimedia keyboard does. I can't find any way to do this. I have tried sending: System.Windows.Forms.Keys.MediaPlayPause, System.Windows.Forms.Keys.MediaPreviousTrack, ect. but it didn't do anything. Is...
0
1645
by: pavanip | last post by:
Hi, I am new to Silverlight Applications. I created one media player control to play video in asp.net website.I want to drag and drop that media player control to desired place when we run the application but there are no events to drag and drop the video. I tried media element control its working fine for drag and drop functionality but i want that feature in media player control. Is there any other alternatives to drag and drop videos to...
0
9531
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
9345
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10115
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...
1
9905
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8780
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6609
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
5229
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
5373
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
3456
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.