interaction between javascript (desktop application) and C#
- by Roman Dorevich
Hello.
I am writing for my desktop some application for handling some services.
I wrote in C# an application that calculates something (lets call it cl.exe)
I created a .bat file that starts the cl.exe.
I want to call that .bat file from my javascript so I WShell.Run(**.bat).
2 question:
The javascript program will not
continue till the cl.exe will end ?
(It is synchronized ?)
The cl.exe returns a value. How can
the javascript take it (It is a
javascript program that call .bat
file that wrapp the execution of the
cl.exe) ?
Thanks