run an exe

  • Thread starter Thread starter Will
  • Start date Start date
W

Will

Hey there,

i wanna fire up the Add Printer wizard.

In vb 6.0 i used:
RunShell "rundll32.exe shell32.dll,SHHelpShortcuts_RunDLL
AddPrinter"

whats the code in vb.net ?

i need the code.

Thanx
 
* "Will said:
i wanna fire up the Add Printer wizard.

In vb 6.0 i used:
RunShell "rundll32.exe shell32.dll,SHHelpShortcuts_RunDLL
AddPrinter"

\\\
System.Diagnostics.Process.Start("rundll32.exe...")
///
 
thanx ... but i need the full code ... PLEASE

Here is the "full code"

System.Diagnostics.Process.Start _
("rundll32.exe","shell32.dll,SHHelpShortcuts_RunDLL AddPrinter")

Suefffel
 
Back
Top