[ uygulama ] /
Makaleler-Article(s)
uygulama ile ilgili toplam 11 makale bulundu ! (A total of 11 article(s) about uygulama was(were) found in all of articles!)
Article |
---|
Adrotator Xml Uygulaması Merhaba arkadaşlar. AdRotator, uygulamalarımızda dönüşümlü olarak resim dosyalarının görüntülenmesini sağlayan kontroldür. Genellikle Asp.NET reklam uygulamalarında kullanılır. | 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. | Bind Data Uygulaması Bind Data metoduyla veritabanımızda kayıtlı veriler arasında dolaşabileceğiz. Formunuza 4 adet TextBox, Button ve Label ekleyin.(Şekil 1)
Bu uygulamada kayıtlar arasında ileriye, geriye, ilk kayıta veya son kayıta gidebileceğiz. | Ajax UpdateProgress Uygulaması Merhaba Arkadaşlar. Bu makalemizde Ajax ile birlikte gelen UpdateProgress nesnesini anlatacağız. Sayfamızda herhangi bir işlem yaptığımız zaman, işlemimizden önce ilk olarak UpdateProgress içine yerleştirdiğimiz nesneler çalışacaktır. Genelde sitelerde sıkça karşılaştığımız karşılama veya işlem yaparken “yükleniyor” gibi uyarı mesajları UpdateProgress ile verdirilmektedir. | Class Uygulaması Bu örnekte basit bir class uygulaması yapacağız.
Uygulamamızda tarih isminde class oluşturacağız.
Daha sonra bu class içinde girilen gün,ay,yıl değerlerini ekrana yazdıracağız.
İlk önce File >New >Project den Console Application formu açın.
Aşağıdaki şekli inceleyin.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class tarih
{
public short gun,ay,yil;
public tarih()
{
gun=22;
ay=02;
yil=2009;
}
}
class Program
{
static void Main(string[] args)
{
tarih date = new tarih();
Console.WriteLine("Gün:{0}", date.gun);
Console.WriteLine("Ay:{0}", date.ay);
Console.WriteLine("Yıl:{0}", date.yil);
Console.ReadLine();
}
}
}
//Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN
| Media Play Uygulama Formunuza 4 adet Button ve 1 adet TextBox ekleyin.
Aşağıdaki şekli inceleyin.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.IO;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
[DllImport("winmm.dll")]
private static extern long mciSendString(string strCommand, StringBuilder strReturn, int iReturnLength, IntPtr hwndCallback);
public string Pcommand;
public bool isOpen;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
openFileDialog1.Filter = "Media Dosya(*.mpg,*.dat,*.avi,*.wmv,*.wav,*.mp3)|*.wav;*.mp3;*.mpg;*.dat;*.avi;*.wmv";
openFileDialog1.ShowDialog();
if (openFileDialog1.FileName != "")
textBox1.Text = openFileDialog1.FileName;
}
private void button2_Click(object sender, EventArgs e)
{
Pcommand = "Aç \"" + textBox1.Text + "\" tip mpegvideo Media Dosyaları";
mciSendString(Pcommand, null, 0, IntPtr.Zero);
isOpen = true;
Play(true);
}
private void button3_Click(object sender, EventArgs e)
{
Pcommand = "Media Dosyasını Kapat";
mciSendString(Pcommand, null, 0, IntPtr.Zero);
isOpen = false;
}
private void button4_Click(object sender, EventArgs e)
{
Application.Exit();
}
public void Play(bool loop)
{
if (isOpen)
{
Pcommand = "Media Dosyasını Oynat";
if (loop)
Pcommand += " REPEAT";
mciSendString(Pcommand, null, 0, IntPtr.Zero);
}
}
}
}
//Bir sonraki makalede buluşmak üzere. Bahadır
| Grafik Uygulaması Örnek Bu örnekte Windows System Iconlarını graphics
metodu ile C:\ dizinine icon.bmp olarak kaydedeceğiz.
Formunuza 1 adet button ve pictureBox ekleyin.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Graphics grafik;
Bitmap bit = new Bitmap(50, 50);
grafik = Graphics.FromImage(bit);
grafik.DrawIconUnstretched(SystemIcons.Error, new Rectangle(10, 10, SystemIcons.WinLogo.Width, SystemIcons.WinLogo.Height));
pictureBox1.Image = bit;
bit.Save("C:\\icon.bmp");
}
}
}
//Bir sonraki makalede görüşmek üzere. Bahadır | MS Office Uygulamalarını Açma Bu örneğimizde Process metodu ile MS Office e ait Word,Excel, Access vb... uygulamalarını aşağıdaki kod ile açacağız.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("Notepad.exe");
}
private void button2_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("Winword.exe");
}
private void button3_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("Excel.exe");
}
private void button4_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("MSaccess.exe");
}
private void button5_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("Powerpnt.exe");
}
private void button6_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("Outlook.exe");
}
private void button7_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("MSPub.exe");
}
private void button8_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("InfoPath.exe");
}
private void Form1_Load(object sender, EventArgs e)
{
this.Text = "Ofis Kısayolları";
this.MaximizeBox = false;
}
}
}
//Bir sonraki makalede görüşmek üzere...Bahadır | VC#.Net te Array Uygulaması Bu örneğimizde Array e değineceğiz. Formunuza 1 tane listbox nesnesi ekleyin.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
string[] str = new string[7];
int i;
this.Text = "Array & Dizi Kullanımı Örnek...Bahadirsa";
this.Size = new System.Drawing.Size(207, 158);
this.Location = new Point(250, 190);
this.MaximizeBox = false;
listBox1.Size = this.Size;
str.SetValue("Ali", 0);
str.SetValue("Veli", 1);
str.SetValue("KırkDokuz", 2);
str.SetValue("Elli", 3);
str.SetValue("Merhaba", 4);
str.SetValue("Dünya", 5);
for (i = 0; i <= 5; i++)
{
listBox1.Items.Add(str.GetValue(i));
}
}
}
}
//Bir sonraki makalede görüşmek üzere...Bahadır | Space Uygulaması Bu örneke space uygulamasını göreceğiz. Space ile karakter stringleri arasında istediğiniz uzunlukta boşluklar bırakabilirsiniz. Aşağıdaki şekli inceleyin.
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
MsgBox("Space uygulaması..." & Space(30) & "Bahadır ŞAHİN")
End Sub
End Class
Bir sonraki makalede buluşmak üzere. Bahadır ŞAHİN | Response Redirect Uygulaması Response Redirect metodunu kullanarak web sitenizin sayfa adresini sanal değiştirebilirsiniz.
Ör:default.aspx olan sayfa adını default.aspx?ABCDEid_no=1 gibi yapabilirsiniz. Aşağıda Default.aspx kodlarının şekli verilmiştir. |
|