vb has the shell command what does c# have?
[MindlessAnt.co.uk] [MSDN] [Paging Records With MS SQL] [Virtual CD-ROM Drive From Images] [WorldOverRide.co.uk] [Create PDF's using pure PHP] [PHP.net Search Bars] [PHP: Check Password Strength][PHP: BB Code] [PHP: Date Select] If you Question has been answered please mark the thread as [RESOLVED] Mediocre post? Please Rate it.
What exactly are you trying to do? If your trying to start another app, try this: Code: sFile = @"C:\theappyouwant.exe"; System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.EnableRaisingEvents=false; proc.StartInfo.FileName = sFile; proc.Start();
sFile = @"C:\theappyouwant.exe"; System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.EnableRaisingEvents=false; proc.StartInfo.FileName = sFile; proc.Start();
thats exactly what i wanted thanks
Forum Rules