Running One Program From Another?
Sep 11, 2009
I am writing a program (that i have recieved a lot of help with) that creates input files for another program. The bridge between the two programs is a program that has been named the task manager as like the windows task manager it shows what tasks are being done/have been done/are about to be done (or executed)
What i would like to know is how can i run the already installed bridge program from my program? Do i need to run it by opening the executable that contains it? Or by declaring the bridge program as a type/structure/class and going from there to open it?If you're not living on the edge, you're taking up too much room
View 2 Replies
ADVERTISEMENT
May 5, 2012
is it possible by 1 program to save settings to another program without running the program that is being edited?
View 6 Replies
Jan 20, 2010
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
Jun 6, 2012
I wrote this VB program to be able to throw a device we developed into programming mode where we use an ATMEL Flip installer to upload new firmware. I can program one device after another running the application off of Visual Studio Express 2010 or Visual Studio 2010, but when I go to publish this file and run it on another machine, it becomes unstable and crashes after each upload. On those same computers if I run the raw unpackaged program under Visual Studio Express, the system does not crash, and I can program devices repeatedly.
View 5 Replies
Oct 10, 2011
have you of any ideas in why does my software in vb 2010 still exist in the task manager (process tab), after i closed the program? i noticed it when i want to delete the .exe file.
View 10 Replies
May 1, 2009
I want to create a program that will run every start of computer and will check if it is 9:00 AM and can only be seen at the bottom right cornner besides the clock. When the program executes must show an notification that the program is running.
View 4 Replies
Oct 12, 2011
I had the battle system 60% worked out. Went to play some Dragon Age, when I came back nothing was working as the way I left it. I don't know what happened.The richtext box is supposed to disaply the attack monster description, and then it's name, the amount of damage it does. I had it so that I could attack, be attacked, and display damage, and attack discription of both player and monster. when I opened my project to work on it again, hardly anything was working right.[code]
View 9 Replies
Apr 26, 2011
im a wrtiting a simple vb.net problem that when a button is clicked it launches the command prompt.all i need it to do is open cmd on a buttonclick. i have used [code]this works fine if i substitute iexplore.exe for cmd.exe but when i try to run cmd i get an error message below.
View 1 Replies
Jan 21, 2010
we have this situation, we need to 'force' user to do stock opname at specified time, so when the time has arrived..the stock opname program will run while their current running is'freeze' until the opname is done..
View 10 Replies
Sep 5, 2011
How do I best speed up running of my program?Once I have simplified code as much as possible, made it smaller. By using loops were appropriate etc.
View 7 Replies
Sep 5, 2011
How do I best speed up running of my prog?Once I have simplified code as much as possible, made it smaller. By using loops were appropriate etc.
View 1 Replies
Jun 14, 2011
How to block a program from running twice. Show a message box when the program is executed twice
View 1 Replies
May 28, 2010
Although I signed up a year ago I didnt have enough free time to carry on programming, but have now made some time.
I have spent the past 2 hours trying to look for a code for visual basic 2008 that will check if a program is running.
It would be really helpful if someone wrote the whole code out and made it clear exactly where I put them name of the .exe file
View 2 Replies
Feb 3, 2009
I am creating a program that will check if a program is running, by checking its window title (NOT THE FILENAME, ITS WINDOW TITLE) and seeing if it is currently running.
So far I was only able to check if the program was running by its filename
[Code]...
View 6 Replies
Sep 13, 2008
I'm making a program in VB to check if a certain program is running, and if not, to start it up, because I'm hardly ever at my computer and sometimes the program that is being checked for existence tends to close down often, so I need something that will check for the existence of the program in question, and start it if it's not running
View 4 Replies
Mar 5, 2012
I have a program that 10-20 people use throughout the day. Because things are rapidly fluctuating I occasionally have to take the database offline, or restart the server for other reasons. I'd like to have a better way to make sure no one is currently in the program than walking to each person and asking them.
I don't want to re-invent the wheel if something like this already exists.
The thoughts I had were:
Create a database "history" entry each time users open or close the program to see who is currently using the system. Use WCF to have the clients "tell" the server that they are connected every X seconds.
View 2 Replies
Feb 3, 2010
I have a program that when youpress a button it opens another program then after that it opens a 2nd program. How can get my program to check the system processes and wait until the first program closes before the 2nd one runs?
View 5 Replies
Jan 3, 2012
I would like to be able to close a running program (service) from another program.I know I can use...
Process.Start("C:XxxYyyProg.exe")
to start program: - Prog.exe
Located at: - C:XxxYyy.
But is there any way to also stop (close) Prog.exe from within another program ? The same one that started it for example...PS I should mention that in this case, Prog.exe is a third party program which I can't alter. It does have an Exit option from a right click.
View 8 Replies
Jul 16, 2009
I am looking for some code that will end the processes of a running program. I have found many post on how to do so but I have found that they are over complicating things. I am using this code to see if a processes is running.
code
Dim ProcessRuning() As Process
ProcessRuning = Process.GetProcessesByName("example")
Do While ProcessRuning.Length <> 0
[Code].....
View 6 Replies
Jun 22, 2010
I got error when i running the program
[code]...
View 1 Replies
Jun 7, 2012
So my class was recently given an assignment to make a Tic Tac Toe program with options of playing against the computer, or another person. I was able to 2 player game work, but I have run into a problem with the two player game. Whenever I start debugging and click on one of my buttons (these represent the 9 spaces on a tic tac toe board), the gameplay form freezes, and becomes uncontrollable. The close button on the form doesn't even work, I have to go back to VB and click stop debugging to close the unresponsive form. I checked my original two player game, which has a similar code, but that works just fine. VB does not show any error messages or give any warning.
Option Strict On
Public Class frmGameplayEasy
Dim intTurn As Integer = 1
[code]......
View 1 Replies
Aug 3, 2010
i wounder if any one knows how to add a control when the program is runing ( example when the user press a button a new picturebox will be draw )NOT picturebox1.show Not i got this dim picturebox1 as new picturebox.
View 3 Replies
Oct 24, 2011
i got 2 program here...exe and B.exe.. B.exe is external program.. how can i run my program just once at same time? all start from .exe.. if .exe running twice, a messagebox appear ".exe already running".. if .exe detect B.exe was running, a messeagebox appear "B.exe already running".. i'm using Visual Basic.NET..
View 2 Replies
Dec 14, 2008
I'm a beginner and I have a problem with Visual basic 2008 Express edition . I would like to launch a *.wmv movie when you click on a button. First i tried it with shell command, but it seems it only works with vb created exe files. So I would like to: -Open a file, which is in the same directory as the program
View 1 Replies
Aug 5, 2009
I'm trying to run a program (mame.exe) within a vb program. Mame is a program that allows you to run old video games. The games are stored in rom files. If you want to run mame.exe from a dos prompt, the syntax is "c:/mame.exe [rom]". The [rom] is the particular game you are running. I'm trying to create a front end menu from which I can execute games.
I've tried:
Process.Start(
"c:/mamefiles/mame.exe [rom]")
and I get an error that says it can't find the file.
I tried
Process.Start(
"c:/mamefiles/mame.exe", "[rom]")
and it seems to start the program but immediately shuts down mame.I tried
Shell("c:/mamefiles/mame.exe [rom]")
and again it seems to start the program but immediately shuts down mame.
View 8 Replies
Nov 14, 2010
i have a visual basic program, and it has a button where, when clicked:
Process.Start("Mover.exe")
Now that works fine, except mover.exe needs to be run as administrator to do its job properly,
is there any way that the vb program could run it with admin privelages?
View 6 Replies
Apr 27, 2010
I am writing a program which will require a user to login with a different account from the one they use to logon to the computer with (as they have a normal account and an admin account). The program needs to run under their admin account.
I have made a login dialog that authenticates them ok, but my question is is there any way to make another form run under the credentials typed in on the login form? i.e program loads up the login form, but there after the program uses the credentials supplied in the login form.
View 2 Replies
Jun 14, 2012
I have developed a program with vb2010, created an installer with installaware and installed the program on my develop laptop and on my normal desktop pc (both win 7 64bits, but program runs on 32 bits).So on my laptop it run perfectly, but when I try to run it on my desktop pc, the only thing I see is the admin message (the program needs admin rights) and than nothing happends (even checked the taskmanager, it shows the program for a short while and closes it even as fast as it opens).I don't know what went wrong, the installer checks the framework which is needed (4.0), but I have that already installed on my desktop pc.
View 8 Replies
Sep 15, 2011
I have made a program.Copied the .exe file from "...my documents...indebug"onto an External harddisk.But when I put the harddisk into another pc and launch the program.I can not run it!It says something like "Missing .NET framework 04.03...." or something.Do i need to install VB on that pc too?Or do I need to update the framework? I'm tryin to run the program on a pc. Where I got NO admin-rights.
View 11 Replies
Sep 1, 2010
On my program the user clicks a button which then runs the main code for my program. The problem is once the code is executed I can no longer move or interact with any form boxes, reliably at least . Sometimes there will be a period of delay where I can move it for an instance. Is there anyway I can make it so that my form is able to be moved while the program is running?
View 3 Replies