Jump to content

KintaRo

Emekli
  • Posts

    9382
  • Joined

  • Last visited

  • Days Won

    67

Posts posted by KintaRo

  1. küçük bir örnek hazırladım:

     

    [spoiler]

    using System;
    using System.Diagnostics;
    using System.Windows.Forms;
    
    namespace CMB_Davranisi
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }
    
            private void Form1_Load(object sender, EventArgs e)
            {
                // çıkış yap default gelsin
                comboBox1.SelectedIndex = 0;
            }
    
            private void button1_Click(object sender, EventArgs e)
            {
                for (int i = 0; i < 5; i++)
                {
                    MessageBox.Show((i + 1).ToString() + ". Program Kuruluyor...");
                }
    
                // kurulumlar bitince:
                if (comboBox1.SelectedIndex == 0) // çıkış yap seçiliyse
                {
                    Application.Exit();
                }
                else if (comboBox1.SelectedIndex == 1) // bilgisayarı kapat seçiliyse
                {
                    var psi = new ProcessStartInfo("shutdown", "/s /t 0");
                    psi.CreateNoWindow = true;
                    psi.UseShellExecute = false;
                    Process.Start(psi);
                }
                else if (comboBox1.SelectedIndex == 2) // yeniden başlat seçiliyse
                {
                    var psi = new ProcessStartInfo("shutdown", "/r /t 0"); 
                    psi.CreateNoWindow = true;
                    psi.UseShellExecute = false;
                    Process.Start(psi);
                }
    
            }
    
        }
    }
     

    [/spoiler]

    https://yadi.sk/d/4k9ZBwQ_pmiF9
    
    • Like 2
  2. B0ynH3wa.jpg
     
    Prospekt (Opposing Force'un devam oyunu)
     



    nERv
     
    Prospekt (c) Richard Seabrook
     
    02/2016: RELEASE.DATE .. PROTECTION: Steam
    1: DISC(S) .. GAME.TYPE: Action
     
    Prospekt begins in the Nova Prospekt prison in the Half-Life universe
    Gordon Freeman is slowly being overrun by soldiers in the prison, however
    unknown to him, his Vortigaunt allies manage to find some help from a
    forgotten hero
     
    1. Unrar
    2. Burn or mount the image
    3. Install the game
    4. Copy over the cracked content from the /Crack directory on the image to
    your game install directory
    5. Play the game using shortcut, or run "hl2.exe -game prospekt"
    6. Support the software developers. If you like this game, BUY IT!

     
     Ekran Görüntüleri:

     

    [spoiler]
    zovQ1FD.jpg

     

     

    9DpO39D.jpg

     

    zovQ1FD.jpg

     

    LMKquql.jpg

    [/spoiler]

     

    Download

    http://uptobox.com/x3gr5l4z6jdx
    
    
  3. arkadaşlar yeter. bir daha böyle provokatif bir konu açan olursa siteden uzaklaştırılacaktır. adam mesajı yazıp çekiliyor kenara, oh ne ala. millet bir birine düşsün ben kenardan seyredeyim der gibi.

  4. MPSOFTWARE phpDesigner v8 1 2 9 MULTILINGUAL-CRD

     

    [spoiler]

    REAL LEGENDS NEVER DIE!
    
    CRUDE.13
    
    <___Z>
    
    C.R.U.D.E
    P.R.O.U.D.L.Y P.R.E.S.E.N.T.S
    
    MPSOFTWARE phpDesigner v8.1.2.9
    
    RLS.DATE.........2013/11/27
    RLS.SIZE.........03x10.00MB
    
    RLS.TYPE.............Keygen
    PROTECTION...........Custom
    
    PLATFORM.............WinAll
    
    * RELEASE NOTES *
    
    phpDesigner is more than just a
    powerful and lightning fast PHP IDE
    and PHP editor, it is also a
    full-featured HTML, CSS and
    JavaScript editor and even more!
    for both beginners and professional
    developers!
    
    phpDesigner helps you with analyzing
    editing, debugging and publishing
    applications and websites powered by
    PHP, HTML and many other web languages!
    
    URL: http://www.mpsoftware.dk
    
    * iNSTALL NOTES *
    
    1.) Unpack and install
    2.) Use our keygen to register
    3.) Enjoy!
    
    If you can't understand how to install
    or use this then please don't waste our
    or anyone else time whining about bad
    installation instructions
    
    Instead of blaming us for delivering
    poor package try to read developer's
    FAQ or program's manual
    
    * C O N T A C T *
    
    CRUDE IS A CLOSED GROUP
    SO WE DO NOT ACCEPT ANY
    KIND OF NEW MEMBERS
    
    OUR RESPECT AND GREETS GOES TO:
    
    BEAN . CoolPHat . DVT . EMBRACE . FLT
    
    HERiTAGE . HOODLUM . Lz0 . OUTLAWS
    
    PARADOX . SKIDROW . UNLEASHED . VACE
    
    AND TO ALL OUR FRIENDS IN THE SCENE
    
    YOU KNOW WHO YOU ARE :P
    
    * aScii by ___Z <DFS> *
    
    Direct From Stars
    
    o1.o1.13
    

    [/spoiler]

    http://uptobox.com/ahj14nwhrqyt
  5. ayarlar diye bir tablo olusturup, ogrenci no'yu burada tutun, ogrenciler tablosuna kayıt yaparken de ogrenci no yu post ile değil bu tablodan alın.

    $ogrenci_no = mysql_fetch_array(mysql_query("SELECT ogrenci_no+1 as 'ogrencino' FROM ayarlar"));
    $ogrenci_no = $ogrenci_no['ogrencino'];
    
    $ekle = mysql_query("INSERT INTO ogrenciler (id,ogrenci_no, ogrenci_adi, ogrenci_sinifi) values ('$id','$ogrenci_no', '$ogrenci_adi', '$ogrenci_sinifi')");
    
    $query = mysql_query("UPDATE ayarlar SET ogrenci_no=ogrenci_no+1");

    ayarlar tablosundaki veriyi tek satırda tutun, primary key ve auto increment özelliklerine gerek yok.

×
×
  • Create New...