string ls_excelpath,docnameinteger li_rtnli_rtn = GetFileOpenName("Select File", ls_excelpath, docname, "XLS", + "Text Files (*.XLS),*.XLS," + "Doc F....
分类:
其他好文 时间:
2014-06-26 23:53:24
阅读次数:
291
将.a文件加入工程,很多教程讲的都是:右键选择Add->Existing Files…,选择.a文件和相应的.h头文件。或者将这两个文件拖入XCode工程目录结构中,在弹出的界面中勾选Copy items into destination group's folder(if needed),并确保A...
分类:
移动开发 时间:
2014-06-26 21:26:26
阅读次数:
296
he following commands will helpful to delete the expired archive log files using Oracle Recovery Manager(RMAN).Connect to the Rman prompt and try the ...
分类:
其他好文 时间:
2014-06-26 20:20:52
阅读次数:
262
1. 添加References PresentationCore PresentationFramework System.Xaml WindowsBase2. 修改AssemblyInfo.xsusing System.Windows;[assembly: System.Windows...
分类:
其他好文 时间:
2014-06-26 19:09:55
阅读次数:
139
Warning: Cannot modify header information - headers already sent by出错的原因我在php程序的头部加了,header("cache-control:no-cache,must-revalidate");之后页面就出现上面的错误,看了N...
分类:
其他好文 时间:
2014-06-26 18:41:36
阅读次数:
167
前天介绍了《Sublime Text 2 绿化与汉化 [Windows篇]》,应大家要求,我特地做了汉化版分享给大家。很清新吧,但我没安装多余的插件,只是安装了几个必备的插件,如 输入法支持,GBK支持,Package Control。Emmet 是我特地加上的,如果不喜欢解压后先别运行,打开Pri...
分类:
其他好文 时间:
2014-06-26 15:15:17
阅读次数:
250
1、下载boost相关的库的安装包
网址:http://www.boost.org/
其中1.55.0版本的下载地址是:http://sourceforge.net/projects/boost/files/boost/1.55.0/
截图:
2.boost开发相关的软件:
boost_1_55_0.tar.gz Linux平台下面的boost源码包
boost_1_55_0...
分类:
其他好文 时间:
2014-06-26 13:32:13
阅读次数:
302
代码:IFOBJECT_ID(‘Sp_InputAccesstoSQL‘)ISNOTNULL
DROPPROCSp_InputAccesstoSQL
GO
CREATEPROCSp_InputAccesstoSQL
@dirNVARCHAR(100),--ACCESS文件存放路径:如D:\Files
@tabnameNVARCHAR(50)--定义导入到数据库中的表名,如果存在就不需要创建
AS
SETNOCOUNTON
DECLARE@cmd..
分类:
数据库 时间:
2014-06-26 12:12:38
阅读次数:
399
写这篇原创文章是因为看到了极客中的一篇文章《有趣各种编程语言实现2+2=5》,其中C语言是这样实现的:
int main() {
char __func_version__[] = “5″; // For source control
char b[]=”2″, a=2;
printf(“%d + %s = %s\n”, a, b, a+b);
return 0;
}
有些童鞋可能会说...
分类:
编程语言 时间:
2014-06-26 11:03:19
阅读次数:
282
最近有一个需求,就是控制系统的音量,我们都知道原理在mediaPlayer.framework框架下,有方法
// The current volume of playing music, in the range of 0.0 to 1.0.
// This property is deprecated -- use MPVolumeView for volume control instea...
分类:
其他好文 时间:
2014-06-26 10:44:33
阅读次数:
324