P
Pipo
Cor Ligthert,
Yes, you did...then I replied with:
then Herfried K. Wagner said:
Gladly the reference to "Microsoft.VisualBasic.dll" cannot be removed...
.
So I tell him that I replied to you, right?!
That's what happens when replies disapper or previous lines are being
removed.
The discussion is hard to follow then.
Your reply was:
Yes, you did...then I replied with:
Thanks for the answer.
(No way I would ever reference the VisualBasic libary)
then Herfried K. Wagner said:
Gladly the reference to "Microsoft.VisualBasic.dll" cannot be removed...
.So I tell him that I replied to you, right?!
That's what happens when replies disapper or previous lines are being
removed.
The discussion is hard to follow then.
Your reply was:
To give it exact as you asked, set in C# a reference to the
Microsoft.VisualBasic Net runtime and than this code.
\\\\
Microsoft.VisualBasic.Interaction.Shell
("@C:\App2.exe",Microsoft.VisualBasic.AppWinStyle.NormalFocus,false,-1);
this.Close();
///
However better is it to take the last answer from Herfried, that you can
use in VBNet as well by the way.
\\\\
Imports System.Diagnostics
.
Process.Start("C:\foo.exe")
me.Close()
///
I hope this helps?
Cor