Ok Antonio, many of us made thousands of lines of marvellous code with fivewin, trhrough decades
, thanks to your tremendous work.
Now, all is web and html and .net, so, what an incredible step over, would be to use our old but overtested fivewin algorythm in .Net !
Now, i was able to use all my old fivewin code from visualstudio .net project, by simply calling (running) my exe without activate ANY window.
That is, no need to change my code; simply i do not Activate any window.
This way i can maintain reference to main ownd and owndclient window without changing a line of code
and write the output i need, into a file that i can then read from c# .net.
I then tried to look at your fivenet project that seems to allow to run a windowed exe from net.
So, i registered with
c:\Windows\Microsoft.NET\Framework\v2.0.50727\regasm fivenet.dll /tlb
and also with
C:\Windows\Microsoft.NET\Framework\v4.0.30319\regasm fivenet.dll /tlb
then from my c# net project i tried to run one of your exe (tutor01.exe) with
scriptProc.StartInfo.FileName = @"tutor01.exe";
scriptProc.Start();
scriptProc.WaitForExit();
but i have no message prompt and no error from .net
Sorry if i post here referring to fivenet, but as i understand better the architecture i will post in fivenet forum.
Thanks