Under Ubuntu I have coded a very simple ml.ml in OCaml:
let () = print_string "hello world, in OCaml\n"
And a simple c.cin C:
#include <stdio.h>
main() {
printf("hello world, in C\n");
return 0; }
Then I compiled it by ocamlc -o mlexe.exe ml.ml and gcc -o cexe.exe c.c. Launching mlexe.exe or cexe.exe under a terminal of Ubuntu does return the string.
Now I would like to call it from a VBA code. I launch the Windows, open a Microsoft Excel file, and the VBA editor, and put:
Sub run()
Dim ProcID As Integer
ProcID = Shell("C:\Windows\system32\calc.exe", 1)
Dim Result As Variant
Result = Shell("C:\test\cexe.exe",1)
'Result = Shell("C:\test\mlexe.exe",1)
'Result = Shell("C:\test\cexe.exe")
'Result = Shell("C:\test\mlexe.exe")
End Sub
I would expect Result get the string hello world... (or an exit code in a less good case), running the macro does launch the calculator, but gives me an error Run-time error '5': Invalid procedure call or argument, for the other 4 Shell with my own executables.
The aim is just to call an executable compiled by myself in another language from VBA code.
Could anyone tell me what is wrong?
ocamloptinstead of the bytecode compilerocamlcto produce the program? I think it might be simpler then. Otherwise, sincehello.exeis actually a bytecode file, you can try to runocamlrun.exe hello.exe– Pascal Cuoq Jul 25 '12 at 18:48ocamlopt, and got same error. I triedResult = Shell("""ocamlrun.exe"" C:\test\hello.exe"), and it returnsFile not found. – SoftTimur Jul 25 '12 at 19:03let () = "hello world", the compilation saysError: This expression has type string but an expression was expected of type unit, is it possible to let an executable return something other than unit? – SoftTimur Jul 25 '12 at 19:06exitfunction helps out... – phimuemue Jul 25 '12 at 19:11