PC Review


Reply
Thread Tools Rate Thread

Re: Process - no window open

 
 
Hilton
Guest
Posts: n/a
 
      5th Sep 2005
Perfect - thank you!

Hilton


"AMercer" <(E-Mail Removed)> wrote in message
news:F36687FA-EF23-4314-99A7-(E-Mail Removed)...
> > How do I get it to run in the background without opening a window each

time
> > I call process.Start()?

>
> This vb fragment works for me and also reads back stdout of the launched
> process. I'm not sure how much of this is really necessary - I stopped
> experimenting when I got it to work.
>
> Dim s As String
> Dim p As New Process
> With p.StartInfo
> .FileName = "whatever.exe"
> .Arguments = "arg1 arg2"
> .UseShellExecute = False
> .RedirectStandardError = True
> .RedirectStandardInput = True
> .RedirectStandardOutput = True
> .WindowStyle = ProcessWindowStyle.Hidden
> .CreateNoWindow = True
> End With
> Try
> p.Start()
> s = p.StandardOutput.ReadToEnd()
> p.WaitForExit()
> Catch e As Exception
> s = e.tostring
> End Try
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
When I open Word the configuration process window opens =?Utf-8?B?RXVnZW5l?= Microsoft Word New Users 1 9th Sep 2007 06:25 PM
IE wont open window if Right click open in new OR target _blank Or javascript Popup new window Windows XP Internet Explorer 2 9th Dec 2005 02:34 AM
failed to open. Operating system error = 32(The process cannot access the file because it is being used by another process.). sql Microsoft Access ADP SQL Server 0 16th Feb 2005 07:36 AM
ie6 - cannot open in new window and links which open new window no longer work kevinf Windows XP Internet Explorer 2 12th Feb 2004 02:15 PM
Open link in new window and javascript open window not working. Any ideas?? Eric K. Windows XP Internet Explorer 2 19th Sep 2003 03:03 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:23 AM.