public decimal Change_StrToDecimal(string str) { str = str.Trim(); decimal value; str = Server.HtmlDecode(str); if (s...
分类:
其他好文 时间:
2014-08-13 17:42:16
阅读次数:
115
问题见SICP P26此问题的递归方法很简单,类似于背包的思想。 即金额为amount的现金换成n种硬币的种类数 满足循环不变式: count_change(amount,n)=count_change(amount,n-1)+count_change(amount-amount_of_f...
分类:
其他好文 时间:
2014-08-13 14:35:16
阅读次数:
369
(一)、事件列表。 1.blur() 当失去焦点时触发。包括鼠标点击离开和TAB键离开。 2.change() 当元素获取焦点后,值改变失去焦点事触发。 3.click() 当鼠标单击时触发。 4.dblclick() 当鼠标双击时触发。 5.error(...
分类:
Web程序 时间:
2014-08-13 13:01:26
阅读次数:
221
Some time when you want to change the fasta seq into one lineFor awk: awk '/^>/&&NR>1{print "";}{ printf "%s",/^>/ ? $0" ":$0 }' YourFile > newfilenam...
分类:
系统相关 时间:
2014-08-12 21:18:04
阅读次数:
379
Like change page Change activity first we should create a activity ,we should extends class activity and override onCreate() , then configure informat...
分类:
移动开发 时间:
2014-08-12 18:40:24
阅读次数:
215
git add -AstagesAllgit add .stages new and modified,without deletedgit add -ustages modified and deleted,without newgit initecho Change me > change-me...
分类:
其他好文 时间:
2014-08-12 16:33:14
阅读次数:
198
1、设置Gridview控件的某列不可编辑this.gridData.gridView1.Columns["change_date"].OptionsColumn.AllowEdit = false;字段:change_date是数据库中字段,是绑定到gridview上的。2、设置Gridview控...
分类:
其他好文 时间:
2014-08-12 13:09:44
阅读次数:
160
package card;public class Game implements Runnable{ int numPlayers; int startNumber; //players and hands seperate so players can't change the...
分类:
其他好文 时间:
2014-08-12 03:12:34
阅读次数:
285
1\string are immutable, which means you can't change an existing string.>>>greeting = 'Hello world!'>>>greeting[0] = 'J'TypeError: object does not sup...
分类:
编程语言 时间:
2014-08-11 17:06:42
阅读次数:
256
button1_Click(object sender,EventHandler e) { Button button=(Button)sender; button.Text="text property has been change...
分类:
其他好文 时间:
2014-08-11 14:49:22
阅读次数:
150