資源簡介
綁定數據源到ListBox控件.rar
綁定數據源到ListBox控件.rar

代碼片段和文件信息
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?Ex066
{
????public?partial?class?Form1?:?Form
????{
????????public?Form1()
????????{
????????????InitializeComponent();
????????}
????????private?void?btnQuery_Click(object?sender?EventArgs?e)
????????{
????????????//string?connStr?=?@“Data?Source=.\SQLEXPRESS;AttachDbFilename=G:\vs2008\DB\myBlog.mdf;Integrated?Security=True;Connect?Timeout=30;User?Instance=True“;
???????????string?connStr?=?“server=.;database=myBlog;uid=sa;pwd=sa“;
????????????SqlConnection?conn?=?new?SqlConnection(connStr);
????????????string?sql?=?“select?*?from?users“;
????????????conn.Open();
????????????SqlCommand?comm?=?new?SqlCommand(sqlconn);
????????????SqlDataReader?reader?=?comm.ExecuteReader();
????????????while?(reader.Read())
????????????{
????????????????lstData.Items.Add(reader[“name“].ToString());
????????????}
????????????reader.Close();
????????????conn.Close();
????????}
????????private?void?btnQuit_Click(object?sender?EventArgs?e)
????????{
????????????Application.Exit();
????????}
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????9216??2009-07-13?20:59??綁定數據源到ListBox控件\Ex066\bin\Debug\Ex066.exe
?????文件??????24064??2009-07-13?20:59??綁定數據源到ListBox控件\Ex066\bin\Debug\Ex066.pdb
?????文件??????14328??2009-07-19?22:51??綁定數據源到ListBox控件\Ex066\bin\Debug\Ex066.vshost.exe
?????文件????????490??2007-07-21?01:33??綁定數據源到ListBox控件\Ex066\bin\Debug\Ex066.vshost.exe.manifest
?????文件???????3756??2009-07-13?19:31??綁定數據源到ListBox控件\Ex066\Ex066.csproj
?????文件???????1267??2009-07-13?21:04??綁定數據源到ListBox控件\Ex066\Form1.cs
?????文件???????3207??2009-07-13?21:04??綁定數據源到ListBox控件\Ex066\Form1.Designer.cs
?????文件???????5814??2009-07-13?21:04??綁定數據源到ListBox控件\Ex066\Form1.resx
?????文件????????470??2009-07-19?22:51??綁定數據源到ListBox控件\Ex066\obj\Debug\Ex066.csproj.FileListAbsolute.txt
?????文件????????847??2009-07-13?19:31??綁定數據源到ListBox控件\Ex066\obj\Debug\Ex066.csproj.GenerateResource.Cache
?????文件???????9216??2009-07-13?20:59??綁定數據源到ListBox控件\Ex066\obj\Debug\Ex066.exe
?????文件????????180??2009-07-13?19:31??綁定數據源到ListBox控件\Ex066\obj\Debug\Ex066.Form1.resources
?????文件??????24064??2009-07-13?20:59??綁定數據源到ListBox控件\Ex066\obj\Debug\Ex066.pdb
?????文件????????180??2009-07-13?19:31??綁定數據源到ListBox控件\Ex066\obj\Debug\Ex066.Properties.Resources.resources
?????文件????????486??2009-07-13?17:51??綁定數據源到ListBox控件\Ex066\Program.cs
?????文件???????1342??2009-07-13?17:51??綁定數據源到ListBox控件\Ex066\Properties\AssemblyInfo.cs
?????文件???????2860??2009-07-13?17:51??綁定數據源到ListBox控件\Ex066\Properties\Resources.Designer.cs
?????文件???????5612??2009-07-13?17:51??綁定數據源到ListBox控件\Ex066\Properties\Resources.resx
?????文件???????1090??2009-07-13?17:51??綁定數據源到ListBox控件\Ex066\Properties\Settings.Designer.cs
?????文件????????249??2009-07-13?17:51??綁定數據源到ListBox控件\Ex066\Properties\Settings.settings
?????文件????????905??2009-07-13?17:51??綁定數據源到ListBox控件\Ex066.sln
????..A..H.?????15872??2009-07-19?22:51??綁定數據源到ListBox控件\Ex066.suo
?????文件????????687??2010-06-30?11:08??綁定數據源到ListBox控件\快捷方式?到?C#.jpg.lnk
?????目錄??????????0??2010-06-30?11:16??綁定數據源到ListBox控件\Ex066\obj\Debug\Refactor
?????目錄??????????0??2010-06-30?11:16??綁定數據源到ListBox控件\Ex066\obj\Debug\TempPE
?????目錄??????????0??2010-06-30?11:16??綁定數據源到ListBox控件\Ex066\bin\Debug
?????目錄??????????0??2010-06-30?11:16??綁定數據源到ListBox控件\Ex066\obj\Debug
?????目錄??????????0??2010-06-30?11:16??綁定數據源到ListBox控件\Ex066\bin
?????目錄??????????0??2010-06-30?11:16??綁定數據源到ListBox控件\Ex066\obj
?????目錄??????????0??2010-06-30?11:16??綁定數據源到ListBox控件\Ex066\Properties
............此處省略5個文件信息
評論
共有 條評論