trying to shell "/Windows/iExplore.exe" MINIMIZED on .NET CF using Process.Start

Jason.Jordan

Member
Joined
Dec 4, 2007
Messages
8
Programming Experience
10+
trying to shell "/Windows/iExplore.exe" MINIMIZED on .NET CF using Process.Start

Trying to do the following in .NET compact (code copied from Microsoft site)

Dim s As New ProcessStartInfo("/Windows/IExplore.exe")
s.WindowStyle = ProcessWindowStyle.Minimized
s.Arguments = "www.google.com"
Process.Start(s)

However startInfo.WindowStyle seems not to be available in .NET compact
'WindowStyle' is not a member of 'System.Diagnostics.ProcessStartInfo'.

any ideas ?

(I'm using this method to start a web connection before ftp-ing
up to HQs server /Program files/LiveNote/OutBox/notes.txt
& down /Program files/LiveNote/InBox/notes.txt
explorer pop up to grab focus - so I cannot see programs ftp results
could be there is a cleaner way???)
 
Back
Top