码迷,mamicode.com
首页 >  
搜索关键字:Once    ( 2791个结果
PHPEXCEL生成excel文件与导出excel文件
<?php Header("Content-type:text/html;charset=utf-8"); error_reporting(E_ALL & ~E_NOTICE); require_once(ESF_DIR.‘/zjadmin/phpexcel/Classes/PHPExcel.php‘); $db->query("set names utf8"); $Info_area=...
分类:Web程序   时间:2014-12-30 13:42:49    阅读次数:205
【LeetCode】Substring with Concatenation of All Words 解题报告
【题目】 You are given a string, S, and a list of words, L, that are all of the same length. Find all starting indices of substring(s) in S that is a concatenation of each word in L exactly once an...
分类:其他好文   时间:2014-12-29 16:54:35    阅读次数:115
Remove Duplicates from Sorted Array -- leetcode
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate extra space for another array, you must do this in place with...
分类:其他好文   时间:2014-12-28 14:16:37    阅读次数:169
通达OA 一个数据循环输出程序异常调试的案例
今天,通达OA二次开发交流群里有一个朋友问这样一个问题,通过代码连接数据库后,可以正常显示数据库中的数据,但是循环输出的代码只能输出单行数据,数据表里实际有多条数据,是什么原因导致循环失败的呢?include_once("inc/conn.php"); // 如需要连接数据库则包含include_once("inc/utility_all.php"); // 如需要使用公用函数则包含include...
分类:其他好文   时间:2014-12-27 20:32:02    阅读次数:223
通达OA 常用内置函数示例
通达OA系统内置了大量的函数,简化了程序开发,这里从二次开发手册中节选出部分例子,通过实际的程序运行调试给大家做个简要的介绍。内置函数参考     一、 utility.php1、Button_Back  显示一个返回按钮include_once( "inc/utility.php" );                  //先进行函数文件引用Button_Back($HTML_CHARSET ...
分类:其他好文   时间:2014-12-27 20:24:40    阅读次数:408
11Communicating with Other Fragments(Fragment之间的通信)
In order to reuse the Fragment UI components, you should build each as a completely self-contained, modular component that defines its own layout and behavior. Once you have defined these reusable Fra...
分类:其他好文   时间:2014-12-26 09:45:18    阅读次数:210
通过c++类创建对话框
本文由 书画小说软件 整理发布 内容与本软件无关 更惬意的读、更舒心的写、更轻松的发布 对话框直接添加类,类向导添加时出现了问题。 因此便想通过添加C++类的方式间接实现添加对话框类。 第一步:添加C++类 #pragma once class CWordCountDlg { public:     CWordCountDlg(void);   ...
分类:编程语言   时间:2014-12-25 16:24:15    阅读次数:147
ZOJ 3209 Treasure Map(DLX精确覆盖)
Your boss once had got many copies of a treasure map. Unfortunately, all the copies are now broken to many rectangular pieces, and what make it worse, he has lost some of the pieces. Luckily, it is...
分类:其他好文   时间:2014-12-25 00:15:48    阅读次数:198
[leetcode]Combination Sum II
问题描述: Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T. Each number in C may only be used once in the c...
分类:其他好文   时间:2014-12-22 22:55:09    阅读次数:218
Remove Duplicates from Sorted List leetcode
Given a sorted linked list, delete all duplicates such that each element appear only once. For example, Given 1->1->2, return 1->2. Given 1->1->2->3->3, return 1->2->3. 题目意思为删除链表中重复的元素 思路: ...
分类:其他好文   时间:2014-12-22 22:51:16    阅读次数:191
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!