How to make the GUI visible when loading WiSCP in .NET mode?
Dim sessionOptions As New SessionOptions With sessionOptions .Protocol = Protocol.Ftp .HostName = strHostName .UserName = "data" .AddRawSettings("ProxyMethod", "2") .AddRawSettings("ProxyHost", "127.0.0.1") .AddRawSettings("ProxyPort", "" & intProxyPort & "") End With Using session As New Session session.Open(sessionOptions) End Using