上一页 1 ··· 388 389 390 391 392 393 394 395 396 ··· 399 下一页
摘要: http://wenku.baidu.com/link?url=b3RZzH4KILFWbysnenCvXwiFFkyZqkxk8bvOMy1T7xW54MeGL1WHivGvyqxgI3yFXvY6T45SPfjZalegBHbHHfgvLdpWGGoDvnfxwP6n_4i 阅读全文
posted @ 2014-10-22 17:57 ChuckLu 阅读(263) 评论(0) 推荐(0)
摘要: Excel的相关概念工作薄:由若干个工作表组成,一个工作薄就是一个Excel文件。启动Excel或者新建文档时,Excel建立的缺省工作簿文件名为book1,book2,……其扩展名为xls工作薄内工作表数:1-255工作表:也称电子表格,是Excel用来存储和处理数据的地方。一个工作簿(Excel... 阅读全文
posted @ 2014-10-22 16:40 ChuckLu 阅读(4354) 评论(0) 推荐(0)
摘要: http://csharp.net-informations.com/excel/csharp-create-excel.htmBefore you create an Excel file in C# , you have to add the Microsoft Excel 12.0 Objec... 阅读全文
posted @ 2014-10-22 16:39 ChuckLu 阅读(248) 评论(0) 推荐(0)
摘要: C#入门经典 第六章 6.6 委托的声明非常类似于函数,但不带函数体,且要使用delegate关键字。 委托的声明指定了一个返回类型和一个参数列表。 在定义了委托后,就可以声明该委托类型的变量。 接着把这个变量初始化为与委托有相同返回类型和参数列表的函数引用。 之后,就可以使用委托变量调用这个函数, 阅读全文
posted @ 2014-10-21 20:22 ChuckLu 阅读(420) 评论(0) 推荐(0)
摘要: DLL-with-configuration-file带配置文件的dll http://www.codeproject.com/Tips/199441/DLL-with-configuration-file Accessing Properties.Settings userSettings fro 阅读全文
posted @ 2014-10-17 16:47 ChuckLu 阅读(1525) 评论(0) 推荐(0)
摘要: False ..\CommonDll\PhySec(x86)\System.Data.SQLite.dll False ..\CommonDll\PhySec(x64)\System.Data.SQLite.dll 系统会自动... 阅读全文
posted @ 2014-10-15 10:09 ChuckLu 阅读(2535) 评论(0) 推荐(0)
摘要: http://zhidao.baidu.com/link?url=87OGcxtDa6fQoeKmk1KylLu4eIBLJSh7CA3n5NWY-Ipm9TxZViFnIui307duCXWhaM0O6lrx2G8z-1HLXVpz0q#include main(){ printf("%f\n"... 阅读全文
posted @ 2014-10-13 10:00 ChuckLu 阅读(2077) 评论(0) 推荐(0)
摘要: https://msdn.microsoft.com/en-us/library/6a71f45d.aspx Logical OR Operator 按位或 This operator has higher precedence than the next section and lower pre 阅读全文
posted @ 2014-10-08 15:22 ChuckLu 阅读(1918) 评论(0) 推荐(0)
摘要: foreach (Control c in groupBox1.Controls) { if (c is TextBox) { //这里写代码逻辑 } } 遍历的时候,需要用Control遍历; 如果直接使用foreach(TextBox t in groupBox1.Controls) 并且gro 阅读全文
posted @ 2014-10-08 09:38 ChuckLu 阅读(7658) 评论(0) 推荐(0)
摘要: public class MyChart{ //字段 private TChart tChart; /// /// 构造函数,默认不是3D效果 /// /// 父容器 public MyChart(Control parent) { t... 阅读全文
posted @ 2014-09-25 09:22 ChuckLu 阅读(402) 评论(0) 推荐(0)
上一页 1 ··· 388 389 390 391 392 393 394 395 396 ··· 399 下一页