码迷,mamicode.com
首页 >  
搜索关键字:process explorer    ( 12683个结果
WPF 进程间传递参数
WPF 进程间传递参数 在软件开发中有时需要在一个软件中启动另一个软件,这时用Process.Start(“软件路径”)可以启动另一个软件。如果在这个过程中还需要传递一些参数给新启动的软件,可以通过WPF中的Application_Startup来完成: 首先,在需要启动的WPF项目中的APP...
分类:其他好文   时间:2014-06-13 06:41:04    阅读次数:715
恢复文件默认打开方式
win + rregeditHKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.*(想要改变打开方式的文件格式,也就是文件扩展名。如/.7z/.bat等)\OpenWithList。在右边的对话...
分类:其他好文   时间:2014-06-13 00:05:34    阅读次数:258
Failed to Attach to Process ID Xcode 解决办法
方法1.go to the Product menu and find the Edit Scheme menu there.While in Edit Scheme window, select the "Run" option on the left hand side of the scree...
分类:其他好文   时间:2014-06-12 21:03:42    阅读次数:317
手动模拟获取latch
手动模拟获取latch 随意dump一个latches结构文件: SQL> oradebug dump latches 10 ORA-00074: no process has been specified SQL> oradebug setmypid Statement processed. SQL> oradebug dump latches 10 Statement pro...
分类:其他好文   时间:2014-06-11 06:25:18    阅读次数:328
Windows编程 - 开启/关闭/遍历程序的类 代码(C++)
开启/关闭/遍历程序的类 代码(C++)本文地址: http://blog.csdn.net/caroline_wendy类包含4个函数, 启动程序, 遍历所有进程, 关闭程序, 遍历进程依赖的动态链接库.示例: Image.exe是预先生成的可执行程序(exe), 启动程序, 间隔5秒, 关闭程序.使用方法参加测试程序.代码:/* * process.h * * Created on:...
分类:编程语言   时间:2014-06-11 00:43:46    阅读次数:390
ie启用js调试
在 “工具---internet选项--高级---‘禁用脚本调试(Internet Explorer) 去掉勾’,‘显示每个脚本错误的通知(打上勾)’”。如图: 如果不是必须用ie调试js的话,建议用Firefox或chrome。...
分类:Web程序   时间:2014-06-11 00:08:36    阅读次数:257
IE浏览器的判断
function compatibleIE8(){ var browser = navigator.appName; var b_version = navigator.appVersion; if(browser == "Microsoft Internet Explorer"){ var ve....
分类:其他好文   时间:2014-06-10 17:10:05    阅读次数:184
c# 获取相对路径,操作环境变量.
c# 获取相对路径,操作环境变量. 一、获取当前文件的路径 1. System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName // Get the current directory. string path = Directory.GetCurrentDirectory(); 获取模块的完整...
分类:其他好文   时间:2014-06-10 15:07:12    阅读次数:288
java打开后台程序
try{ String cmds="java -version"; Process p = Runtime.getRuntime().exec(cmds); int exitValue = 1; if((exitValue = p.waitFor()) != 0) { p.destroy(); System.out.println("exitValue:"+exitValue); ...
分类:编程语言   时间:2014-06-10 07:57:42    阅读次数:341
Oracle EBS-SQL (SYS-10):锁定表查询.sql
SELECT o.object_name, l.session_id,l.process,l.locked_mode FROM v$locked_object l , dba_objects o WHEREo.object_id=l.object_id
分类:数据库   时间:2014-06-09 17:17:11    阅读次数:460
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!