??
1.Application
Application 是封装 WPF 特定功能的类,包括:
应用程序生存期: Activated,
Current,
Deactivated,
DispatcherUnhandledException,
Exit,
Run,
SessionEnding,
Shutdown,
ShutdownMode,
Startup。
应用...
分类:
移动开发 时间:
2014-06-20 11:48:07
阅读次数:
634
1. 问题
我的环境是oracle11gr2,本地用plsql还是toad连接都没有任何问题,而用别的机器远程连接就提示 无监听程序等错误。
2. 原因
oracle安装路径 --- 例如: F:\app\Administrator\product\11.2.0\dbhome_1\NETWORK\ADMIN 下面的 listener.ora 和 tnsnames.ora 这两个文...
分类:
数据库 时间:
2014-06-20 09:35:27
阅读次数:
594
static void Main(string[] args)
{
//OperateFolderItem();
DataTable dt = ExcelToDS(@"C:\Users\Administrator\Desktop\wage1.xlsx");
using (SPSite spSite = ...
分类:
其他好文 时间:
2014-06-20 09:32:22
阅读次数:
240
添加 我的模板: 路径:
C:\Users\Administrator\Documents\Visual Studio
2008\Templates\ItemTemplates\Visual C# 以上这个文件是从自带的模板文件复制过来修改的. 无需重启VS. 就可以生效
效果如下: 修改 自带的模...
分类:
其他好文 时间:
2014-06-11 22:42:57
阅读次数:
375
最近终于把gcov代码覆盖报告集成到jenkins中了,总算是完成工作,写篇博客总结下。我循序渐进地用了三个工具:gcov, lcov,
gcovr这三个工具原理(其实gcovr依赖于GNU的gcov的)都是收集你程序run之后所产生的*.gcda文件,总的来说,我个人觉得比较喜欢lcov,应为lc...
分类:
其他好文 时间:
2014-06-11 22:18:08
阅读次数:
801
kill -15 pid 即: kill SIGNTERM pid不要使用kill -9。kill
-15会触发调用shutdownHook的run方法,从而可以执行关闭服务器的时候一些必要代码。kill -9不会触发shutdownHookkill -0
pid (kill SIGINT pid)...
分类:
其他好文 时间:
2014-06-11 13:12:36
阅读次数:
690
static void Main(string[] args)
{
//string path = @"LDAP://CN=sp\administrator";
string username = "administrator";
string password = "6yhn^YHN";
...
分类:
其他好文 时间:
2014-06-07 15:20:59
阅读次数:
275
以下是sqlite3免费下载地址:
http://download.csdn.net/detail/lp310018931/7458923
将下载下来的压缩包解压到路径
在运行框中输入"cmd"打开命令提示符,在命令提示符下进入sqlite3所在的路径。比如我解压的后sqlite3.exe所在的文件夹为d:\sqlite
则输入
C:\Users\Administrator>d:...
分类:
数据库 时间:
2014-06-07 12:07:13
阅读次数:
331
# -*- coding: utf-8 -*-"""Created on Wed Jun 04
01:21:31 2014@author: Administrator"""class Analysis: def
processExamResults(self): passes =...
分类:
编程语言 时间:
2014-06-06 13:03:57
阅读次数:
354
用法:runOnUiThread(new Runnable() { @Override public
void run() { // TODO }});
分类:
其他好文 时间:
2014-06-05 21:39:53
阅读次数:
289