C# Soru |
10 Mesajlar | 1.837 Okunma |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication12
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
timer1.Start();
}
private void timer1_Tick(object sender, EventArgs e)
{
listBox1.Items.Add(textBox1.Text);
timer1.Stop();
}
}
}
Cadde Media adlı üyeden alıntı
Buyur kardeşim:using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication12
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
timer1.Start();
}
private void timer1_Tick(object sender, EventArgs e)
{
listBox1.Items.Add(textBox1.Text);
timer1.Stop();
}
}
}
int a,i;
string ad,tad="";
a = textBox1.Text.Length;
ad = textBox1.Text;
a--;
for (i = a; i >= 0; i--)
{
tad = tad + ad[i].ToString();
}
textBox2.Text = tad;
Cadde Media adlı üyeden alıntı
Ben sana tersten yazdırmayı göstereyim ama teker teker yapmayı bulamadım.int a,i;
string ad,tad="";
a = textBox1.Text.Length;
ad = textBox1.Text;
a--;
for (i = a; i >= 0; i--)
{
tad = tad + ad[i].ToString();
}
textBox2.Text = tad;
int i=0;
timer1.Enabled = true;
i++;
listBox1.Items.Add(textBox1.Text[textBox1.Text.Length - i]);
if (i >= textBox1.Text.Length)
timer1.Enabled = false;