//导出按钮protected void btn_Export_Click(object
sender, EventArgs e) { Model.article art = new BLL.Common().GetModel(this.id);
WriteHtml(art.content);//a...
分类:
其他好文 时间:
2014-06-07 03:04:09
阅读次数:
299
操作技巧 以下操作基于word2007,以及visio2003。 1. 也许你所不知道的
Office是微软公司开发的办公软件,包括Word,PPT,Excel等,但office≠办公软件 && 办公软件≠office
除了微软的office系列以外,还有苹果公司的iWork,谷歌的Docs,金山的...
分类:
其他好文 时间:
2014-06-07 02:39:38
阅读次数:
380
需求:第一階段.
動態生成網頁,此網頁中顯示當前目錄下的文件結構,並可以瀏覽文本文檔以及內建圖片。第一階段.
建立新的文本文檔,並用富文本的方式,可標記某一段文字顏色以及添加圖片,可以加載其他更多的文件類型,如excel, word, rtf,
pdf操作流程;用java程式執行dos語句,生成文件...
分类:
其他好文 时间:
2014-05-30 11:11:42
阅读次数:
262
Print2Flash是一个虚拟打印机类的文档转换软件,因此只要是可打印的文档,都可以轻松转换为Flash文件,即SWF动画,特别是用于转换PDF、Word、Excel、PowerPoint等文档为SWF格式。
Print2Flash有2个版本,其中Print2Flash Free是免费版本,功能....
分类:
其他好文 时间:
2014-05-30 04:51:51
阅读次数:
253
一次过,思路是:最大收益可以由所有上升序列差价叠加中获得 1 public class
Solution { 2 public int maxProfit(int[] prices) { 3 int profit = 0; 4 if
(prices.lengt...
分类:
其他好文 时间:
2014-05-29 20:43:33
阅读次数:
254
题意:所给数据中是否有负环? 没有负环的图中所有路径中最短的值思路:1. bellmanford
判断负环2.flodyWarshall 求所有定点的最短路径细节:1. bellmanford 算法时间复杂度为 o(n^3), 因为图的使用邻接矩阵存储的,
使用邻接表代码会容易理解些, 引用 wik...
分类:
其他好文 时间:
2014-05-29 20:41:30
阅读次数:
237
题意:computing a max-spacingk-clustering.spacing 是指两个
cluster 之间的最小距离输入:[number_of_nodes][edge 1 node 1] [edge 1 node 2] [edge 1
cost][edge 2 node 1] [e...
分类:
其他好文 时间:
2014-05-29 20:40:30
阅读次数:
323
题意:what is the largest value ofksuch that there is
ak-clustering with spacing at least 3? That is, how many clusters are needed to
ensure that no pair...
分类:
其他好文 时间:
2014-05-29 20:39:26
阅读次数:
305
原题地址:https://oj.leetcode.com/problems/subsets-ii/题意:Given
a collection of integers that might contain duplicates,S, return all possible
subsets.Note:E...
分类:
编程语言 时间:
2014-05-29 19:10:53
阅读次数:
278
据说VS2005里即提供了测试功能,可是对于像我或者我们这样的开发人或团队真还没有进化到用测试这块。一直以来都是手工测试或等到用户发现问题。今天在网上找了一个介绍单元测试的WORD文档,按里面说的做了一下,现将过程记录如下。(非常简单的例子,希望大家不要扔鸡蛋,唉·#%·#¥·#·#¥·#¥)1、准...
分类:
其他好文 时间:
2014-05-28 11:14:26
阅读次数:
250