Win32 APIs
-
Hi, How do i run win32 api in a vb.net program, i declared shell execute function and tried to call it from my form. but it says unmanaged call is trying to run from managed code and something about PInvoke too. please advice me
Vilsad P P MCTS (Windows Applications) .Net 2.0
-
Hi, How do i run win32 api in a vb.net program, i declared shell execute function and tried to call it from my form. but it says unmanaged call is trying to run from managed code and something about PInvoke too. please advice me
Vilsad P P MCTS (Windows Applications) .Net 2.0
Process.Start will do that for you. In general, www.pinvoke.net is the place to find out how to call Win32 APIs
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
Process.Start will do that for you. In general, www.pinvoke.net is the place to find out how to call Win32 APIs
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
the .net framework base class Imports System.Runtime.InteropServices will be remedy of this problem?????
-
Process.Start will do that for you. In general, www.pinvoke.net is the place to find out how to call Win32 APIs
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
Saying
ShellExecute 0&,"Open",filepath,0&,0&,3
is what i want to execute. how can i do it with Process.Start ? can you show me an example? Thanks for your adviceVilsad P P MCTS (Windows Applications) .Net 2.0
-
Hi, How do i run win32 api in a vb.net program, i declared shell execute function and tried to call it from my form. but it says unmanaged call is trying to run from managed code and something about PInvoke too. please advice me
Vilsad P P MCTS (Windows Applications) .Net 2.0