vote up 0 vote down star

Hi

We have a requirement to copy a .txt file into the client machine and open the file using notepad.exe.

We develop our application using MS Visual Studio 2008 VB .Net.

Any experencied this kind of requirement?

Help required...

Thanks Shoba Anandhan

flag
This sounds pretty standard stuff. Where are you copying the file from? – pavium Nov 6 at 6:57
The tricky part is the permission settings, coding should be quite straightforward. – o.k.w Nov 6 at 6:59

3 Answers

vote up 0 vote down

How about something like this:

    Dim FileToCopy As String
    Dim NewCopy As String
    FileToCopy = "\\SERVER-NAME\c$\file.txt"
    NewCopy = "c:\file.txt"
    If System.IO.File.Exists(FileToCopy) = True Then
        System.IO.File.Copy(FileToCopy, NewCopy, True)
    End If
    Shell("notepad.exe " & NewCopy, AppWinStyle.NormalFocus, False, -1)

If you put that code in the form closing event it will copy the text file from the server to the client and open it in notepad.

You might want to change the new copy location to a better choice - something they will definately have permission to.

link|flag
vote up 0 vote down

You can use an MSI with the .txt file... and a custom action that opens the file after the installation is done. If the client machine is in the same network, try Powershell (remoting services).

link|flag
vote up 0 vote down

This seems like a job for Powershell or Batch, not VB.NET

  copy foo.txt .
  notepad foo.txt
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.