VS 2005 Make A Program For Running In VCD/DVD Player?
Feb 27, 2010I want to develop a simple application which can execute (run) on Television through VCD/DVD player....??
View 9 RepliesI want to develop a simple application which can execute (run) on Television through VCD/DVD player....??
View 9 RepliesHaving worked out how to make a Windows Media Player in VB 2008, I have a new problem of exporting the file and debugging to play the music. I can add midi/mp3 files to the resources section so it works when I press f5 in VB itself, but opening from the debug folder (to save for other computers) loses all the music.
View 6 RepliesSo I am trying to make a program that allows you to move two shapes using two KeyPress events, one to move the first object and another for the second. It works, but it can only move one of the two objects, not both at the same time.
Private
Sub
Form_KeyPress1(ByVal[code]......
My program working fine during debug stage but somehow after create installer & install the program, the error prompt out..[code]The interop.dao.dll is auto include when add the project output.Not sure when create the installer, there's warning prompt as pic attachment will affect the result or not. Also, there's red line hightlight the sccrun.dll.
View 4 Repliesi am using visual studio 2005 on win 7 with office 2007.i have developed win application. i am using microsoft activex spreadsheet component in my program. so it automatically creates reference to AxInterop.OWC11.dll But when i run program in debug mode (open program and click RUN in toolbar it works) it works. But if i run directly .exe (go to bin release doubleclick .exe) it gives error at loading point of that component. It says "Attempted to read or write protected memory. This is often an indication that other memory has been corrupted." An unhandled exception occurrs.AxInterop.OWC11.dll is in release directory.Is this office 2007 error or Win 7 ?
View 2 RepliesI'd like to make sure that a program could run on a specific computer and get information like pc's identity. This way it won't be possible to run on another computer.
View 7 RepliesI need to have my VB program look for two specific programs in the same folder it is running from. How do I do that?Here is the code for when I run my program. I need it to look for the files that are underlined. They are the tpfh20 and tphd20.
Private Sub btnRunRelap5_Click(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles btnRunRelap5.Click
Dim pathString As String = String.Format("relap5 -i {0} -o {1} -r {2}", txtInput.Text, txtOutput.Text, txtRestart.Text)Dim stripString As String = String.Format(" -s {0}", tbStripFile.Text)
Dim guiString As String = " -n gui"
Dim waterprop As String = " -w tpfh20 -d tphd20"
If Not lblChangeStripFile.Visible Then
[Code]...
I am making a "fake Operating System" or "Virtual Machine" or what ever you want to call it. It has all of its own programs. I want Windows XP to stop running so that it will go faster and so on.Okay so I will obviously need coding on the Form1_Load and Form1_FormClosing Subs.Here is my attempt at coding it (Note that this is just the attempt at coding this particular part. It is not necessary to give you everything cause it would be to much and it might confuse people) :
Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
System(My.Computer.FileSystem.Drives.Join)
End Sub
[code]....
I am using VB 2008 express edition. How can I use progress bar with time? i.e.
Progressbar.value = Duration of the running the code
Progressbar.maximum = Maximum time of running
For example:
Timing4 = DateTime.Now
For Generation1 = 1 To Number_of_Generations
'MyCode
Next Generation1
Timing3 = DateTime.Now
Label8.Text = (Generation1 / Number_of_Generations) * 100 & " % Completed"
How can put this with a progress bar?
I have an issue with my project and I don't find the answer. I created a CBT project. The end result should be as follows: when the user inserts the CD (or DVD), the player will boot automatically. The media player and the video files are on the CD. When the media player is launched, the user can select the CBT he/she wants from a ListBox which will then play the file on the player. So far I build the player with all the necessry buttons but I have two things I can't find the solution for:1. how can I place the media player play the selected file from the listbox if the media files are on the same CD where the media player is located? As you can see on the below code, I manage to do that is the files are located on a drive (C:/ or D:/).2. I placed a FullScreen button which will expand the WMP to fullscreen mode but I can't figure out how to return it to the initial mode if pressing a key, for instance ESC.
Public Class frmMain
Private Sub frmMain_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
[code].....
make media player in vb6 or vb2010.. not using windows media player..
View 1 RepliesI m design a media player in vb.net..now i play 1Gb video movie.. i want to set the commercial time like every 15 mint my video automatically stop and some commercials play automatically after complete commercials my video[code]...
View 6 RepliesSo, after entering the following code into my app (which has WMP embedded for user to listen to the Bible in Audio) I ended up getting an Error/Alert when Running the app and Selecting the Option: "Hide Player and Stop Audio".
View 4 RepliesI'm trying to run the "Shell" command in a VB.NET project, to execute an external file. For example: Shell("c: empmyfile.txt").
For some reason this throwing a "file not found" exception, yet the file is there. Now I've looked around and found that others recommend using the "System.Diagnostics.Process" method, which does work, however I don't want the file to run in-process, which is what that does.
I want to run the file out of process, so that when my program ends, the executed program keeps running independently. Hence my attempt to use Shell() but it refuses to work.
Is there another way besides Shell() to run a file out of process?
how to make a program type in characters. My main goal is to have the program run in the background, which I also don't know how to do.
View 4 RepliesI am really confused! My program doesn't work if I don't have Visual Studio here in my PC. To test it I have uninstalled Visual Studio. But my program doesn't work though Flash Player is present there (I have used Flash animation in the first form).
To be more sure about it I have installed Flash. But it's not working! That means the Flash animation file (.swf) is not making a problem! It needs support from Visual Studio to start. Doesn't it mean that some files are not attached with a setup file as a result it needs Visual Studio to run? Let me tell you how I create a setup file of my program.
CODE:
When I click on the icon of my program it shows the error message
CODE:
Reporting details: This error report includes information regarding the condition of WindowsApplication1. When the problem occurred the operating system version and computer hardware is use; your Digital Product ID, which could be used to identify your license; and the Internet Protocol(IP) anddress of your computer.
I was wanting to make a simple client-server program.I saw some code for it and it was easy to understand but it was with winsock.
The program is:
Client: Clicks button.
Server: Recieves Text written in clients textbox.
Is there a reasonably easy way to do this?Maybe Net.Sockets or something similar?
Is it possible to make a program intercept and stop certain write requests? I need it to stop viruses from tampering with an antivirus database. If you can, how do you do it? If not, is there another way to stop viruses from changing the database?
View 39 RepliesI only started using visual basic earlier this year so I'm still a newbie but I've been wondering some things:
1. When you have a picturebox back color to transparent, objects under it still get hidden. Is there a way around this?
2. I've been trying to make a program where you can control an object, and it has multiple animations, but I can't figure out a way of doing this other than having a bunch of picture boxes together and making them visible/not visible as needed. Is there a better way to do this?
3. (I think) I know how to make global variables (dim whatever as global.system.integer ? I don't have it on the computer I'm posting with), but how do I make another form use them?
4. Is there a way to have multiple sounds play at the same time? Whenever I play a sound it stops whatever else is playing.
I am attempting to have my program select a file, create DataTables and then perform some other functions. I want to be able to open another file and re-do the same steps.The problem I am having is that I add columns to my Datatables and when I try and to open another file while one is already open I get a message that a column of xyz is already added how do I properly "clear my datatable" or perhaps that isnt even the correct approach? Here is the code I have that Opens a File
HTML
Private Sub OpenToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OpenToolStripMenuItem.Click
[code]....
This was working at one time but after adding to my project I must have placed something in the wrong place inadvertantly or it has soemthing to do with adding columns,?
is it possible by 1 program to save settings to another program without running the program that is being edited?
View 6 RepliesI am in process to develop an application for Windows Mobile 6.5 using Visual Basic 2005 and .NET Compact Framework. My problem is that I want to know if an instance of my application is already running and, in that case, I want to jump directly to that instance, without starting another one. I tried several solutions found on the internet but I think there are solution for desktop applications not for mobile applications because I have a lot of errors.
View 1 RepliesI recently moved my Application that was running off of Window XP and created in VS 2005 over to a box that's running Windows7.Now, when I try to debug, I can't edit. In the lower portion of the screen, it gives me this error: Cannot currently modify this text in the editor. It is read only.
Under Tools->Options->Debugging, Edit and Continue are already selected; so it's something else. Also, under project properties->compile I have it set to Cofiguration (Active Debug) and Platform (Active Any CPU).
How to add a flash player in VB.NET 2005
View 4 RepliesHow could I start making a Go game? I just need some logic for it, and maybe some code, and then I can do the rest. How can you tell if an area is enclosed, which areas on the board are full, etc.? I also need ideas on how to find infinite capture/retrieve cycles.
View 7 RepliesHow to make a media player in Vb.net& and my media player get video activity , like Cars bikes or peoples
View 14 RepliesI m Newbie in Visual Basic, im use vb2005 Pro Edition.i want to make Media Playerif i play Video Video show in New wind.w
View 5 RepliesMaking my own media player and convert it in to an .exe file in vb 2008
View 1 Repliesi got error that is not familiar to me in the line with bold font... i'm using windows 7 with MS Office 2010 and Visual studio 2005 in this application
[Code]...
I want to prevent my program from running when it is already running.How can I do that in my vb2008 Code?
View 1 Replies