摘要: 从sp2后,/console参数就改为/admin了,其实就是登陆到远程服务器的控制台, 一般加这个参数是为了在远程桌面登陆已满的时候进行登陆的,就是接管对方控制 台,注意,这样的话远程主机的控制台是会被强行断开的; 运行的某个程序只允许同时存在一个进程实例,而不加/admin登陆时其实是新建 了一个会话,会把用户应加载的所有程序都新加载一次,这时那个新启动的进程就会 ... 阅读全文
posted @ 2012-10-18 17:50 pantherbean 阅读(4426) 评论(1) 推荐(0) 编辑
摘要: 当修改数据库时出现错误: The database could not be exclusively locked to perform the operation. 以下方法可解决: ALTER DATABASE spide SET SINGLE_USER WITH ROLLBACK IMMEDIATE alter database spide modify name = spider... 阅读全文
posted @ 2012-10-18 13:44 pantherbean 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 装完eclipse,java1.7,android sdk 后,都没有附加源码,可能是以前的误操作所致.附加java源码:附加android源码: 阅读全文
posted @ 2012-10-18 00:49 pantherbean 阅读(692) 评论(1) 推荐(0) 编辑
摘要: src是source的简写,源代码,存在java源文件. resource:资源 anim:animate 动画 layout:布局,设计 apk:android package gen:Generate(产生,发生) 自动生成的目录. 「@+id」的意思是我们可以通过这个识别符号来控制所对应的界面元件 , 「R」类别会自动配置一个位址给这个界面元件。 阅读全文
posted @ 2012-10-18 00:01 pantherbean 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1.在类中创建一个返回值是List<T>的方法,注意:返回值必须是List<T>,不能是其它类型,如string,int,否则当报表新建数据集的时候,是找不到数据源的.2.新建报表Report1.rdlc3.新建数据集4.插入表5 在表填入数据集中的字段6 protected void Page_Load(object sender, EventArgs e) { LocalReport report = new LocalReport(); //新建报表对象 report.ReportPath = Server.MapPath("/r... 阅读全文
posted @ 2012-10-10 11:20 pantherbean 阅读(280) 评论(0) 推荐(0) 编辑
摘要: RAR registration data Federal Agency for Education 1000000 PC usage license UID=b621cca9a84bc5deffbf 6412612250ffbf533df6db2dfe8ccc3aae5362c06d54762105357d 5e3b1489e751c76bf6e0640001014be50a52303fed29664b074145 7e567d04159ad8defc3fb6edf32831fd1966f72c21c0c53c02fbbb 2f91cfca671d9c482b11b8ac3281cb2137 阅读全文
posted @ 2012-09-15 07:57 pantherbean 阅读(598) 评论(0) 推荐(0) 编辑
摘要: cc 阅读全文
posted @ 2012-09-14 11:31 pantherbean 阅读(439) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2012-09-13 15:25 pantherbean 阅读(0) 评论(0) 推荐(0) 编辑
摘要: wwwctrl+alt+I 图像大小ctrl+alt+C 画布大小[]笔刷大小Ctrl+J 若无选区,则复制整个图层,有选区的话,只复制图层中的选区部分shift+ctrl+j 剪切图层ctrl+E 合并图层ctrl+[]上下移动图层1234..透明度ctrl+alt+z 撤消ctrl+shift+z 重做ctrl+D 取消选择ctrl+shift+I 反选tab 全屏f 切换x 前景色/背景色d 默认黑白alt+双击图层 解除锁定ctrl+alt+d 羽化ctrl+T 改变大小ctrl+shift+T 再次ctrl+L 色阶ctrl+shift+alt+N 新建图层ctrl+alt+0 .. 阅读全文
posted @ 2012-09-06 00:05 pantherbean 阅读(307) 评论(0) 推荐(0) 编辑
摘要: #region 在url后加一个参数 public static string AddUrlParam(string key, string value) { var dd = System.Web.HttpContext.Current.Request.QueryString; Dictionary<string, string> dic = new Dictionary<string, string>(); foreach (string key2 in dd.AllKeys) ... 阅读全文
posted @ 2012-08-14 16:29 pantherbean 阅读(969) 评论(0) 推荐(0) 编辑