码迷,mamicode.com
首页 >  
搜索关键字:enumerated type mixe    ( 51988个结果
asp.net 翻页时用ViewState保存上一页checkbox勾选的值
/// /// checkbox勾选取消勾选事件 /// /// /// protected void checkboxl_OnCheckedChanged(Object sender, EventArgs e) { string tempValue = string.Empty;//拼接联...
分类:Web程序   时间:2014-07-03 09:33:08    阅读次数:194
单词计数
单词计算程序,为啥遍历输出的时候会出现段错误 1 #include 2 #include 3 #include 4 #include 5 6 #define MAXWORD 100 7 8 struct tnode{ 9 char *word; 10 int c...
分类:其他好文   时间:2014-07-03 09:26:20    阅读次数:201
VC中常见编译错误[转]
VC中常见编译错误(转载看看)1)disable#pragma warning (disable: 4311 4312) //指针类型强制转化,大小不完全匹配warning C4311: ''type cast'' : pointer truncation from ''TriNode *const...
分类:其他好文   时间:2014-07-03 07:01:57    阅读次数:214
判断div是否隐藏
分类:其他好文   时间:2014-07-03 06:56:50    阅读次数:142
C语言数据类型转换
变量的数据类型是可以转换的。转换的方法有两种,一种是自动转换,一种是强制转换。自动转换自动转换发生在不同数据类型的量混合运算时,由编译系统自动完成。自动转换遵循以下规则:若参与运算量的类型不同,则先转换成同一类型,然后进行运算。转换按数据长度增加的方向进行,以保证精度不降低。如int型和long型运...
分类:编程语言   时间:2014-07-03 06:49:05    阅读次数:198
WPF-模拟Application.DoEvents的类
/// /// /// public static class DispatcherHelper { /// /// Simulate Application.DoEvents function of class. /// [SecurityPermissionAttribute ( Se...
分类:移动开发   时间:2014-07-03 06:16:08    阅读次数:379
添加自定义活动控件
public partial class ActivityDesigner1 { public ActivityDesigner1() { //InitializeComponent(); } }[Designer(typeof(ActivityDesigner1))] public sealed....
分类:其他好文   时间:2014-07-03 06:00:03    阅读次数:204
实战: asp.net dropdownlist 和 listbox 一起使用
2014-71 应用某门网应用排序管理1: 接收参数, 初始化int totalRows = 7;int type = 0;protected void Page_Load(object sender, EventArgs e){ try { type = Convert.ToInt32(Reque...
分类:Web程序   时间:2014-07-03 00:32:08    阅读次数:328
Linq 查询 List集合
总是听到身边的同事说起Linq ,知道上学的时候学过,可是自从毕业之后就再也没用过,总觉得是很牛的技能 ,可是当自己真正学会用的时候才发现,我去,So easy 。废话不多说直接上代码吧 var list1 = (from f in listFund ...
分类:其他好文   时间:2014-07-03 00:00:31    阅读次数:225
JS事件流
事件流描述的是从页面中接收事件的顺序。IE和Netscape的开发团队提出完全相反的事件流概念。IE的事件流是事件冒泡流,而Netscape的事件流是事件捕获。(1)事件冒泡事件开始由最具体的元素(文档中嵌套层次最深的那个节点)接收,然后逐级向上传播到较为不具体的节点。exampleclick me...
分类:Web程序   时间:2014-07-02 23:19:21    阅读次数:383
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!