CxGrid动态创建录入表单,不关联DataSource。
2019-12-21 19:38:54 92KB CxGrid Xe2
1
自己用vc++编写的小程序,能绘制故障树图形,含撤销恢复删除等功能,能保存故障树的属性。但不具有重要度计算等故障树分析需要的功能,另外还有一些bug,有兴趣的朋友可以下来看看,暂不具有使用价值,仅用于学习
2019-12-21 19:21:58 5.17MB 故障树 图形 c++
1
在不确定数据库个数,或不确定 数据库表内容的情况下。对创建数据库和表进行封装
2019-12-21 18:44:20 41KB 动态创建库
1
#>【C#多线程】 动态创建多个线程后 需要关闭其中某个线程的解决实例。 using System; using System.Collections.Generic; using System.Text; using System.Threading; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { List listThread = new List(5); Thread thread = null; for (int i = 0; i < 5; i++) { thread = new Thread(ThreadMethod); thread.Name = "Thread" + i; Console.WriteLine("创建 Thread" + i); listThread.Add(thread); thread.Start(i); Thread.Sleep(i * 100); } //关闭指定线程 foreach (Thread tempThread in listThread) { if (tempThread.Name == "Thread3") { Console.WriteLine(tempThread.Name + " 线程已关闭"); tempThread.Abort(); } } Console.ReadLine(); } private static void ThreadMethod(object t) { Thread.Sleep(1500); Console.WriteLine(String.Format("我是 Thread{0}", t)); } } } for (int i = 0; i < 5; i++) { Thread thread = new Thread(test) ; thread.Start(); } 如何关闭其中的一个线程呢? 请下载解决方案。 呵呵,这个实例10分值的买, 觉得好的话就评个分吧,评分后会返回你11分 (一定要评分,光评论是不返分的)
1
VisualC#__NET中应用GDI_动态创建可移动_拖拽等修改其属性的图形,很有帮助的!
2015-09-15 00:00:00 287KB C#
1
RDLC如何应用“列表”控件为子报表动态创建数据源。
2013-08-16 00:00:00 388KB RDLC 动态数据源
1