vc中判断excel文件是否存在,删除excel文件可以使用PathFileExists_和DeleteFile函数但是,由于03以后excel的后缀改为.xlsx。所以,使用时需加后缀.xlsx。如:PathFileExists(“C:\Users\tony-wt\Desktop\MyProjec...
分类:
其他好文 时间:
2014-06-27 19:18:46
阅读次数:
177
今天学习了node.js ,来看一下hello world 的写法。1. 首先安装node.js的驱动文件。 http://nodejs.org/2. a:安装好node之后,在CMD窗口输入node,再输入console.log('hello world.');3.调用文本文件。sample: 创...
分类:
Web程序 时间:
2014-06-27 18:29:12
阅读次数:
203
题目Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where "adja...
分类:
其他好文 时间:
2014-06-27 17:25:52
阅读次数:
225
构造字符串字面量方法一:最简单的使用单引号或者双引号括起来的字符串,比如"hello"。方法二:使用%q配合分界符,%q代表单引号str=%q!he/lo!方法三:使用%Q配合分界符,%Q代表双引号str=%Q{he/lo}方法四:here document构建字符串,该方法比较适合用于多行字符串的...
分类:
其他好文 时间:
2014-06-27 15:17:01
阅读次数:
247
第一步:先总体看下要在本地创建的文件目录/jun_demo |-- _config.yml |-- _layouts | |-- default.html |-- _posts | |-- 2014-06-26-hello-world.html |-- ...
分类:
其他好文 时间:
2014-06-27 15:06:40
阅读次数:
222
苹果的WWDC ,除了公布了os x 10.10 和IOS8 外,还推出了Swift。具体点击这里代码整体风格有点像Java,也有点像javascript。以下给出一些代码段(来自苹果官方手冊):println("Hello, world")“var myVariable = 42myVariabl...
分类:
其他好文 时间:
2014-06-27 14:47:10
阅读次数:
158
$title=“title”$message="hello,world"[void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")$balloon = New-Object System.Windo...
分类:
其他好文 时间:
2014-06-27 12:54:43
阅读次数:
216
1.当成员变量和局部变量重名时,在方法中使用this时,表示的是该方法所在类中的成员变量。(this是当前对象自己)如:publicclassHello {Strings="Hello";publicHello(String s) {System.out.println("s = "+ s);Sys...
分类:
编程语言 时间:
2014-06-27 12:10:35
阅读次数:
124
复合文档文件格式研究前 言复合文档(Compound Document) 是一种不仅包含文本而且包括图形、电子表格数据、声音、视频图象以及其它信息的文档。可以把复合文档想象成一个所有者,它装着文本、图形以及多媒体信息如 声音和图象。目前建立复合文档的趋势是使用面向对象技术,在这里,非标准信息如图像和...
分类:
其他好文 时间:
2014-06-27 11:26:37
阅读次数:
308
Cordova, Grunt and Coffee
You may reference to below if you deside to work with coffee instead of Javascript in Cordova project.
Prepare Cordova Helloworld Project
This guide is based on Hello Wo...
分类:
其他好文 时间:
2014-06-27 08:13:42
阅读次数:
230