码迷,mamicode.com
首页 >  
搜索关键字:vc++ excel    ( 17619个结果
js 实现ReplaceAll 的方法
JS 字符串有replace() 方法。但这个方法只会对匹配到的第一个字串替换。 如下例: New Document 如果要全部替换的话,JS 没有提供replaceAll这样的方法。使用正则表可以达成Replace 的效果:str.replace(/word/g,"Excel")g的意义是:执行全...
分类:Web程序   时间:2014-07-18 20:17:21    阅读次数:205
如何打开一个文本呢?启动进程资源
一句话搞定了,经常看到一些程序在保存为一个txt,或者excel的文件的时候,保存完毕立即打开,其实C#有一个函数可以实现答案:参数输入文件的绝对路径///上面是保存文件的代码System.Diagnostics.Process.Start(System.IO.Path.Combine(AppDom...
分类:其他好文   时间:2014-07-18 19:35:00    阅读次数:219
php读取excel,以及php打包文件夹为zip文件
1.把文件下载到本地,放在在Apache环境下2.d.xlsx是某游戏的服务器名和玩家列表,本程序只适合此种xlsx文件结构,其他结构请修改index.php源码3.访问zip.php的功能是把生成的files文件夹打包成files.zip4.访问index.php即可生成files文件夹,里面0....
分类:Web程序   时间:2014-07-18 17:16:29    阅读次数:326
读取、写入excel数据
在实际项目中,不可避免的会操作excel表格。一直以来都是读取excel表格,可今天为了写入excel表格,可是煞费苦心,终于完成,记录下来以便后续使用。1、读取excel表格的数据读取excel数据,然后导入到数据库中,根据常识,只要是能得到一个dataset,那所有的问题便迎刃而解了。下面将读取...
分类:其他好文   时间:2014-07-18 16:22:24    阅读次数:209
vc 使窗口置顶 在最前面
bool SetWindowTop(CWnd* pWnd){ if(!pWnd) { return false; } if(pWnd->GetExStyle()&WS_EX_TOPMOST) { return true; } else { int i= pWnd->SetWindowPos(&CWn...
分类:其他好文   时间:2014-07-18 09:20:33    阅读次数:180
无法嵌入互操作类型“Microsoft.Office.Interop.Excel.ApplicationClass”。请改用适用的接口
解决把Microsoft.Office.Interop.Excel.DLL的嵌入互操作类型改为ture就可以了
分类:移动开发   时间:2014-07-18 09:02:54    阅读次数:205
Aspose.cells 导出Excel
//Exportprivate void btnExport_Click(object sender, RoutedEventArgs e){string strDataTime = System.DateTime.Now.ToString("yyyyMMdd_HHmmss");string str...
分类:Web程序   时间:2014-07-17 23:30:00    阅读次数:291
Aspose.cells 处理Excel文件
//浏览Excel文件 private void btnScan_Click(object sender, RoutedEventArgs e) { OpenFileDialog ofd = new OpenFileDialog(); ...
分类:Web程序   时间:2014-07-17 22:34:09    阅读次数:283
SharePoint 2010: Export User Profile Properties to a Text File or Excel using PowerShell
导出到txt[void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.Office.Server") [void][System.Reflection.Assembly]::LoadWithParti...
分类:其他好文   时间:2014-07-17 21:37:20    阅读次数:454
EXCEL Pivot table manipulate
EXCEL Pivot table manipulate...
分类:其他好文   时间:2014-07-17 17:02:49    阅读次数:176
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!