摘要:
Range range = worksheet.get_Range(worksheet.Cells[2, 1], worksheet.Cells[RowCount + 1, ColCount]);range.NumberFormat = @"yyyy-mm-dd"; //日期格式 阅读全文
摘要:
专业版:HMGNV-WCYXV-X7G9W-YCX63-B98R2企业版:HM6NR-QXX7C-DFW2Y-8B82K-WTYJV 阅读全文
摘要:
Axis Label 横纵坐标的文字 (比如 0 20 40 ....) Axis Title 横纵坐标的代表什么(比如 Y Axis Title) Chart Area 图标所在位置 Chart Picture 底色的背景图 Chart Series chart的内的东西(比如 线或者柱形图等) 阅读全文
摘要:
在CMD窗体,运行如下命令: 2.0:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i 4.0:C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis. 阅读全文
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 //// Printing the DataGridView Control// in respo 阅读全文
摘要:
Unable to convert MySQL date/time value to System.DateTime 解决方案 这个问题发生在MySQL数据里面有Date类型数据,在C#中查询出来时候时间的类型不一致而导致! 网上看了一下,找到有两种解决方案: 1、在连接字符串中加入“Allow Z 阅读全文
摘要:
1.显示你的隐藏文件、文件夹 2.删除以下文件、文件夹 文件夹:C:\Users\Administrator\.zend\ 文件夹:C:\Users\Administrator\.ZendStudio\ 文件:C:\Users\Administrator\.zs 阅读全文
摘要:
after触发器要求只有执行某一操作insert、update、delete之后触发器才被触发,且只能定义在表上。 而instead of触发器表示并不执行其定义的操作(insert、update、delete)而仅是执行触发器本身。既可以在表上定义instead of触发器,也可以在视图上定义。 阅读全文
摘要:
static void Main(string[] args) { Thread t1 = new Thread(new ThreadStart(TestMethod)); Thread t2 = new Thread(new ParameterizedThreadStart(TestMethod) 阅读全文