Click here to Skip to main content
15,922,533 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: How to embedded EXE in web . Pin
minhpc_bk17-Jul-05 18:17
minhpc_bk17-Jul-05 18:17 
GeneralRe: How to embedded EXE in web . Pin
Prabakar A Samiyappan17-Jul-05 18:38
Prabakar A Samiyappan17-Jul-05 18:38 
Generalcreate a drop down list where a user can choose a Video Pin
Leopdurr17-Jul-05 13:56
sussLeopdurr17-Jul-05 13:56 
GeneralRe: create a drop down list where a user can choose a Video Pin
minhpc_bk17-Jul-05 19:57
minhpc_bk17-Jul-05 19:57 
GeneralRe: create a drop down list where a user can choose a Video Pin
leopdurr18-Jul-05 5:22
sussleopdurr18-Jul-05 5:22 
GeneralRe: create a drop down list where a user can choose a Video Pin
minhpc_bk18-Jul-05 15:34
minhpc_bk18-Jul-05 15:34 
GeneralRe: create a drop down list where a user can choose a Video Pin
leopdurr18-Jul-05 6:58
sussleopdurr18-Jul-05 6:58 
GeneralRe: create a drop down list where a user can choose a Video Pin
minhpc_bk18-Jul-05 15:20
minhpc_bk18-Jul-05 15:20 
You basically need a dropdownlist to store the list of the video files:
<select name="movie_selection" id="select1" onchange="PlayVideo();">
	<option value="video/1.wmv" selected>Video 1</option>
	<option value="video/2.wmv">Video 2</option>
	<option value="video/3.wmv">Video 3</option>
</select>
In the event handler of the onchange event, you code looks something like:
function PlayVideo()
{
        //Form1 is the id of the form element.
	var selectedIndex = document.Form1.movie_selection.selectedIndex;
	var filename = document.Form1.movie_selection.options[selectedIndex].value;
	
	//objWMP' is the id of the media player.
	var player = window.document.getElementById("objWMP");
	player.FileName = filename;
	//player.play();
}

GeneralServer side script does is not executed Pin
just4ulove716-Jul-05 16:15
just4ulove716-Jul-05 16:15 
GeneralRe: Server side script does is not executed Pin
Vasudevan Deepak Kumar18-Jul-05 2:11
Vasudevan Deepak Kumar18-Jul-05 2:11 
GeneralASP Encrypt Pin
Enigma344015-Jul-05 23:12
Enigma344015-Jul-05 23:12 
GeneralRe: ASP Encrypt Pin
Christian Graus17-Jul-05 19:15
protectorChristian Graus17-Jul-05 19:15 
GeneralRe: ASP Encrypt Pin
Vasudevan Deepak Kumar5-Aug-05 22:40
Vasudevan Deepak Kumar5-Aug-05 22:40 
GeneralCurrent Mortgage Rates Pin
gvirden15-Jul-05 11:58
gvirden15-Jul-05 11:58 
GeneralRe: Current Mortgage Rates Pin
Vasudevan Deepak Kumar18-Jul-05 4:36
Vasudevan Deepak Kumar18-Jul-05 4:36 
GeneralRe: Current Mortgage Rates Pin
gvirden18-Jul-05 8:39
gvirden18-Jul-05 8:39 
GeneralCOM in Web Service Pin
maskeen15-Jul-05 11:17
maskeen15-Jul-05 11:17 
GeneralRe: COM in Web Service Pin
Prabakar A Samiyappan17-Jul-05 15:42
Prabakar A Samiyappan17-Jul-05 15:42 
GeneralRe: COM in Web Service Pin
maskeen18-Jul-05 5:25
maskeen18-Jul-05 5:25 
GeneralATL/COM/MFC/C++) Q about IE programming Pin
Anonymous15-Jul-05 2:02
Anonymous15-Jul-05 2:02 
GeneralExplorer Pin
ricardo ho15-Jul-05 2:01
ricardo ho15-Jul-05 2:01 
GeneralRe: Explorer Pin
Paul Watson15-Jul-05 2:04
sitebuilderPaul Watson15-Jul-05 2:04 
GeneralRe: Explorer Pin
soqrat18-Jul-05 1:04
soqrat18-Jul-05 1:04 
GeneralRe: Explorer Pin
Vasudevan Deepak Kumar18-Jul-05 4:39
Vasudevan Deepak Kumar18-Jul-05 4:39 
GeneralCommunicating between ColdFusion and VB.NET Pin
Aggie_Programmer14-Jul-05 10:48
Aggie_Programmer14-Jul-05 10:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.