PC Review


Reply
Thread Tools Rate Thread

Displaying a textfile using Wordpad.

 
 
Lorimer
Guest
Posts: n/a
 
      22nd Nov 2004
Thanks in advance for any help received.

Is it possible to automatically display a text file in Wordpad using VB.NET
and if so how do I do it?

Thanks again

L


 
Reply With Quote
 
 
 
 
Cor Ligthert
Guest
Posts: n/a
 
      22nd Nov 2004
Lorimer

\\\Notepad
Dim p As New Process
Dim pi As New ProcessStartInfo
pi.arguments = "c:\windows\win.ini"
pi.FileName = "notepad.exe"
p.startinfo = pi
p.Start()
///
Is this sample as well OK?

Cor

"Lorimer" <(E-Mail Removed)>
>
> Is it possible to automatically display a text file in Wordpad using
> VB.NET and if so how do I do it?
>
> Thanks again
>
> L
>



 
Reply With Quote
 
Ken Tucker [MVP]
Guest
Posts: n/a
 
      22nd Nov 2004
Hi,

Dim psi As New ProcessStartInfo

psi.FileName = "wordpad.exe"

psi.Arguments = "C:\test.txt"

Process.Start(psi)



Ken

------------------------

"Lorimer" <(E-Mail Removed)> wrote in message
news:2Kjod.51$(E-Mail Removed)...
Thanks in advance for any help received.

Is it possible to automatically display a text file in Wordpad using VB.NET
and if so how do I do it?

Thanks again

L



 
Reply With Quote
 
Herfried K. Wagner [MVP]
Guest
Posts: n/a
 
      22nd Nov 2004
"Lorimer" <(E-Mail Removed)> schrieb:
> Is it possible to automatically display a text file in Wordpad using
> VB.NET and if so how do I do it?


\\\
Imports System.Diagnostics
..
..
..
Dim psi As New ProcessStartInfo()
psi.FileName = "wordpad.exe"
psi.Arguments = "C:\foo.txt"
Process.Start(psi)
///

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>


 
Reply With Quote
 
Shiva
Guest
Posts: n/a
 
      22nd Nov 2004
Process.Start ("wordpad.exe", "<path to the txt file>")

"Lorimer" <(E-Mail Removed)> wrote in message
news:2Kjod.51$(E-Mail Removed)...
Thanks in advance for any help received.

Is it possible to automatically display a text file in Wordpad using VB.NET
and if so how do I do it?

Thanks again

L



 
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
wordpad displaying in reverse =?Utf-8?B?Zmk=?= Windows Vista General Discussion 0 10th Oct 2007 01:02 PM
How do we install wordpad on a Windows XP computer with WORDPAD.EX_ ? Susan Grossman Windows XP General 31 12th Mar 2007 09:29 PM
How do we install wordpad on a Windows XP computer with WORDPAD.EX_ ? Susan Grossman Windows XP New Users 31 12th Mar 2007 09:29 PM
Wordpad displaying html source pages in Chinese font WindowsXP-he Windows XP General 0 7th Apr 2006 04:32 AM
Textfile Praetorian Guard Microsoft Outlook Discussion 4 19th Jan 2004 02:08 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:52 PM.