WinForm
文章平均质量分 70
czh_liyu
生活爱好:交友,踢球,唱歌,跳舞:
行业:互联网,软件工程师
公司:中美集团
展开
-
WinForm 2.0 有代码两个DataGridView实现Master/Details
private void GetData() { try { // Specify a connection string. Replace the given value with a // valid connection string for a Northwind SQL Server sample原创 2007-11-25 23:17:00 · 898 阅读 · 0 评论 -
WinForm 2.0 textBox作为参数的查询,显示在DataGridView
cs文件内容: private void GetData() { try { // Specify a connection string. Replace the given value with a // valid connection string for a原创 2007-11-25 23:19:00 · 868 阅读 · 0 评论 -
WinForm 2.0 下拉框的绑定
Binding Data Collections to Multi-Valued ControlsAnother common scenario is to populate a list box or combo box from a property within a collection of data. Listing 3.1 showed an example of this.原创 2007-11-25 23:20:00 · 1172 阅读 · 1 评论 -
WinForm 2.0 无代码DataGridView绑定
拖动datagridview到form上,点击datagridview的右上方选择数据源进行绑定即可Binding Data Collections to a GridOne of the most common and visually satisfying things to do with data binding is to have a set of data present原创 2007-11-25 23:21:00 · 1067 阅读 · 0 评论 -
WinForm 2.0 应用一 无代码实现详细信息绑定
Your First Data-Bound Windows Forms 2.0 ApplicationTo get your hands dirty early with Windows Forms 2.0 and Visual Studio 2005, the following procedures give a quick demonstration of their easy an原创 2007-11-25 23:22:00 · 631 阅读 · 0 评论 -
爬虫/蜘蛛程序的制作(C#语言) 一
最近写了一个网络爬虫的程序,供大家参考 程序的思路如下: 一:需要过滤器过滤出所需的内容,得到一个内容集合; 二:从过滤出的内容集合里过滤出所需要(比如:可以是新闻标题和地址)的列表; 三:得到下一页的地址; 四:根据得到的标题的链接去得到该页的详细内容; 五:更加下一页的地址继续循环,ok! 注意:在执行上,最好加线程进行执行,否则会影响效率。这个可以自己根据需原创 2007-11-27 17:47:00 · 775 阅读 · 0 评论 -
爬虫/蜘蛛程序的制作(C#语言) 二
今天给大家列出一些代码,仅供参考 列出数据层和逻辑层的代码WebPage类 1using System; 2using System.Collections.Generic; 3using System.Text; 4using System.Web; 5using System.Web.SessionState; 6using System.Web.UI; 7using System.原创 2007-11-28 09:53:00 · 728 阅读 · 0 评论