Nasıl Visual Basic de 1 Button ile Bir Dosyayı Veya Uygulamayı Açtırırım Ama Başka Bilgisayarlar içinde Geçerli olacak Programımı Geliştirmem için Bunu Öğrenmem Lazım Acil
Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
using (System.Net.WebClient myWebClient = new System.Net.WebClient())
{
myWebClient.DownloadFile("http://benbirzilla.com/example.exe", "C:\\BenBirKlasor\\example.exe");
}
System.Diagnostics.Process.Start("C:\\BenBirKlasor\\example.exe");
Kod:using (System.Net.WebClient myWebClient = new System.Net.WebClient()) { myWebClient.DownloadFile("http://benbirzilla.com/example.exe", "C:\\BenBirKlasor\\example.exe"); }
Böyle indirirsin.
Kod:System.Diagnostics.Process.Start("C:\\BenBirKlasor\\example.exe");
VB.NET bilmediğim için C#.NET'de yazdım, artık kendin çevirirsin.
peki System.Diagnostics.Process.Start("C:\\BenBirKlasor\\example.exe"); kodu diğer bilgisayarlar içinde geçerli olur mu?