摘要:
问题描述: 数据库的事务日志已满,起因为"LOG_BACKUP"。 问题截图: 解决方法: 1).选择数据库–属性—选项—恢复模式–选择简单。2).收缩数据库后,再调回完整。 阅读全文
摘要:
/// <summary> /// 金额转为大写金额 /// </summary> public class MoneyConvertChinese { /// <summary> /// 金额转为大写金额 /// </summary> /// <param name="LowerMoney"></ 阅读全文
摘要:
private void Tv_areainfo_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e) { if (!e.Node.Bounds.Contains(e.Location)) { return; }//击节点文本时才触 阅读全文
摘要:
1 /// <summary> 2 /// MouseDown是鼠标按下事件发生在你鼠标单击事件之前,你单击鼠标发生了两个动作,一是鼠标按下二是鼠标抬起.执行之后,就会把SelectedNode转变成你鼠标点的那个节点了 3 /// </summary> 4 /// <param name="sen 阅读全文
摘要:
1 //设置标志,防止死循环 2 bool check = false; 3 public void TV_AfterCheck(object sender, TreeViewEventArgs e) 4 { 5 if (check == false) 6 setchild(e.Node); 7 s 阅读全文
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Runtime.InteropServices; 4 using System.Windows.Forms; 5 6 namespace Test 7 { 8 sta 阅读全文
摘要:
我们在做一些操作的时候会需要生成日志,Xml文件就是我们常用的一种日志文件。 普通操作Xml文件的代码遇到大数据量的话就很慢了。 用这个生成Xml文件的话,即使数据量很大,也很快 1 private void WriteXml(BindingList<Model.WebServiceLog> lis 阅读全文
摘要:
1 class Program 2 { 3 static void Main(string[] args) 4 { 5 /* 6 * List遍历删除 或取指定的前N项 7 */ 8 List listPer = CreateListP... 阅读全文