码迷,mamicode.com
首页 >  
搜索关键字:new    ( 74660个结果
5.1 零成本控制
5.1.1 业务方案描述 1. 当物料没有定义成本之前,不允许进行任何事务处理操作。包括物料的接收、物料在仓库的各种库存事务,以及物料的出仓等操作。 2. 系统物料新增物料状态:”NEW” 禁止库存事务,该状态下的物料禁止一切库存事务处理,但可以进行计划业务。 3. 在系统物料属性模板里物料状态全部...
分类:其他好文   时间:2014-06-09 22:24:59    阅读次数:326
java仿win7计算器布局
代码:package calculator;import javax.swing.*;import java.awt.*;import java.awt.event.*;public class cal extends JFrame{ private JTextField tf =new JT...
分类:编程语言   时间:2014-06-09 22:17:55    阅读次数:297
sharepoint ECMA using a custom contentType to creating a list in SubSite
Using a custom contentType to creating a list:function GetContentType(){ var clientContext = new SP.ClientContext(siteUrl); var currentW...
分类:其他好文   时间:2014-06-09 00:39:06    阅读次数:301
StringBuilder - new line.
1 //use this to implement platform-cross new-line.2 StringBuilder sb = new StringBuilder();3 sb.append(System.getProperty("line.separator"));
分类:其他好文   时间:2014-06-09 00:35:09    阅读次数:213
[LeetCode]Distinct Subsequences,解题报告
题目 Given a string S and a string T, count the number of distinct subsequences of T in S. A subsequence of a string is a new string which is formed from the original string by deleting some (can be...
分类:其他好文   时间:2014-06-08 14:49:14    阅读次数:347
struts2+extjs文件上传完整实现(解决了上传中的各种问题)
首先需要引入上传控件 /js/ext/examples/ux/fileuploadfield/FileUploadField.js" charset="utf-8"> 弹出上传框对应extjs代码 var uploadForm=new Ext.FormPanel({ id:'uploadForm', width:520, frame:true, fileUpload: true,...
分类:Web程序   时间:2014-06-08 09:51:37    阅读次数:314
[Oracle] 分析函数(1)- 语法
语法概述 下面看一个例子简单过下语法: 例: sum(sal) over (partition by deptno order by ename) new_alias sum就是函数名 (sal)是分析函数的参数,每个函数有0~3个参数,参数可以是表达式,例如:sum(sal+comm) over() 是开窗函数,这是开启分析函数的起点,对于既可作为聚集函数又可作为分析函...
分类:数据库   时间:2014-06-08 05:09:07    阅读次数:329
Crixalis's Equipment
Crixalis's Equipment Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 32768/32768K (Java/Other) Total Submission(s) : 34   Accepted Submission(s) : 14 Font: Times New Roman | Verdana | Georgi...
分类:其他好文   时间:2014-06-08 04:37:14    阅读次数:263
关于JavaScript中toSource问题的小结
今天在一篇关于内建类的博文中,讲到了Boolean类,其对象有一个toSource()方法:返回表示对象源代码的字符串。由于学的浅,测试时,出现了不同的结果: var b = new Boolean(""); document.write("b的值是:"+b+""); document.write("b的原始值是:"+b.valueOf()+""); document.write("b的字符串值是:"+b.toString()+""); document.write("b的...
分类:编程语言   时间:2014-06-08 04:14:31    阅读次数:277
[LeetCode] Remove Element [20]
题目 Given an array and a value, remove all instances of that value in place and return the new length. The order of elements can be changed. It doesn't matter what you leave beyond the new length. 原题链接(点我) 解题思路 给一个数组和一个数字,移除该数字在数组中所有出现的地方。 这是一个非常简单的题目,应...
分类:其他好文   时间:2014-06-08 04:05:50    阅读次数:284
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!