Kayıtlar

Kasım, 2014 tarihine ait yayınlar gösteriliyor

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