Play Multiple Startup Movies?
Nov 29, 2010
How do I play multiple startup movies? I have Windows Media Player embedded and it plays the first intro, as a WMV file, but I need to add another video after that one before the main menu appears.
View 2 Replies
ADVERTISEMENT
Dec 7, 2007
Is it possible to play flash movis in a windows form? If so can anyone point me in the right direction as to how to achieve it.
View 5 Replies
Mar 23, 2010
i want to make an application to play movies etc at predefined time. i want to add the facility of overlaying graphics also.
View 1 Replies
Sep 13, 2009
I have my program working that loads flash movies and games for my son to play offline. Some of the games have http links in them. Is there any way that still allows playing the game without launching a webpage request? I have no code for this part of the program because I don't know where to look. I think I am just looking on how to block requests for launching anything outside of the program, or catching the request while my program is running, but not quite sure what to do.
View 5 Replies
Feb 1, 2009
I've recently been working on a simple media player (following some guide and using my small brain ). I have created a simple playlist, with load/ save ability, add remove track and play and all the normal bull . However I was wondering if I could get some help making it more advanced: How do I create my own track / volume sliders - and even a custom 'screen' to play visualisations / movies? how do I create skip buttons (the ones on the media player controller don't work :@)? I know how to make a button skip a track (I think), but how to I make it skip to the next track in my playlist box? [code] I have created a context menu for my playlist, with buttons such as play, add and remove, but I want it so that when I right click on song the code activates on the song I right clicked on. At the minute whatever song I right click on it still runs the code on the song that selected not the one I right clicked on.Also my playlist, displays the whole file location of the tracks, how to I make it display only the tracks name.Also I have an open dialog control, I know how to set a filter, but how do i set it to filter more than one extension.please note that most of this code is from various guises, and I have simply edited it and merged different codes to suit my needs. [code]
View 4 Replies
Mar 27, 2009
I'm using Visual Studio 2008 in vb.net. When I run my application both forms display even though I have a startup form selected in my application. If I select the first form I created the correct window is displayed, but when I select the other form to be my startup both are displayed.
View 3 Replies
Oct 7, 2009
I'm trying to play one right after another by clicking a button to bring upa Multiple listing using the My.Computer.Audio.Play Statement! These are in a verticle row listing. Doesn't play them at all this way.If i use a seperate click button for each one then it works when clicking each one! why they won't play under one click of a button?
View 1 Replies
Dec 14, 2009
I need to play multiple files simultaneously at the moment i am trying to use mciSendString() API it plays the files listed in a listbox. But it is only playing the first one i assume it would play the next one after the first is finished... cbf waiting to see.
Note this was an attempt in C#:
private void PlayButton_Click(object sender, EventArgs e)
{
if (SongsListBox.Items.Count > 0)
{
[Code]....
View 3 Replies
Feb 6, 2010
I have been using the My.Computer.Audio.Play method for sounds in my program for a very long time, but now I have reached a point where the program needs to be able to play more than one sound at a time. What is the best (and preferably simplest) way to do this?
View 8 Replies
Dec 13, 2010
I want to play multiple sounds simultaneously from My.Resources in Visual Basic 2010. I have tried:My.Computer.Audio.Play(My.Resources.SoundName, AudioPlayMode.Background)
I have also tried using multiple Windows Media Player controls, but that also didn't work.The first sound is cut off when the next sound plays.When searching around the internet I found people suggesting using 'DirectSound', but there are only tutorials for DirectSound in VB 6.0.
View 1 Replies
May 8, 2010
I want to the song can auto start one by one when import the song to list box. But it doesn't work that I need to select one by one. Besides, the program can repeat all the song or individual song when checkbox enable.
If AxWindowsMediaPlayer1.playState = WMPLib.WMPPlayState.wmppsMediaEnded Then
If playlistbox.SelectedIndex < playlistbox.Items.Count - 1 Then
[code].....
View 4 Replies
Aug 20, 2010
this is my Dim files() As IO.FileInfo = New IO.DirectoryInfo(My.Application.Info.DirectoryPath & "downloaded songs").GetFiles("*.wmv") Listbox1.Items.AddRange(files) but when i load - nothing happens
View 6 Replies
Jun 20, 2010
I can hide my startup form (or make it appear hidden) on startup. I can start my app on windows startup--through registry values--if the user checks a checkbox.
But if the app starts up on windows startup, I want the form to be hidden, so the program can just keep working without bothering anyone. If it starts up because the user started it, I want the form to be showing, because the user probably wants to change some settings or something.
View 8 Replies
Jan 5, 2011
I have created a form with a tab control, and on each of the tabs I wish to play a different .swf file. I am using the Shockwave Flash Object in VB and the following code on tab 1 to play the first movie. AxShockwaveFlash1.Movie = "1. Lets Learn some notes.swf"But for some reason when I click the button to load that form, I get this errorAn error occurred creating the form. See Exception.InnerException for details. The error is: Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG))This error doesnt appear when I try and navigate to the form without the Flash Object being present, so i'm guessing its this thats the problem.
View 3 Replies
Nov 10, 2006
I'm really new to thes e forums, so I wasn't exactly sure where to post about vb 2005 express. The Classic VB only obtains to VB 3-6.
View 19 Replies
Jan 1, 2010
I have downloaded windows media player, but I cannot watch any of my movies, I can hear them but not see them. I have tried so many things, I have deleted it, than downloaded the media again, and so on.
View 3 Replies
Sep 10, 2010
where I can download free Tutorial Movies for Visual Basics 2008. I find it the easyest way for me to learn.
[Code]...
View 10 Replies
Sep 16, 2010
Im trying to open media player (full screen) and play a movie. When i create the file path like so: Dim MoviePathVTS As String = String.Concat("""" + tempMoviePath, " \VIDEO_TS\VTS_01_1.VOB" + """")
It wont play the file but if i do it like this: Dim video1 = """F:\Movies\DvD\Angels and Deamons\VIDEO_TS\VTS_01_1.VOB"""
It plays fine? the file paths are the same including the extra "" but it just refuses to play. I need the top one because i have many movies in a treeview.
Heres my code
Private Sub watchNow_Click(ByVal sender As Object, ByVal e As EventArgs)
'get the position of the selected node
Dim i = movieTreeView.SelectedNode.Index
[CODE]...
View 2 Replies
Mar 4, 2010
How to make an Application to startup at the system startup? and How to enable and disable?
View 6 Replies
Sep 18, 2009
I am making an application that will organize the movies and their release dates for me and that it will notify me whenever a movie is released. So far I have the layout almost done with some parts missing.
BASICS
1. At the top as you can see I want the text to display the current day and having the tool tip to say "Today is Tuesday 19, 2009" while I want the text to be centered.
2. I want to have a poster with a specific size (dimensions) that will be displayed when the movie is selected at the data grid and I want the buttons to be able to select the previous or next data grid line, meaning next/previous movie.
3. I want to make the buttons either check all the boxes or uncheck them all. And I want the validate button to be able to compare the date of the selected movie with the current day and tell me If it was released today or not.
4. I will make a menu at the top that will be giving you the ability to add movies or select and delete movies, while when adding being able to specify a poster for the movie.
5. I want every time that I run the app to automatically check the dates and either ask me to remove those who have been released some time ago or give me a message like "Movie was released today".
View 3 Replies
Jul 30, 2010
I am trying to make a movie center where I got all my movies on my computer on. Little hard to explain in english cause it's not my native language. Well I've got some problems. 1. I don't know how to make a browse button to work. In detail, I don't know how to code it so that it will select a whole map. Well I don't even know how to code it so it can browse.
2.How do I code so if one pressed a button it will come up a new form?
View 3 Replies
Feb 9, 2010
How can you make a play button play/stop toggle? Currently my button plays a file in WMP but when I click it again, it just restarts the file. I would like it to toggle on and off, play and stop, not play and pause.
View 8 Replies
Nov 11, 2009
i deleted my previous start up form to be replaced by another one but each time i launch the application,the deleted start up form is still displayed.i dont know from where this deleted start up form is being loaded.
View 3 Replies
Oct 8, 2010
I want to make an app which you make a password and username and use it for the app but I only want this screen to open the first time you load the app so after the first load it goes right to the login screen
[Code]....
View 1 Replies
Aug 30, 2010
How can I add my application in startup items? I want my application to get added in startup when setup is run at Client's computer.
Also, how can it be automatically started after setup finishes?
View 2 Replies
May 23, 2011
As usual, I change the startup form under Application tab. At this time, it doesn't run my selected Startup form. Whatever I set to any forms or even excluding that form, it still runs the same form.
View 2 Replies
Mar 31, 2009
Is there a way to get the name of startup form? I want to access a property of a control that is on startup form.
View 3 Replies
Jul 28, 2010
VB2008 application.
Using a splashscreen.
When the spashscreen is done, the main menu for the program appears.
The problem is that the main menu appears UNDER things already open on the desktop.
Always On Top could be the answer BUT if I do that, all sub-menus will be UNDER the main menu rather than stacked on top.
View 4 Replies
Jun 7, 2011
friends Im using vb2005 an am BEGINNER in programming and I need to no how to remove my app from startup programs I use this code to add my app to startup programs so how to remove it?
View 4 Replies
Oct 30, 2010
I continue to get this error when using the code samples from Cengage's book Zak's Programming with Microsoft Visual Basic 2008. I am running Visual Studio 2010.I am attaching the code below:
Option Explicit On
Option Strict On
Option Infer Off
[code].....
View 8 Replies