Executing An External App?

Oct 1, 2010

im working in a windows app that execute another apps.. writing the name of the app in a text box (i.e firefox.exe) and click enter to run it im using >> (System.Diagnostics.Process.Start(app_name.Text)) to run apps it works fine with me .. but it didnt with some apps like when I write for example ares.exe it says:Win32Exciption was unhandled :The system cannot find the file specified

View 1 Replies


ADVERTISEMENT

Executing An External Application In A Form?

Apr 23, 2010

i'm working on visual basic with an external program and want to lunch this program from visual basic like withe the shell but what i need the most is to make him incorporated into the form means that the executable is lunched within the form included into it in order to make them like one part for the user is there any way to make it with any version of VB or .net or visual studio even the 2010 ?

View 12 Replies

Executing An External Program In Powerpoint And Waiting For It To Finish Before Moving On To More Code?

Nov 23, 2011

I would like to execute an external program within powerpoint after the presentation has loaded so i can see if its working. In short my overall objective is to execute the external program which will open up the command prompt and use the sendkeys method to sendkeys to command prompt which help it to run a script at the correct time (which is after presentation is loaded).

View 9 Replies

.net - Yield/Sleep/throttle Another Thread While It Is Executing A Method In An External Library - Specifically Jurassic?

Jun 25, 2012

I am using a .Net JavaScript implementation called Jurassic to run user-controlled scripts within my .Net 4 WPF application coded in VB.Net - C# answers are fine. The script engine runs on its own thread and provides an API for the script to interact with my application. This all works really nicely until a user executes a script that causes an infinite loop and takes out a core of the processor.

[Code]...

The reason I care about keeping the thread alive is because the user who wrote the script and the user who is running it may not be the same, and I want to keep the experience as smooth as possible the the user running the thread. There also might be legitimate situations in which a single JavaScript function would run for a long time and I do not want to kill that, I just want to stop being allowed to hog the resources.

Solutions that involve stopping the thread from slowing down the system but that still show high CPU usage are not preferable because I do not want the user to wrongly feel that the application is resource intensive.

View 1 Replies

Zip A Folder Without Any External Dll Nor Any External References?

Feb 3, 2012

I wanted to know if it is possible to Zip a folder without any external dll nor any external references - just with native features.I've been able to Zip files with System.IO.Packaging, but it does not include folders and I cannot tell it to Zip the parent folder.I know there are external dll and so, but I'd like to know if it's possible to make it from a native way.

View 1 Replies

Do Until Loop Not Executing?

Nov 16, 2010

y question is I have a program that is used to add inputs to an array when the OK button is clicked. My problem is that the after the first click of the OK button the Do while loop does not execute again for a 2nd click.lling out my hair. Here is the code.

Public Class InputValue
Public Shared InputArray(0 To 9) As Integer

[code].....

View 8 Replies

Executing A DLL From SQL Server?

Feb 3, 2010

we want to write a DLL using VB.NET 2008 using .Net 3.5 that performs an HTTP request we then want to call the DLL From SQL Server 2005 (in a trigger) and pass the DLL some variables and get a return value.Where im at in the process.I have created the DLL 'HTTPDLL.dll'

Source:

Imports System
Imports System.Configuration
Imports System.Collections.Generic
Imports System.Text

[code].....

Perhaps i am calling it incorrectly but i havent been able to get it to work (always return 'invalid class string')

View 3 Replies

Executing A FOR Loop?

Feb 1, 2011

Just trying to run a basic program where the user is prompted to enter five names, one at a time. I'm prompted one time. After entering one name I get the following error "Unhandled exception: System.NullReferenceException:Object reference not set to an instance of an object"

Here's the

Module Module1
Sub Main()
Dim SortedList
For SortedList = 1 To 5

[code]....

View 2 Replies

Executing SQL From Code ?

Jun 22, 2010

I am running SQL 2005 Standard Server. I am using Visual Studio 2010 for development.

Let me just say that what I have below works, I would just like to have some constructive critisism.

CODE:

View 2 Replies

Name Of Currently Executing Method?

Dec 28, 2009

