代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> DataGrid 效果
分类:
其他好文 时间:
2014-12-26 09:30:31
阅读次数:
279
ProblemAfter running jmeter.bat command under Windows 7 withcmd the following error is produced:WARNING: Could not open/create prefs root node Softwar...
分类:
其他好文 时间:
2014-12-20 12:51:30
阅读次数:
196
1.在delphi 中,我们可以使用相同的函数名来调用不同的函数,我们称这个函数为重载,函数的参数类型和参数的个数可以不同,用到的关键字overload;格式如下:Code highlighting produced by Actipro CodeHighlighter (freeware)http...
1.2进制转10进制自定义函数:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->function DecToInt(temp:string):integ...
分类:
其他好文 时间:
2014-12-16 22:18:03
阅读次数:
203
1.类的声明,格式:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->TypeTMyClass=classend;TypeTBase=classproce...
分类:
其他好文 时间:
2014-12-16 22:16:38
阅读次数:
136
1.记录类型的定义type info = record name :string; age :integer; addr :string;end;2.记录类型应用Code highlighting produced by Actipro CodeHighlighter (freeware)http....
分类:
其他好文 时间:
2014-12-16 22:13:54
阅读次数:
187
1.数组定义:var 数组标志符 : Array[0..100] of integer;注意,只有全局数组才能赋初值如:var num : array[0..5] of integer = (1,2,3,4,5,6);Code highlighting produced by Actipro Cod...
分类:
编程语言 时间:
2014-12-16 21:00:26
阅读次数:
161
ord 取得参数唯一的对应值;pred 取得参数前续的值;succ 取得参数后续的值;low 返回参数可以取的最小值;high 返回参数可以取得最大值;用法如下:Code highlighting produced by Actipro CodeHighlighter (freeware)h...
分类:
其他好文 时间:
2014-12-16 20:52:56
阅读次数:
185
1.枚举类型定义:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->TYPEdays=(Sunday,Monday,Tuesday,Wednesday,T...
分类:
其他好文 时间:
2014-12-16 20:50:45
阅读次数:
195
原文:ASP.NET Web Service中使用Session 及 Session丢失解决方法 续1、关于Session丢失问题的说明汇总,参考这里
2、在Web Servcie中使用Session,需要对Web Method做如下处理 Code highlighting produced by ...
分类:
Web程序 时间:
2014-12-12 11:19:50
阅读次数:
161