码迷,mamicode.com
首页 >  
搜索关键字:a system image must    ( 101019个结果
[leetcode]Reorder List @ Python
原题地址:http://oj.leetcode.com/problems/reorder-list/题意:Given a singly linked listL:L0→L1→…→Ln-1→Ln,reorder it to:L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this...
分类:编程语言   时间:2014-05-01 15:37:03    阅读次数:441
Oracle 创建普通用户,并赋予权限
采用sys or system / manager as sysdba; 连接数据库。创建普通用户konglin: create user konglin identified by pwd_oracle;删除用户, drop user konglin;授予用户登录数据库的权限: grant cre...
分类:数据库   时间:2014-05-01 15:29:35    阅读次数:372
代码生成器
一.界面设计 二.具体代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Configuration; using System.Data; using System...
分类:其他好文   时间:2014-05-01 15:26:48    阅读次数:345
AX 2012 model应用
说句实话,AX2012 model真心不好用,当你开发好,把Model到入到客户环境时,要防止有冲突,假如出现冲突的话,还必须去删除另外一个Model里面冲突的代码,真心麻烦。下面给一个ax 导入的例子:这个就是导入mode的例子,下面还有各种命令:假如你想要上网搜索关于model命令时,可以直接百...
分类:其他好文   时间:2014-05-01 15:24:57    阅读次数:324
C# ?(问号)的三个用处(转载)
public DateTime? StatusDateTime = null;脑子便也出现个问号,这是什么意思呢?网上搜下,总结如下:1. 可空类型修饰符(?):引用类型可以使用空引用表示一个不存在的值,而值类型通常不能表示为空。例如:string str=null; 是正确的,int i=null...
分类:其他好文   时间:2014-05-01 14:46:33    阅读次数:347
把文本以图片的形式保存
private void ToConvert_Click(object sender, EventArgs e) { string strPath = System.Windows.Forms.Application.StartupPath; ...
分类:其他好文   时间:2014-05-01 14:44:33    阅读次数:346
Photoshop:笔刷制作
笔刷的制作:1、新建一个文档,大小为要制作的笔刷大小,把画笔图像放里面2、选择:菜单->编辑->定义画笔预设,这时在画笔面板中会出现刚定义的画笔3、存储画笔,可以把当前的笔刷保存为一个.abr文件,便于移动到其他电脑
分类:其他好文   时间:2014-05-01 14:42:02    阅读次数:309
java hashtable 排序问题
Hashtable h = new Hashtable();h.put("6", "666");h.put("8", "888");h.put("2", "222");for (String key : h.keySet()) System.out.println(key);System.out.....
分类:编程语言   时间:2014-05-01 14:22:31    阅读次数:383
泛型连接数据库
这些天用泛型做了一个数据库的底层,自我感觉很方便,但是功能不是很完善,会继续考虑下去下面给大家分享一下代码1数据库连接的帮助类using System;using System.Collections.Generic;using System.Linq;using System.Text;using...
分类:数据库   时间:2014-05-01 14:07:32    阅读次数:603
xml与dataset的数据交互
1.this.dsConfig = new DataSet();//使用指定的文件将 XML 架构和数据读入 System.Data.DataSet。 this.dsConfig.ReadXml(System.Windows.Forms.Application.StartupP...
分类:其他好文   时间:2014-05-01 13:47:02    阅读次数:304
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!