Click here to Skip to main content
16,010,268 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Threading Problem in VB.NET Pin
Dave Kreskowiak16-Oct-08 7:13
mveDave Kreskowiak16-Oct-08 7:13 
GeneralRe: Threading Problem in VB.NET Pin
Paul Conrad16-Oct-08 7:46
professionalPaul Conrad16-Oct-08 7:46 
QuestionOpration has timed out... Pin
rohitkpurohit16-Oct-08 4:15
rohitkpurohit16-Oct-08 4:15 
AnswerRe: Opration has timed out... Pin
Dave Kreskowiak16-Oct-08 6:49
mveDave Kreskowiak16-Oct-08 6:49 
QuestionClosing an application after it was opened with System.Diagnostics.Process.Start Pin
farmer16-Oct-08 2:58
farmer16-Oct-08 2:58 
AnswerRe: Closing an application after it was opened with System.Diagnostics.Process.Start Pin
d_camillo16-Oct-08 3:13
d_camillo16-Oct-08 3:13 
GeneralRe: Closing an application after it was opened with System.Diagnostics.Process.Start Pin
farmer16-Oct-08 4:52
farmer16-Oct-08 4:52 
GeneralRe: Closing an application after it was opened with System.Diagnostics.Process.Start Pin
Dave Kreskowiak16-Oct-08 6:41
mveDave Kreskowiak16-Oct-08 6:41 
farmer wrote:
System.Diagnostics.Process.start("c:\test.edp")


You're missing the returned object from the Start method. It's:
Dim newProc As Process = Process.Start("C:\test.edp")
... do something that waits for the process to complete it's work
newProc.Close()

You may want to read up on the Process class before you start throwing code around. It helps to know what's actually going on and what you're options are for controlling the new process you launch.


A guide to posting questions on CodeProject[^]



Dave Kreskowiak
Microsoft MVP
Visual Developer - Visual Basic
     2006, 2007, 2008




GeneralRe: Closing an application after it was opened with System.Diagnostics.Process.Start Pin
Alan N16-Oct-08 6:45
Alan N16-Oct-08 6:45 
AnswerRe: Closing an application after it was opened with System.Diagnostics.Process.Start Pin
Jon_Boy16-Oct-08 6:59
Jon_Boy16-Oct-08 6:59 
QuestionInsufficient memory to continue the execution of the program Pin
jhyn16-Oct-08 0:16
jhyn16-Oct-08 0:16 
AnswerRe: Insufficient memory to continue the execution of the program Pin
Steven J Jowett16-Oct-08 1:26
Steven J Jowett16-Oct-08 1:26 
AnswerRe: Insufficient memory to continue the execution of the program Pin
rohitkpurohit16-Oct-08 4:21
rohitkpurohit16-Oct-08 4:21 
QuestionMaking a colored string Pin
Ballita15-Oct-08 23:30
Ballita15-Oct-08 23:30 
AnswerRe: Making a colored string Pin
Gagan.2015-Oct-08 23:51
Gagan.2015-Oct-08 23:51 
AnswerRe: Making a colored string Pin
Steven J Jowett16-Oct-08 1:29
Steven J Jowett16-Oct-08 1:29 
Questionsynchronization of dataset with sql server database Pin
praveenkumar palla15-Oct-08 20:09
praveenkumar palla15-Oct-08 20:09 
AnswerRe: synchronization of dataset with sql server database Pin
Dave Kreskowiak16-Oct-08 2:28
mveDave Kreskowiak16-Oct-08 2:28 
QuestionDLL Issue Pin
Tauseef A15-Oct-08 17:10
Tauseef A15-Oct-08 17:10 
AnswerRe: DLL Issue Pin
Dave Kreskowiak15-Oct-08 17:48
mveDave Kreskowiak15-Oct-08 17:48 
GeneralRe: DLL Issue Pin
nishkarsh_k15-Oct-08 20:15
nishkarsh_k15-Oct-08 20:15 
QuestionSample Code to get data in a Table A not in other table B to Table C automatically Pin
Thayhor15-Oct-08 13:43
Thayhor15-Oct-08 13:43 
AnswerRe: Sample Code to get data in a Table A not in other table B to Table C automatically Pin
jzonthemtn15-Oct-08 13:51
jzonthemtn15-Oct-08 13:51 
AnswerRe: Sample Code to get data in a Table A not in other table B to Table C automatically Pin
Guffa16-Oct-08 1:34
Guffa16-Oct-08 1:34 
QuestionNetwork enabled app Pin
Ekjon15-Oct-08 11:08
Ekjon15-Oct-08 11:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.