摘要:
http://www.cnblogs.com/hjblog/archive/2011/04/27/2030191.html有时我们需要只允许运行应用程序的一个实例,当进程启动时,如果发现应用程序的一个实例在运行,就自动停止运行。我们通常通过Mutex互斥体在Main函数中实现,通常的写法是:[STAThread]static void Main(){ bool createNew; using (System.Threading.Mutex m = new System.Threading.Mutex(true, Application.ProductName, out creat... 阅读全文
摘要:
ORA-12514:TNS:监听程序当前无法识别连接描述符中请求的服务。可能是listener.ora文件里少了这些内容导致的。SID_LIST_LISTENER=(SID_LIST=(SID_DESC=(GLOBAL_DBNAME=ORCL)(SID_NAME=ORCL)))还是先检查lsnrctlstatus的状态吧,我的服务为Thelistenersupportsnoservices了ORA-00119: invalid specification for system parameter LOCAL_LISTENERORA-00132: syntax error or unresolv 阅读全文
摘要:
http://forums.arcgis.com/threads/41396-Managing-ArcGIS-Server-through-ArcCatalogHere's what I'd do to test:A. Create a local user account on your server machine. Name it whatever you like.B. Create a local account with the same user name and password as the local account on your PC. Add it t 阅读全文
摘要:
//http://cherishlc.iteye.com/blog/1687738 1 using System; 2 using System.Collections.Generic; 3 using System.Drawing; 4 using System.Linq; 5 using System.Runtime.InteropServices; 6 using System.Text; 7 using System.Threading.Tasks; 8 using System.Windows.Forms; 9 10 namespace LC 11 { 12 ... 阅读全文
摘要:
ORA-01019: 无法在用户方分配内存.一般是权限问题,ORACLE安装在了C盘,用管理员运行VS可以解决. 阅读全文
摘要:
转自:http://www.mzwu.com/article.asp?id=2843因为我现在是使用Windows7系统,微软在Windows7系统中将输序列号的地方隐藏了[1],需要下载一款CrackVS2008ForWindows7的软件将输入框显示出来即可[2][3],试了下果然好用:、注释说明[1].windows 7下vs2008破解试用版的评估期结束:http://apps.hi.baidu.com/share/detail/30333016[2].CrackVS2008ForWindows7下载:http://ishare.iask.sina.com.cn/f/8254416.h 阅读全文
摘要:
图像拼接代码 1 //新建一个结果大图 2 Bitmap resultImg = new Bitmap(256 * xSize, 256 * ySize); 3 //获得图形画板 4 resultGraphics = Graphics.FromImage(resultImg); 5 6 //循环每张小图 7 for (i = 0; i < myRaster... 阅读全文
摘要:
http://www.cnblogs.com/cglNet/archive/2012/03/12/2391645.html 1 StringBuilder tSB = new StringBuilder(); 2 3 IFeatureClass tFeatureClass = (IFeatureClass)this._InDataset; 4 5 6 7 IGeoDataset tGeodataset=(IGeoDataset)this._InDataset; 8 9 10 11 IFea... 阅读全文
摘要:
三键重启很多朋友都觉得不好用或要按很多次才行,其实是操作不当!正确的方法为:先把输入法调成英文,然后依次按下ALT、右A/a、DEL.注意不要一起按下去要有先后顺序的按http://www.52blackberry.com/thread-564732-1-1.html 阅读全文
摘要:
解决办法:在"Debug"菜单下----"Exceptions"----"Managed Debugging Assistants"中勾掉"LoaderLock" 阅读全文