how to get the name of the currently executing method? I was thinking it was somewhere under My.Application, but I can't find it...

View 4 Replies

Sql - ExecuteNonQuery Not Executing - .net?

Oct 8, 2009

I'm trying to execute a SQL command, but I just can't find out why this is not working.This is how I defined the "execute" function in my class named "clsSQL":

[Code]...

View 6 Replies

Sub Routine Not Executing?

Feb 4, 2011

I have the following code:

Code:
Imports System.Data.SqlClient
Imports System.Data
Public Class Main[code]...

and the sub Exceptionquery is not working. I can verify this because it is supposed to create a new table called scratchpad3. what I may be missing in that sub routine that isn't allowing it to work?

View 8 Replies

Two If Statements - Why One Not Executing

Jun 27, 2012

I have two if statements and my project sees one and not the other. Here is the code:
If (IsPostBack) Then
HandleUploadedFile()
End If
Dim savePath As String = "Images "
If (fileUpload.HasFile) Then
[Code] .....
When I trace my code I find it goes to the second if and then go to end if without running the code inside the conditional.

View 2 Replies

VS 2008 Why Sub Executing Twice

Jul 31, 2009

I have a sub in which I call different subs, depending on a value I pass through. It works fine for all but the last one. It executes the sub I call but then comes back to the first sub and runs the second one again

[Code]...

View 18 Replies

.net - Stop Executing Code?

Dec 14, 2011

I am compiling and running code at runtime. Can I stop this code midway through if I wish? Like the 'stop' feature in Visual Studio that stops the code if desired?

View 2 Replies

Asp.net - Executing A WebMethod From Javascript?

May 31, 2011

I'm trying to eliminate a VB.NET button on my aspx page. Trying to use javascript and ajax to execute the same code my vb had.I put in a script manager, set EnablePageMethods to true, added a static subroutine, and referred to it in my javascript function (BTW -- this seems a lot of work just to execute an existing subroutine). The javascript calls my code-behind and it almost works.Problem is, now I'm getting a NullReferenceException when SimulatePrintBatchClick tries to do anything with the controls.

Error is 'Object reference not set to an instance of an object', line is 'pnlVars.Controls.Clear'

Here's the code from UW.aspx:

<WebMethod()> _
Public Shared Sub PrintBatchFromJSWM()
Dim UWI As New UW

[code]....

when I run the above code in PrintBatch_Click it all executes just fine. I really don't understand why it bombs out as a subroutine.

Perhaps this is not the way to do this, but I'm at a loss for finding a different way. Originally this code was handled by an ASP/VB button, but the specs have called for it to be deleted.

View 1 Replies

Backgroundworker Is Not Executing Whole Code

Jun 21, 2010

background worker is not executing all the code in side it. windows application..Although there is not any exception.

View 6 Replies

Check Whether Still Executing Command?

Aug 24, 2010

I can step through a routine that creates sql tables and the process is successful. However when I simply allow this same routine to run it does not.[code]...

View 1 Replies

Click Event Not Executing

Jun 23, 2011

First, Im new to VB but have been programming for 20 years.

Ive been creating an application that starts with a form that has 4 text boxes with corresponding search buttons.You key something in to one of the text boxes and click the corresponding search button and it would execute the code in the button click event. It worked.

Ive done something though to make it not work.When I run it and click on the button it doesnt run the click event.

If I double click on the button in the development mode, it should, I thought, go to the click event in the code but it doesnt.It creates a new click event with the same name as the original but with a_1 appended on to the end of the name.

View 2 Replies

Code For Executing Sql Query

Dec 31, 2010

