24 Aralık 2015 Perşembe
17 Aralık 2015 Perşembe
C# Dosya ve Klasör Arama
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;
using System.IO;
namespace dosya_ara
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
void DirSearch(string sDir)
{
try
{
foreach (string d in Directory.GetDirectories(sDir))
{
foreach (string f in Directory.GetFiles(d, "*.exe"))
{
listBox1.Items.Add(f);
}
DirSearch(d);
}
}
catch (System.Exception excpt)
{
MessageBox.Show(excpt.Message);
}
}
private void button1_Click(object sender, EventArgs e)
{
DirSearch(textBox1.Text);
}
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
System.Diagnostics.Process.Start(listBox1.SelectedItem.ToString());
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("http://csharp-uygulamalari.blogspot.com.tr/");
}
}
}
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace dosya_ara
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
void DirSearch(string sDir)
{
try
{
foreach (string d in Directory.GetDirectories(sDir))
{
foreach (string f in Directory.GetFiles(d, "*.exe"))
{
listBox1.Items.Add(f);
}
DirSearch(d);
}
}
catch (System.Exception excpt)
{
MessageBox.Show(excpt.Message);
}
}
private void button1_Click(object sender, EventArgs e)
{
DirSearch(textBox1.Text);
}
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
System.Diagnostics.Process.Start(listBox1.SelectedItem.ToString());
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("http://csharp-uygulamalari.blogspot.com.tr/");
}
}
}
11 Aralık 2015 Cuma
C# Web Sitesinde veya Bir Metinde Kelime Arama
Aralık 11, 2015
@SiberÇocuk, Arama, C#, C# Girilen Metnin İçerisinde Aranan Kelimenin Sayısını Bulma
Yorum yok
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;
using System.Net;
using System.IO;
using System.Xml;
namespace site_kelime_arama_ve_sayma
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
try
{
//http://csharp-uygulamalari.blogspot.com.tr/ Fikri Kocaoglan
int sayac = 0;
string metin = richTextBox1.Text;
richTextBox1.Text = metin;
string kelime = textBox2.Text;
int konum = metin.IndexOf(kelime);
if (textBox2.Text.Length == 0)
{
label3.Text = "Lütfen Aranacak Kelimeyi Yazınız...";
}
else
{
while (konum < richTextBox1.Text.LastIndexOf(kelime))
{
richTextBox1.Find(kelime, konum, richTextBox1.TextLength, RichTextBoxFinds.None);
richTextBox1.SelectionBackColor = Color.Yellow;
konum = metin.IndexOf(kelime, konum + 1);
sayac++;
}
richTextBox1.Find(kelime, konum, richTextBox1.TextLength, RichTextBoxFinds.None);
richTextBox1.SelectionBackColor = Color.Yellow;
label3.Text = "Bu Sayfanın Tamamında Aranılan Kelimeden " + (sayac+1).ToString() + " Tane Bulundu.";
}
}
catch
{
int sayac = 0;
string metin = richTextBox1.Text;
richTextBox1.Text = metin;
string kelime = textBox2.Text;
int konum = metin.IndexOf(kelime);
if (textBox2.Text.Length == 0)
{
label3.Text = "Lütfen Aranacak Kelimeyi Yazınız...";
}
else
{
try
{
while (konum != -1)
{
konum = metin.IndexOf(kelime, konum + 1);
richTextBox1.Find(kelime, konum, richTextBox1.TextLength, RichTextBoxFinds.None);
richTextBox1.SelectionBackColor = Color.Yellow;
sayac++;
}
richTextBox1.Find(kelime, konum, richTextBox1.TextLength, RichTextBoxFinds.None);
richTextBox1.SelectionBackColor = Color.Yellow;
label3.Text = "Bu Sayfanın Tamamında Aranılan Kelimeden " + (sayac + 1).ToString() + " Tane Bulundu.";
}
catch(Exception ex)
{
richTextBox1.Text = ex.Message;
}
}
}
}
private void button2_Click(object sender, EventArgs e)
{
try
{
//http://csharp-uygulamalari.blogspot.com.tr/ Fikri Kocaoglan
string adres = textBox1.Text;
WebRequest istek = HttpWebRequest.Create(adres);
WebResponse cevap;
cevap = istek.GetResponse();
StreamReader donenBilgiler = new StreamReader(cevap.GetResponseStream());
string gelen = donenBilgiler.ReadToEnd();
int titleIndexBaslangici = gelen.IndexOf("<html>") + 6;
int titleIndexBitisi = gelen.Substring(titleIndexBaslangici).IndexOf("</html>");
richTextBox1.Text = gelen.Substring(titleIndexBaslangici, titleIndexBitisi);
}
catch
{
WebProxy wb = new WebProxy(WebProxy.GetDefaultProxy().Address);
WebClient wc = new WebClient();
wc.Proxy = wb;
string site = wc.DownloadString(textBox1.Text);
XmlDocument xd = new XmlDocument();
xd.LoadXml(site);
richTextBox1.Text = site;
}
}
}
}
C# Ekran Görüntüsünü PictureBox' a Aktarmak
Aralık 11, 2015
@SiberÇocuk, C#, C# Ekran Video Çekimi Kodları, Program Kodları, ScreenShot
Yorum yok
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 Ekran_Video_Çekimi
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
Bitmap bmp;
Graphics gr;
private void timer1_Tick(object sender, EventArgs e)
{
bmp = new Bitmap(Screen.PrimaryScreen.WorkingArea.Width, Screen.PrimaryScreen.WorkingArea.Height);
gr = Graphics.FromImage(bmp);
gr.CopyFromScreen(0, 0, 0, 0, new Size(bmp.Width, bmp.Height));
pictureBox1.Image = bmp;
pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;
}
private void button1_Click(object sender, EventArgs e)
{
timer1.Start();
}
private void button2_Click(object sender, EventArgs e)
{
timer1.Stop();
}
Random rnd = new Random();
private void button3_Click(object sender, EventArgs e)
{
pictureBox1.Image.Save("C:/ekran" + rnd.Next(0,1000) + ".jpg");
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("http://csharp-uygulamalari.blogspot.com.tr/");
MessageBox.Show("Hazırlayan: Fikri KOCAOĞLAN","Bilgi",MessageBoxButtons.OK,MessageBoxIcon.Information);
}
}
}
Programın Çalışması: