How to...

  • Thread starter Thread starter Jacek Jurkowski
  • Start date Start date
J

Jacek Jurkowski

Launch an exe from outside c# application?
Access methods of dll file created with c++?
Why FolderBrowserDialog stopped me to show folder tree?
 
d¿a mon,
Launch an exe from outside c# application?
mo¿e tak:
Process.Start("nazwa.exe")

Access methods of dll file created with c++?
trzeba opakowaæ np.:

class jakastam
{
[dllimport("user32.dll")]
public static extern int MessageBoxW(
int h,
[marshal(UnmanagedType.LPWStr)] string m,
[marshal(UnmanagedType.LPWStr)] string c,
int type);
}
a potem ju¿ normalnie

Why FolderBrowserDialog stopped me to show folder tree?
a móg³by¶ sprecyzowaæ o co Ci chodzi ??

pozdrawiam


Przemek Sulikowski
 
Back
Top