摘要: 一、增:有2种方法 1.使用insert插入单行数据: 语法:insert [into] <表名> [列名] values <列值> 例:insert into Strdents (姓名,性别,出生日期) values ('王伟华','男','1983/6/15') 注意:如果省略表名,将依次插入所 阅读全文
posted @ 2018-07-02 09:37 181976640 阅读(163) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/start-from-scratch/p/5420588.html 阅读全文
posted @ 2018-06-29 21:46 181976640 阅读(278) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; using System.IO; namespace WindowsApplication3 { /// /// F... 阅读全文
posted @ 2018-06-22 23:46 181976640 阅读(6799) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/xwebsite/article/details/5578446 http://www.cadgj.com/?p=1504 阅读全文
posted @ 2018-06-22 22:06 181976640 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 一般认为:foreach (object obj in checkedListBox1.SelectedItems)即可遍历选中的值。其实这里遍历的只是高亮的值并不是打勾的值。遍历打勾的值要用下面的代码: http://www.cnblogs.com/hongfei/archive/2012/12/ 阅读全文
posted @ 2018-06-22 02:14 181976640 阅读(826) 评论(0) 推荐(0) 编辑
摘要: 编写WinowsForm应用程序时,实现两个窗体之间相互传递值的方法其实很简单。以下用一个例子说明:在名为FormMain主窗体运行过程中利用名为FormInfo窗体,获取用户输入信息,并将这些信息返回给FormMain 1. FormMain和FormInfo 点击“修改...”按钮,显示Form 阅读全文
posted @ 2018-06-21 22:13 181976640 阅读(11075) 评论(0) 推荐(0) 编辑
摘要: public partial class RoundButton : Button { Rectangle r; private Brush _myBrush = null; private Color _color1 = System.Drawing.Color.FromArgb(255, 255, 192); priva... 阅读全文
posted @ 2018-06-20 09:25 181976640 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 原文https://www.cnblogs.com/yuefei/p/4062998.html 修改 自定义控件 测试 阅读全文
posted @ 2018-06-18 13:16 181976640 阅读(683) 评论(0) 推荐(0) 编辑
摘要: 最近在上网的时候,发现了这个C# 下的 OutlookBar 控件,看了一下感觉还真不错,特此记录一下。 虽然 调用和获取 这块有点费劲,但是还是不错的一款组件。 源码下载 阅读全文
posted @ 2018-06-18 11:44 181976640 阅读(2063) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace Co 阅读全文
posted @ 2018-06-18 11:38 181976640 阅读(1263) 评论(0) 推荐(1) 编辑