摘要:
<!DOCTYPE html><html><style _mce_bogus="1"><!--html,body {margin:0; padding:0; position:absolute; width:100%; height:100%; overflow: hidden}#screen {width:80%; height:50%; background:#ddd; position: a... 阅读全文
摘要:
(1)Dev控件GridControl 的使用1、确认当前正在编辑的单元格的输入this.gridview1.CloseEditor();2、保存当前行的值到数据源this.gridview1.UpdateCurrentRow();3、通过数据适配器把修改更新到数据库sqlDataAdapter1.Update(myDataSet, "MyTable")//此时直接通过DataAdapter执行U... 阅读全文
摘要:
今天用到了gridcontrol这个控件,要求写一个gridview的双击事件,因为想要的效果是只双击行才出Message,用gridview的Double_Click我没实现,后来想到MouseDown,一试,很简单,首先,仍旧需要将gridview1.OptionsBehavior.Editable设为false,下面是代码: //双击行弹出nodeDetail信息private void g... 阅读全文
摘要:
只有在右击节点时才会触发private void treeList1_MouseDown(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Right) { treeList1.ContextMenuStrip = null; TreeListHitInfo hInfo = treeList1.CalcHitInfo(new Point(e.X, e.Y)); TreeListNode node = hInfo.Node; treeList1.FocusedNode = node; if (node != null) 阅读全文
摘要:
--获得MS SQL的版本号execute master..sp_msgetversion --得到硬盘文件信息--参数说明:目录名,目录深度,是否显示文件execute master..xp_dirtree 'c:' execute master..xp_dirtree 'c:',1 execute master..xp_dirtree 'c:',1,1 --列出服务器上安装的所有OLEDB提供... 阅读全文