-
401.
0
-
402.
0
-
403.
0
-
404.
0@17 senin ananın dıbına desoto marka kamyonetle girerim. bre huur çocuğu sen php'nin gücünü nasıl küçümsersin? hadi onu geçtim open source camiası anneni mi gibti? neden .net uşağı oldun. e kafatasından kadeh yaptığım bini seni. he. ellerim titriyor. kolonya getirin.
-
405.
0
-
406.
0@324 sakin ol reis
sakinnnnnn
her dil gucludur dil bir arac önemli olan yazilimcidir -
407.
0Panpa ben metro style application yapmak istiyorum. Windows 8 ve vs2012 yuklu. c++ biliyorum, ama bunun icin xaml de ogrenmek gerekiyormus sen biliyor musun onerebilecegin kaynak var mi
-
408.
0@324 kufur ettiğin adam şuanda Turkcell de yazılım yönetici
adamın emrinin altında 100 lerce yazılımcı muhendis var
adam boş adam değil sakin ollll -
409.
0@327 cok iyi olur senin icin
ben bir suru projem de xaml kullandım
xaml xml in biraz daha iyi hali
microsft onu tutturdu artık microsft oraya kayacak
xaml kolay hemen ogrenirsin
buradan kucuk de olsa bilgiye ulaşabilirisin
http://yazilimsozluk.com/Default.aspx?KonuId=67
en kısa zaman da xaml makalesi yazacam -
410.
0ben sql injection php html vs öğrenmek istiyordum fakat lise son oldum sınavlar falan... olmaz heralde bu saatten sonra
-
411.
0@327
http://yazilimsozluk.com/Default.aspx?KonuId=53
burada arama yerine silverlight yaz
cıkan sonuclara bak cok az da olsa xaml örnekleri var -
412.
0@330 sql injection öldu onu gibtir et
http://yazilimsozluk.com/Default.aspx
yazılımcıları takibe al
burada piyasada bankalarda turkcell gibi yerlerde calişan yazılım uzmanları ve bilgisayar muhendisleri var
belki işine yarar
http://www.facebook.com/yazilimsozluk -
413.
0@327
http://yazilimsozluk.com/Default.aspx
bu sözluk daha yeni
acılan bir suru konu var xaml ile ilgili ama bulamıyorsun:)
yakında tag olacak
twitter gibi xam tagı yazınca xaml ile ilgili tum konulara ulaşacaksın -
414.
0
-
415.
0using System;Tümünü Göster
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
{
int a, b;
string d;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0")
{
textBox1.Text = "1";
}
else
{
textBox1.Text = textBox1.Text + "1";
}
}
private void button2_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0")
{
textBox1.Text = "2";
}
else
{
textBox1.Text = textBox1.Text + "2";
}
}
private void button3_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0")
{
textBox1.Text = "3";
}
else
{
textBox1.Text = textBox1.Text + "3";
}
}
private void button4_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0")
{
textBox1.Text = "4";
}
else
{
textBox1.Text = textBox1.Text + "4";
}
}
private void button5_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0")
{
textBox1.Text = "5";
}
else
{
textBox1.Text = textBox1.Text + "5";
}
}
private void button6_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0")
{
textBox1.Text = "6";
}
else
{
textBox1.Text = textBox1.Text + "6";
}
}
private void button7_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0")
{
textBox1.Text = "7";
}
else
{
textBox1.Text = textBox1.Text + "7";
}
}
private void button8_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0")
{
textBox1.Text = "8";
}
else
{
textBox1.Text = textBox1.Text + "8";
}
}
private void button9_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0")
{
textBox1.Text = "9";
}
else
{
textBox1.Text = textBox1.Text + "9";
}
}
private void button11_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0")
{
textBox1.Text = "0";
}
else
{
textBox1.Text = textBox1.Text + "0";
}
}
private void button10_Click(object sender, EventArgs e)
{
a = Convert. ToInt16(textBox1.Text);
d = "+";
textBox1.Text = "";
}
private void button12_Click(object sender, EventArgs e)
{
a = Convert. ToInt16(textBox1.Text);
d = "-";
textBox1.Text = "";
}
private void button14_Click(object sender, EventArgs e)
{
a = Convert. ToInt16(textBox1.Text);
d = "*";
textBox1.Text = "";
}
private void button15_Click(object sender, EventArgs e)
{
a = Convert. ToInt16(textBox1.Text);
d = "/";
textBox1.Text = " ";
}
private void button17_Click(object sender, EventArgs e)
{
b=Convert. ToInt16(textBox1.Text);
if (d" ")
"+")
if (d
{
textBox1.Text = Convert. ToString(a + b);
}
if (d == "-")
{
textBox1.Text = Convert. ToString(a-b);
}
if (d == "*")
{
textBox1.Text = Convert. ToString(a * b);
}
if (d == "/")
{
textBox1.Text = Convert. ToString(a / b);
}
}
private void Form1_Load(object sender, EventArgs e)
{
d = " ";
}
private void button16_Click(object sender, EventArgs e)
{
a = 0;
b = 0;
d = "";
textBox1.Text = "0";
}
private void button18_Click(object sender, EventArgs e)
{
}
private void button19_Click(object sender, EventArgs e)
{
textBox1.Text. Substring(1, 5);
}
private void button13_Click(object sender, EventArgs e)
{
MessageBox. Show("inci giber:)", "kutsall");
}
}
} -
416.
0@329 @331 sagol panpa simdi telefondan giriyorum, eve gidince verdigin linkleri inceleyecegim
-
417.
0
-
418.
0burada 10-20 yıllık yazılımcılar var
daha 1-2 yıl calişip kendini bir tak sanan var
hatta daha universitede bir if else yazıp kendini bir şey sanan var
http://yazilimsozluk.com/Default.aspx -
419.
0@337 ben ne bileyim amk biz bunları öğreniyoz açık öğretimde
-
420.
0yolla panpa
-
bakircanda kişiliksizlik hastalığı var
-
cccrammsteinccc ve jordi el nino adlı yazarlar
-
niye yaşıyoruz harbi
-
bu evrende ölürsek diğer evrenlerde de
-
40 yasında abınız olarak sozlugu bırakıyorum
-
benim bi akrabam var kıçında don yok
-
keske turkiye gelseydin
-
dindar degilim yanlis anlasilmasib
-
başladıysa geç yazmalar
-
keşke manifest grubundan bir kızla sevgili
-
1 ekimden itibaren yazarların zamlı maaşı
-
güzel yazmış herif
-
ultra zengin olsam münzevi olurdum
-
aceyip iti hangi ilde okuyacan
-
incici cuck aile ziyareti
-
23 yasinda genc bi ukreynali kiz
-
beyler bir kızın sevdiğini nasıl anlarım
- / 1