views:

21

answers:

0

Hi all,

I am doing a WPF applications that controls different processes (every process communicates with the GUI over the network). I want to be able to send a command to those processes asking them to save some information in a file on their computer. For now, in the GUI, I simply display a TextBox and the user must enter the correct file path, and than I use this information to send the command. But this is rather annoying since the user must know the path without having to browse, and it is also more error prone. What I'd like to display is a SaveFileDialog (or something that looks like it), but it must browse on the remote computer so that the path I get in the FileName property is a valid path for the remote process.

Any idea how to do that?