VS2010 Running 2-3 Applications At The Same Time?
Mar 21, 2012
I have created a main application form that has buttons that start up various other applications.
Following advice on here from a previous post, I have imported all the files of each separate application into the main application.
There will be times when the user wants to run more than one of these applications at the same time. I know you can just import the '.EXE' file of each app, and you can then run several at a time. But because I have all the files without the .EXE, you can only run one at a time, you have to close one app to start another.
My question is simply; Do I have to import the .EXE file of each app, or is there some code I could put in my main form that will allow me to run more than one app at a time? (the reason for having all the files of each app is so you can make any alterations without having to open each app separately).
The code below is a typical code for one of the applications start buttons, all the buttons codes are the same, apart from the app name, the buttons are imported, so not standard buttons.
Private Sub btnCoordsCalc_ClickButtonArea(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles btnCoordsCalc.ClickButtonArea
Dim frm As New frmHoleCoordinateCalculator
[Code]......
View 2 Replies
ADVERTISEMENT
Jul 5, 2010
I'm going to design an Application (C# or VB.NET) which use .NET Framework to run for very long time. It may be restarted every year or even more...Is there anything (using special design patterns or so) which I must care about in designing "Long time running applications in .NET"?
View 3 Replies
Jul 24, 2009
Is there a way to, when a parent application is opened up, that at the click of a button, or anything of designated event, that this parent application can open a secondary one?
View 11 Replies
Sep 29, 2010
This may be a strange question and have no answer but I thought I would post it to see how you would go about doing it. I have a line of code:
Grade = Math.Round((Math.Abs(CorrectAnswers) / TotalQuestions) * 100)
Basically that line just figures out the grade no major code work there, what I want to do is execute that specific line with different variables without running the whole application and navigating to the point in the application which for this segment would be completing a 150 question exam, or coding some #temp page and running it from there.
View 3 Replies
Oct 20, 2009
How can I get all of the running applications? If I have to use Process.GetProcesses, then how can I determine which are applications (appear in the task bar)?
View 4 Replies
Feb 22, 2011
i am having trouble executing applications that havent got the prefix .exe here is the code tat i mostly found in the internet can someone help so it will be able to play with all applications tried to make it play with msi but it wont play.
[code]...
View 12 Replies
Mar 14, 2010
Anybody have an idea to list running programs ; not all running background process. I tried following code, but which list all process names. eg: notepad.exe, vb6.exe, svhost.exe etc. but what i need is the running window based programs( with windows.)
1st method
Dim process As Object
For Each process In GetObject("winmgmts:").execquery("Select * from Win32_Process")
Debug.Print process.Caption
[code]....
View 2 Replies
Sep 10, 2009
I developed an application I need to run exclusivly under DOS mode (no Windows), when I wrote the app I created it as a CONSOLE application, when I run this EXE under the DOS mode it says it can't RUN in DOS mode? Is there ANYWAY I can make this work?
View 5 Replies
Sep 7, 2009
I have seen that unsigned .net applications will not run on most college networks and as part of a school applications i am trying to let these applications run on a protected network. The app is written in VB 2008 and is signed strongly.
View 1 Replies
Mar 16, 2012
I have created an application that will run several other Engineering applications from within it.
I have my main form which will have a button on it for each application that has to be run. All the other projects are complete and have their respective '.EXE' files, which I have added to the main project.
I have coded one of the buttons to start an application, this is as follows;
Private Sub btnCoordsCalc_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCoordsCalc.Click
Process.Start(My.Computer.FileSystem.CurrentDirectory & "Hole_Coordinates_Calculator.exe")
End Sub
This method works OK and does start the application. So my question is; Is this the correct way to do it, or should I import the whole project into my main project?
View 1 Replies
Nov 19, 2009
i am a casual user of visual basic express 2008 and use Vista Home Edition Ive been using it for a while now, with no problems at all. Recently i started to take a look a WPF in my apps, again no problems.(visual basic express ran fine, debugging ran fine & finished apps ran fine)
However for some reason (and all of a sudden) i keep getting errors and none of my apps will start up.
The errors are:vshost.exe has stopped working (I get this when visual basic express starts)PresentationFontCache.exe has stopped working (I get this when visual basic express starts a wpf app)
(Application Name) has stopped working (I get this when running finnished apps)I've tried all the usual methods (Reninstalled VBE & .Net3.5)I cant see why it has stopped working all of a sudden?
View 7 Replies
Nov 19, 2009
he lack of VB terminology in the following question - this is all fairly new to me. Anyway, on to my question.I have 2 seperate applications running and they both need to access the same array. Is it possible? If so, how?
View 2 Replies
Mar 28, 2011
I have an application that will not load unless my local SQL Server is running on an Vista Home Premium machine. This started after a .Net 1 to .Net 4 conversion. I am using a sub main sub that is not being called (msgbox is not fired when entering the app), however, I see the app through taskmgr with increasing memory usage, but then the app is removed from the list. By design, if the program cannot locate a SQL Server a form pops up with a connection box to locate the SQL Server for the app. How it determines if it has a valid connection is the program looks for a connection string in the registry, then attempts to connect to it, however, none of this code executes because of the failure to enter into the sub main.The two machines I have tried the 32 bit app on
XP Pro: Failed / Using SQL Server 2008 Express
Windows 2003 Server: Works / Using SQL Server 2008 Developer
Both machines have .Net 4 Client Profile with Extended?
View 10 Replies
Dec 22, 2011
Is there a way in VS2010 to monitor net usage, and calculate the current/total download and upload while my application is running?
View 9 Replies
Jan 29, 2009
I'd like to ask assistance for the following scenarios below:
1. I want to check whether certain applications are already running or not.
2. The applications i need to check are the ff:
a. MS Word
b. MS Excel
c. Notepad
d. MS Project
e. MS Powerpoint
3. If any of these are running, the window title of that application will be filled-in in a listbox.
View 2 Replies
Jun 18, 2009
I have created a simple windows forms application. I would like to be able to connect to that running application and view certain properties from a seperate windows form application. In VB6 I would have run the first application and then called GetObject to connect to the instance. Does anybody know how I could do this in .Net. I'm guessing I'd have to use reflection to get a list of applications running and then somehow connect to them but I'm not sure how to do this?
View 5 Replies
May 17, 2009
I am running a client-server application and am having problems with privileges (I assume). The application is developed using 2005 Express. The Client is running Win XP Home whilst the server is running Win 2003. When the user on the client has Admin rights on the local machine, everything is OK; however when the user has only User rights, an error occurs: VB will not run.
View 14 Replies
Jun 10, 2009
I want to get the detail of all the applications running in windows like
Application name : Status : User : Resources Usage : etc....
also I want to get the detail of all the users logged in at a time
View 7 Replies
May 12, 2012
I am wondering if it is possible to run an application from a domain account that has restrictions on running .exe files by coding in the local administrator details (username / password).
View 3 Replies
Jun 7, 2012
i would like to scan all the processes(aplications) running in a system before starting my program. and also need to close some programs before starting my program.how to read all the processes ruining in a system one by one.
View 1 Replies
Jul 22, 2011
I know this code will give a list of processes
ListBox1.Items.Clear()
Dim ProcessList As System.Diagnostics.Process()
[code].....
View 3 Replies
Jun 8, 2011
Using any version of .NET how do you find out which zone a particular share is classified under. I am having a problem identifying if a share where my referenced dlls reside is in the "intranet zone" or "internet" zone relative to some user machine that is running my .NET application. I suspect this is a problem because I am having a problem accessing referenced dlls from a share on some machines but not others. How can I tell which zone .NET is classifying that share in so I can adjust permissions accordingly?
View 1 Replies
May 28, 2009
Is there any way to loop through the applications that run at a time (the application list from task manager) and get the application's caption?
At a moment I have two instances of "acad.exe" but they will have different application name and I have to choose one of them, but I don't want to close the other one.
If I use the process list I get only the "acad.exe" name and I cannot differentiate between them.
View 2 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
Aug 2, 2010
I am developing an application whereyby I want to run a check at 5pm each day. It will check if the next day is the due start of a project and if so send a notification email to the assigned developer, does anyone know the easiest way of doing this.
View 8 Replies
Nov 22, 2011
My desktop application having Time Out exception when running a command in SqlTableAdapter which is inside a SqlTransaction. The error only occur every first time running sql after application start. A few pieces of codes having the same problem. After the exception, the SqlTableAdapter can run and complete like normal.
Also I noticed most of the time a Select command also very slow when first time running after application started.
Below is one piece of the code that having this problem:
' Business Layer
' Transaction Begin
' da is Data Access layer class
[Code].....
View 6 Replies
Nov 17, 2009
I'm making a new program so I won't be able to post my code here yet.
But I wanted to ask you fine folk how I can check if a program is running for the first time.
[code...]
Just start the program normally and when they click the menubar ask for the password they set in the first time
if it's a little iffy on my side but I just started this project and I've only made the GUI and I have no idea what so ever how to do this.
View 5 Replies
Sep 22, 2010
I have a project that will run while I'm working on it only once. The second time I try to run it I get the following error.
The operation could not be completed. The process cannot access the file
Does anyone know what that error means and why I'd have to restart my computer every time I want to run the project a second time?
View 6 Replies
Sep 29, 2010
When I create a shape with the form Open where is the code or all the information like
[Code]...
View 5 Replies
Sep 13, 2009
Im using a MySQL Server and id like to know the date and time that its running...Here's the query:
SELECT GetDate
But im getting an error saying there's no such field in the database.Everything is fine i know how to connect im just bored writing the code here....Do i have to Execute the query or read it?Im using a Reader...
View 1 Replies