[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.remoting

FolderBrowserDialog Remoted

Mike Pollett

10/8/2004 5:56:00 PM

How can you show the FolderBrowserDialog in a client window with the
FolderBrowserDialog tree showing the directories on the server? Using .net
remoting and C#.

Thanks for any help.

Mike


1 Answer

Robert Jordan

10/8/2004 6:49:00 PM

0

Mike Pollett wrote:

> How can you show the FolderBrowserDialog in a client window with the
> FolderBrowserDialog tree showing the directories on the server? Using .net
> remoting and C#.

You cannot. FolderBrowserDialog, like every other Component
or Control, is a MarshalByRefObject, that never leaves
its application domain. Remoting isn't a X-Window or Remote Desktop
replacement ;-)

bye
Rob