I`m now at the point calling server from vb.net, and run query inside vb.net code.I have write two codes on button click. One button is checked server connection, other should execute query for server table.Connection code is working, as I have set two messages, and getting successfull message. Second code is not working, as nothing happened when press button. Sql statement is very simple, and it works if I run it manually.[code]

View 19 Replies

Commands Not Executing After A Statements

Apr 26, 2011

I have some code in Form Load event. It is doing fine. But when it reaches to pick data from database, no commands are executing after that. There is no error at all but it just goes silent.[code]...

View 3 Replies

Error When Executing My Application

Apr 7, 2009

Since i set my 3rd party addins to be copied local i am now getting an error which is below.

When i selected Build i set the build to release. Why is it so difficult to get your application published and running? It runs fine in debug but when you come to do a release build it wont run.[code]...

View 3 Replies

Executing A File Hidden?

Dec 2, 2009

how would i got about executing another file from my application with hidden attributes so its not visible?

View 5 Replies

Executing A File In Shell?

Jan 23, 2009

Here's an example code so you can understand my problem:

Dim test1 As String
Dim test2 As String
Dim test3 As String

[code]....

shell.Run("""testProgram""test1 test2 test3 test4") 'I know this is wrong.My problem is in the last line. I want the contents of the strings to be printed, not the names of the strings, and I don't know how to do that.

View 5 Replies

Executing A Ssis Package?

Mar 8, 2010

I created a ssis package in visual studio 2005. I want to execute the package from vb.net code. How can this be done?

View 1 Replies

Executing Another Executable File From VB?

Sep 15, 2010

I'm trying to make a program that has command buttons, each running a different file. I have added some files so far, but I encountered a problem with a couple of them.

For example, I want to run Zuma's Revenge! right from the program, but it is not working. If I run the game from outside the program, it runs perfectly, but when I try running it from the program, it keeps saying "Zumas Revenge! - Adventure has stopped working."

What really confused me, is that the game is running normally if I run it from its folder or by using the shortcut, while from the program it isn't.I'm using Windows 7, with Visual Basic 2010 Express.

'Here's the code I'm using:

Private Sub Zumas_Revenge_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Zumas_Revenge.Click
Process.Start(My.Application.Info.DirectoryPath & "umas Revenge! - AdventureumasRevengeAdventure.exe")
End Sub

View 1 Replies

Executing Another File Hidden?

Dec 5, 2009

well i tried to make this vb code execute another app *hidden*(as in window not visible) and it didnt work because the window is still fully visible.. i dont know why, i think its just because of this particular kind of exe or something..

is there another way to really execute this file hidden? i dont know how to do it but i heard about mabye threading it or making it a windows service? will that solve this?

[Code]...

View 8 Replies

Executing Application On A Share?

Apr 23, 2010

My problem relates to executing an application located on a network share and getting various security exceptions in trying to do so. By far the greatest number of replies to this sort of problem relate to creating a new Code Group under Runtime Security Policy in the .NET Framework (v2 in this case) Configuration tool. However try as I might, and I've spent hours, trying various things with the config tool (and with caspol), I just cannot get my app to work.Still fails on things like reading command-line parameters and displaying a web page in a WebBrowser control or firing up a browser using Process.Start. In fact I've regressed to creating a VB6 version for this particular task as time is off the essence. Which works fine! As I mentioned lots of people have posted on this topic and not s few of them seem not to have resolved their issues either. So I was wondering if anyway had come up with a definitive solution for this problem which, in my case, seems to affect XP machines only? Seems to work OK on Vista, 7, 2003 Server, etc - although I haven't run exhaustive tests in these environments.

View 1 Replies

Executing COM API Calls From SQL Trigger

Apr 2, 2012

I have a CRM application that I would like to programatically post new records and updates to, based on values in other tables getting inserted or updated. Problem is because of how this CRM app was designed I cannot use straight SQL insert/update SQL commands. This is because the database has some proprietary account#/record ID generation algorithm, and also writes to a log table using some pretty cryptic looking values.

The only way to ensure the integrity of the data is to use a the COM based API they provide. How can I send calls to this API from SQL Server code, I'm guessing a CLR user defined function? Can anyone point me to such tutorial on the web?

The updates I am making MUST be in real time, that is why I need to use a trigger that calls this app's API.

View 2 Replies

Executing Files From Resources?

Jul 8, 2009

I have an executable that i added to the project and I would like to be able to execute it with file arguments/parameters... is there a way i know how to execute a file but there seemed to be a problem when i was trying to get the .exe to execute while it is a resource.[URL]

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved