Tags-Etiketler
Bu kısımda sitemizde etiketlenmiş makaleleri toplu olarak bulabilirsiniz...
[ process ] /
Makaleler-Article(s)
process ile ilgili toplam 5 makale bulundu ! (A total of 5 article(s) about process was(were) found in all of articles!)
Article |
---|
Process Uygulaması Merhaba arkadaşlar, Process nesnesi ile uygulama açmayı göreceğiz. Bu örnekte NotePad i açıp, 5 saniye sonra otomatik olarak uygulamanın kapanmasını göreceğiz. | Process Kill Metodu Merhaba Arkadaşlar, bu makalemizde Kill metodu ile Explorer , NotePad uygulamalarının nasıl sonlandırıldığını göreceğiz. | Process Metodu ile Url Sayfası Açmak Process metodunu kullanarak istediğiniz url sitesini otomatik açabilirsiniz.
private void button1_Click(object sender, EventArgs e)
{
string hedefURL = "http://www.bahadirsam.somee.com";
System.Diagnostics.Process.Start(hedefURL);
}
//Bir sonraki makalede görüşmek üzere. Bahadır
| Process ile Uygulamaların Exelerinin Çalıştırılması Formunuza 1 adet Process, label , 2 adet Button ve 3 adet radiobutton ekleyin. Process nesnesini kullanarak mspaint,notepad ve hesap makinesi uygulamalarını çalıştıracağız. Aşağıdaki şekilleri inceleyin.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (radioButton1.Checked)
{
process1.StartInfo.FileName = "C:\\Windows\\notepad.exe";
process1.Start();
}
else if (radioButton2.Checked)
{
process1.StartInfo.FileName = "C:\\Windows\\system32\\mspaint.exe";
process1.Start();
}
else if (radioButton3.Checked)
{
process1.StartInfo.FileName = "C:\\Windows\\system32\\calc.exe";
process1.Start();
}
label1.Text = "Son Durum: "+ process1.StartInfo.FileName + " uygulaması başlatıldı";
}
private void button2_Click(object sender, EventArgs e)
{
process1.CloseMainWindow();
label1.Text = "Son Durum: " + process1.StartInfo.FileName + " uygulamasından çıkıldı.";
}
private void Form1_Load(object sender, EventArgs e)
{
this.Text = "Process Uygulaması...Bahadır";
this.MaximizeBox = false;
}
}
}
//Bir sonraki makalede görüşmek üzere...Bahadır | Process Nesnesi Kullanılarak Video Dosyası Açmak Bu örnekte process nesnesi ile video dosyası açacağız.
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim prc As New Process
prc.StartInfo.FileName = "C:\test.avi"
prc.StartInfo.Arguments.Insert(0, "-Fullscreen")
prc.Start()
End Sub
End Class
Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN |
|
        Sitede yayınlanan makaleleri
Blog sitemizden de takip edebilirsiniz.
Sitemizdeki makaleleri RSS olarak takip edebilirsiniz.