摘要: Code单元格格式化数据Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e){ if (e.ColumnIndex == 1 /*status列的Index*/) { if (object.Equals(e.Value, 0)) { e.Value = &qu 阅读全文
posted @ 2011-04-12 17:00 小锋神 阅读(1381) 评论(0) 推荐(0) 编辑
摘要: 数据库绑定查询语句上该“select case sex when 0 then'男'else '女'end sex from TablSex” 阅读全文
posted @ 2011-04-12 13:52 小锋神 阅读(751) 评论(0) 推荐(0) 编辑
摘要: 注:本程序是在VS2005基础上写的。1。如果不想让程序在任务栏中显示,请把窗体的属性ShowInTaskbar设置为false;2。如果想让程序启动时就最小化,请设置窗体的属性WindowState设置为Minimized。(Minimized 最小化,Normal正常启动,Maximized最大化)3。拉一个NotifyIcon控件notifyIcon,为控件notifyIcon的属性Icon添加一个icon图标。4。可以为NotifyIcon加一个ContextMenuStrip右键菜单menu_Notify。5。本例子禁用了窗体最大化按钮。(设置窗体的属性MaximizeBox的属性为 阅读全文
posted @ 2011-04-12 10:33 小锋神 阅读(638) 评论(0) 推荐(0) 编辑