码迷,mamicode.com
首页 >  
搜索关键字:__text reloc 8 indir    ( 52606个结果
SQL SERVER 下PadLeft函数
在.net中,可以使用String.PadLeft函数左对齐字符串,在左边用指定的Unicode字符填充以达到指定的总长度。 例如:在做自动编号这样使用 1: int ID = da.GetMaxNum() + 1; 2: this.tbID.Text = ID.ToString().PadLeft...
分类:数据库   时间:2014-05-23 11:46:00    阅读次数:459
C#中窗体间参数传递实现增删改的例子
此例子中传递的变量有string type,string text,储存在结构数组中;static int i储存在Sta类中(如果在外面声明,调用它老出错),里面有geti和seti函数来操纵它。各个窗体实现功能及截图:各窗体代码如下:using System;using System.Colle...
分类:Windows程序   时间:2014-05-23 10:41:47    阅读次数:550
java获取当前时间的方式【转】
1 import java.sql.Timestamp; 2 import java.text.ParsePosition; 3 import java.text.SimpleDateFormat; 4 import java.util.Date; 5 6 import com.tt...
分类:编程语言   时间:2014-05-23 10:15:18    阅读次数:998
Mediator模式
参考资料《大话设计模式》Mediator(中介者)模式:使各个对象不需要显式的相互调用,从而使其耦合松散。using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ds_me...
分类:其他好文   时间:2014-05-23 10:13:17    阅读次数:331
UVA 11988 Broken Keyboard (a.k.a. Beiju Text)
题目大意: 输入一个文章,[ 就是把光标放到最前面  ] 把光标放到最后面。 输出最后得到的文章。 思路分析: 用deque 模拟。 #include #include #include #include #define maxn 111111 using namespace std; char str[maxn]; deque Q; deque::itera...
分类:其他好文   时间:2014-05-23 08:12:11    阅读次数:335
职责链模式、桥接模式
参考资料《大话设计模式》职责链模式:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ds_chainofresponsibility{ class Progr...
分类:其他好文   时间:2014-05-20 12:52:03    阅读次数:328
matlab数据转换为字符串并合并字符串标注到图像曲线上
1.把数字转换为字符串 【函数描述】str=num2str(A):把数组A中元素取小数点后四位,并转换为字符串。 【函数实例】把数字转换为字符串,输入语句: str1=num2str(pi) str2=num2str(eps) 输出结果: str1 =3.1416 str2 =2.2204e-016...
分类:其他好文   时间:2014-05-20 11:40:58    阅读次数:248
SqlHelper 简单版
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Data.SqlClient;namespace AddressBook{...
分类:数据库   时间:2014-05-20 10:08:21    阅读次数:328
HTML+css基础认识
标签: css属性:font-family,font-size,font-weight,font-style,color,text-decoration,text-align:justify;letter-spacing,wo...
分类:Web程序   时间:2014-05-20 09:58:52    阅读次数:311
HTML <span> 标签
定义和用法 标签被用来组合文档中的行内元素。HTML 与 XHTML 之间的差异NONE提示和注释:提示:请使用 来组合行内元素,以便通过样式来格式化它们。注释:span 没有固定的格式表现。当对它应用样式时,它才会产生视觉上的变化。例子some text.some other text.例子解释....
分类:Web程序   时间:2014-05-20 08:26:17    阅读次数:431
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!