Winform获取应用程序的当前路径的方法集合,具体如下,值得收藏//获取当前进程的完整路径,包含文件名(进程名)。stringstr=this.GetType().Assembly.Location;
result:X:\xxx\xxx\xxx.exe(.exe文件所在的目录+.exe文件名)//...
add是将传入的参数作为当前List中的一个Item存储,即使你传入一个List也只会另当前的List增加1个元素addAll是传入一个List,将此List中的所有元素加入到当前List中,也就是当前List会增加的元素个数为传入的List的大小eg:result.addAll(list);//把...
分类:
其他好文 时间:
2014-05-09 18:18:10
阅读次数:
275
c# 获取字符串中的数字 /// /// 获取字符串中的数字 /// /// 字符串 /// 数字
例子1: public static decimal GetNumber(string str) { decimal result = 0; if (str
!= null && str != str...
分类:
其他好文 时间:
2014-05-08 13:32:21
阅读次数:
347
XML 文件格式如下: <?xml version="1.0"
encoding="GB2312"?> <RESULT> <VALUE> <NO>A1234</NO>
<ADDR>四川省XX县XX镇XX路X段XX号</ADDR> </VALUE> <VALUE> <NO>B1234</...
分类:
其他好文 时间:
2014-05-07 17:56:42
阅读次数:
291
Failed to open a session for the virtual machine winxp.
The virtual machine 'winxp' has terminated unexpectedly during startup with exit code 1.
Result Code: NS_ERROR_FAILURE (0x80004005)
Compo...
分类:
其他好文 时间:
2014-05-07 12:33:48
阅读次数:
317
1. 怎么导入PlausibleDatabase.framework框架
先下载PlausibleDatabase.framework框架包,然后把该包直接加入到库中,然后再加入#import 头文件
下载地址:http://code.google.com/p/pldatabase/ 在这里可以下载和查看文档和代码.
第三方SQLITE封装库Pldatabase
基...
分类:
数据库 时间:
2014-05-07 04:07:35
阅读次数:
564
-
(void)searchDisplayControllerWillBeginSearch:(UISearchDisplayController*)controller{
searchDisplayController.searchBar.backgroundColor= [UIColorwhit...
分类:
其他好文 时间:
2014-05-07 01:28:18
阅读次数:
718
#2.bool类型和const类型bool类型const限定符const与#define结构体内存对齐bool类型逻辑型也称布尔型,其取值为true(逻辑真)和false(逻辑假),存储字节数在不同编译系统中可能有所不同,VC++中为1个字节。声明方式:boolresult;result=true;可以当作整数用(true一般为1,fa..
分类:
其他好文 时间:
2014-05-06 16:25:36
阅读次数:
331
使用stream类型的result实现ajaxpackage
com.lee.action;import java.io.ByteArrayInputStream;import
java.io.InputStream;import com.opensymphony.xwork2.ActionSupp...
分类:
其他好文 时间:
2014-05-05 11:51:57
阅读次数:
251
网上有很多SQL连接方式的登录验证,但没有oracle连接方式的,我摸索了一上午写了这个可执行的函数,分享给大家
// 用户登录检查
public bool LoginCheck(string f_LoginName, string f_LoginPass)
{
bool result = false;
// 正则表达式检查
if (Regex.IsMatch(f_LoginN...
分类:
Web程序 时间:
2014-05-04 18:12:46
阅读次数:
323