Re: VB.NET sample ? (General questions)
Bertrand,
problem is that you initialize component twice - and 2nd instance is defined locally, and destroyed when funcion Form1_Load exits.
So, in Form1_Load change
Dim Ssh1 as new ....
to
Set Ssh1 = new ....
and that should do the trick.
Hope I helped.
Kreso