Kayıtlar

2014 tarihine ait yayınlar gösteriliyor

ARRAYLIST

Resim
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.Collections; namespace arraylist1 {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();         }         Hashtable liste = new Hashtable();         private void Form1_Load(object sender, EventArgs e)         {             liste.Add("ddd", "Deneme");             liste.Add("001", "Diger");             liste.Add(12f, true);             liste.Add(DateTime.Now, "Tarih");             ICollection ic = ...

ENUM

Resim
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 enumlar {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();         }         enum gunler         {             Pazartesi,             Salı,             Çarşamba,             Perşembe,             Cuma,             Cumartesi,             Pazar         }         private void Form1_Load(object sender, EventArgs e) ...

STRUCT_YAPI_OLUŞMAK

Resim
Structh ile listbox görüntüleme 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 struct_to_listbox {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();         }         struct ogrenci         {             public int numara;             public string ad;             public string soyad;             public string sınıf;         }         ogrenci ogrenciler = new ogrenci();         private void btn_listele_Click_Click(object sender, E...

HTML Tabloda Cols Rows komutları

Resim
<html> <head> <title>Table İşlemlerim</title> //SAYFA BAŞLIGIMIZ</head> <body> <TABLE BORDER="2"> <thead>TABLO DENEME</THEAD> <caption align="bottom"> Tablo 1.1:bölümlere göre sayılar </caption>     <TR>        <TH><B>Yıllara Göre</TH>                    <TH COLSPAN="2">2005</TH>        <TH COLSPAN="2">2006</TH>    </TR>    <TR>        <TH height="50" bgcolor="GREEN">SAY</TH>        <TD width="50">250</TD>        <TD>120</TD>        <TD>100</TD>        <TD>50</TD>    </TR>    <TR> <TH>SÖZ</TH> <TD>36 <TD ROWSP...

Linux ile web modemlerin wifi şifresini kırma

Resim