码迷,mamicode.com
首页 >  
搜索关键字:open    ( 24465个结果
photoshop基础教程视频-贺叶铭-传智播客-笔记
界面构成1、菜单栏2、工具箱3、工具属性栏4、悬浮面板5、画布ctrl+n 新建对话框 (新建画布)打开对话框:ctrl + O (Open)画布三种显示方式切换:F隐藏工具箱,工具属性栏,悬浮面板:TAB缩放工具:Z alt(缩小)切换到暂时切换到满画面显示 ctrl + 0 (数字)按住空格:暂...
分类:其他好文   时间:2014-07-22 22:44:13    阅读次数:307
Centos 6.5中安装后不能打开emacs的问题
问题的发现过程: 安装了最新的centos版本后发现居然打不开emacs,然后在终端中输入emacs后还是不能打开,出现了下面的提示: emacs: error while loading shared libraries: libotf.so.0: cannot open shared objec...
分类:其他好文   时间:2014-07-22 22:40:13    阅读次数:190
Perl
my $line; my $content; open (FN,"D:\\PerlDemo\\parse.xml") or die "not found $!"; while($line=){ next if $. < 5; last if $. >10; $content.=$line; } close(FN); print "$content \n"; my $K=; my @R =qw...
分类:其他好文   时间:2014-07-22 22:37:53    阅读次数:225
js 打开新页面 window.open()
利用js打开一个新页面,而不是一个新窗口。在网上各种东西啊,蛋疼了半天,还白疼了。。后来看到a标签有target属性,然后又发现window.open()的第二个参数是target,然后我笑了(er'zhe)w3school上的target属性,点我,大家可以打开新页面了,也可以打开新窗口了。我只写...
分类:Windows程序   时间:2014-07-22 22:36:55    阅读次数:284
[Python]打开文件的模式
Python中以sys.open()方法打开文件1 import sys2 3 file = open("D:\\file.txt")其中可在第二个参数的位置指定打开文件的模式1 import sys2 3 file = open("D:\\file.txt", "r")参数共有以下几种:rU或Ua...
分类:编程语言   时间:2014-07-22 00:19:34    阅读次数:184
jm18.4调试问题
从网上下的jm18.4解压后不能调试,窗口提示 Cannot open annex B ........ 注意要加上命令参数 ,改下工作目录。 改后通过
分类:其他好文   时间:2014-07-22 00:15:33    阅读次数:189
js关闭子窗口,刷新父窗口
父页面js:function btnAdd_onclick() {window.open("xxx.jsp", "","height=600, width=650, top=100, left=200,z-look=yes,toolbar=yes, menubar=no, scrollbars=ye...
分类:Web程序   时间:2014-07-22 00:08:36    阅读次数:259
Python学习笔记_Chapter 5处理数据
1. 方法串链(method chaining)、函数串链1 import os2 os.chdir('C:\\Users\\hwx222865\\Documents\\Pyton_lib')3 with open('james.txt') as data:4 s_line=data.rea...
分类:编程语言   时间:2014-07-22 00:07:34    阅读次数:254
linux C之access函数
linuxC之access函数access():判断是否具有存取文件的权限相关函数stat,open,chmod,chown,setuid,setgid表头文件#include定义函数int access(const char * pathname, int mode);函数说明access()会检...
分类:数据库   时间:2014-07-21 23:39:36    阅读次数:473
poj3186Treats for the Cows(区间DP)
Description FJ has purchased N (1 The treats are interesting for many reasons: The treats are numbered 1..N and stored sequentially in single file in a long box that is open at both ends. On...
分类:其他好文   时间:2014-07-21 22:18:18    阅读次数:227
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!