using System; using System.Collections.Generic; using - TopicsExpress



          

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.SqlClient; namespace QLCB { public partial class Form1 : Form { private SqlConnection conn; private void connect() { string cn = @"Data Source=WIN-OL1G2M6J4PDSQLEXPRESS;Initial Catalog=QUANLYCANBO;Integrated Security=True"; try { conn = new SqlConnection(cn); conn.Open(); } catch (Exception ex) { MessageBox.Show("Khong The Ket Noi", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { connect(); } } }
Posted on: Fri, 19 Jul 2013 15:15:13 +0000

Trending Topics



Recently Viewed Topics




© 2015