Şimdi Ara

yazdığım program çok yavaş açılıyor c#

Bu Konudaki Kullanıcılar:
3 Misafir - 3 Masaüstü
5 sn
1
Cevap
0
Favori
1.078
Tıklama
Daha Fazla
İstatistik
  • Konu İstatistikleri Yükleniyor
0 oy
Öne Çıkar
Sayfa: 1
Giriş
Mesaj
  • 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.Data.Sql;
    using System.Data.SqlClient;
    using System.IO;

    namespace cambalkonhesaplama
    {
    public partial class giris : Form
    {
    public giris()
    {
    InitializeComponent();
    }
    public SqlConnection db;
    private void button1_Click(object sender, EventArgs e)
    {
    Application.Exit();
    }
    bool bag = true;
    private void button2_Click(object sender, EventArgs e)
    {
    if (bag == false)
    {
    Application.Restart();
    }
    else
    {
    giris giris = new giris();
    giris.Close();
    camsiparis siparis = new camsiparis();
    siparis.Show();
    this.Hide();
    }
    }

    private void giris_Load(object sender, EventArgs e)
    {
    // Dosyadan veri tabanı çek
    StreamReader oku;
    oku = File.OpenText(@"c:\cambalkonconfig.txt");
    string yazi;
    string[] config = new string[4]; ;
    for (int x = 0; x < 4; x++)
    {
    yazi = oku.ReadLine();
    config[x] = yazi.ToString();
    }

    db = new SqlConnection("Data Source=" + config[0] + "," + config[1] + ";Network Library=DBMSSOCN;Initial Catalog=cambalkon;User ID=" + config[2] + ";Password=" + config[3] + ";");

    if (db.State == ConnectionState.Closed)
    {
    try
    {
    db.Open();

    db.Close();
    }
    catch
    {
    MessageBox.Show("Veritabanı Bağlantısı Yapılamıyor ! ");
    bag = false;
    }

    }

    }



    }
    }

    Kodlar yukarıda verdiğim gibi öyle cok ağır birşey yok fakat nedense 23 saniyede ekran gelebiliyor sorun nedir acaba.







  • Yapay Zeka’dan İlgili Konular
    Daha Fazla Göster
    
Sayfa: 1
- x
Bildirim
mesajınız kopyalandı (ctrl+v) yapıştırmak istediğiniz yere yapıştırabilirsiniz.