Home » » C# — Kayan Yazı Oluşturma
17 Ocak 2014 Cuma
undefined

C# — Kayan Yazı Oluşturma

Kayan Yazı Oluşturma C#
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 substring_metodu

{

public partial class Form1 : Form

{

public Form1()

{

InitializeComponent();//www.gorselprogramlama.com

}

private void timer1_Tick(object sender, EventArgs e)

{

this.Text = this.Text.Substring(1) + this.Text.Substring(0, 1);

}

private void Form1_Load(object sender, EventArgs e)

{

this.Text = " Deneme 1.0 "; //www.gorselprogramlama.com

timer1.Enabled = true;

}

}

}

Not: Eğer forma değilde herhangi bir nesneye kayan yazı oluşturmak istiyorsanız this yerine nesne ismini yazınız.Örnek label için label1.Text = label1.Text.Substring(1) + label1.Text.Substring(0, 1);
C# — FileStream ile dosya okuma

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; ...

Fiyatı ve kdv’si girilen ürünün kdvli fiyatını hesaplama C# Console

Fiyatı ve kdv’si girilen ürünün kdvli fiyatını hesaplama C# Console    namespace kdvl...

C# — Xml dosyasının içeriğini datagridview’e aktarmak

Xml dosyasının içeriğini datagridview’e aktarmak C# Aşağıdaki xml dosyasını oluşturup veri.xml ...

C# — Picturebox’ı formun etrafında hareket ettirme

Picturebox’ı formun etrafında dolaştırma C# Aşağıdaki formu oluşturalım.(resim ekleme–> ...

C# — Bilgisayar kapatma programı

Bilgisayar kapatma programı C# using System; using System.Collections.Generic; using System....

C# — Dal Seçimi Programı

Dal Seçimi Programı C# using System; using System.Collections.Generic; using System.Comp...

 
Support : Vaganzi
Copyright © 2013. Visual Studio Kod Bankası - All Rights Reserved
Powered By Vaganzi