码迷,mamicode.com
首页 >  
搜索关键字:with_items    ( 3511个结果
ListBox的使用
1、将listbox1拖到窗体后添加字符串项listBox1.Items.Add("item1");Done
分类:其他好文   时间:2014-05-10 01:31:56    阅读次数:227
zabbix数据库研究
玩了一段时间zabbix,对他的数据库有点研究,在这里分享下添加一个监控的过程,希望能帮到路过的朋友。添加一个监控项目(不包括添加模板)涉及到几个表,分别是:ids,hosts,applications,groups,hosts_groups,interface,items,items_applications,如果还需要添加触发器的话还..
分类:数据库   时间:2014-05-08 02:32:26    阅读次数:1060
SPListItems操作
1、快速删除SPListItems集合在Sharepoint开发中可能需要一次删除成百上千条记录,这时候如果轮询SPList.Items并直接调用该对象的删除方法来删除的话性能极差,会叫你崩溃。下面介绍一个快速删除大量数据的方法:using (SPWeb myweb = mysite.AllWebs...
分类:其他好文   时间:2014-05-07 10:04:03    阅读次数:291
Codechef Maximum Weight Difference题解
Maximum Weight Difference Chef has gone shopping with his 5-year old son. They have bought N items so far. The items are numbered from 1 to N, and the item i weighs Wi grams. Chef's son insist...
分类:其他好文   时间:2014-05-06 22:59:49    阅读次数:451
Javascript Array
ArraysArrays are zero-indexed, ordered lists of values. They are a handy way to store a set of related items of the same type (such as strings), thoug...
分类:编程语言   时间:2014-05-04 19:08:29    阅读次数:533
delphi xe6 android ListView增加 Header或Footer 的方法
var Item1: TListViewItem;begin Item1 := ListView1.Items.Add; Item1.Purpose:=TListItemPurpose.Header;// Item1.Purpose:=TListItemPurpose.Footer; Item1.t...
分类:移动开发   时间:2014-05-03 22:34:33    阅读次数:547
SharePoint中删除列表记录
方法1(快速,以理解,可以封装):SPList spListQuestion = spWeb.Lists["Question List"];for (int i = spListQuestion.Items.Count - 1; i >= 0; i--){ spListQuestion.Ite...
分类:其他好文   时间:2014-05-01 21:01:37    阅读次数:448
jQuery操作input值总结
1、获取选中的值:获取一组radio被选中项的值: var item = $("input[@name=items]:checked").val();获取select被选中项的文本: var item = $("select[@name=items] option[@selected]").tex....
分类:Web程序   时间:2014-05-01 13:31:03    阅读次数:482
JList的基本操作
1.初始化并添加元素DefaultListModel leftListModel=new DefaultListModel();String[] items = Model.getPairs();for (int i=0; i=0; i--) { rightListModel.remove(sele...
分类:其他好文   时间:2014-05-01 07:31:38    阅读次数:304
C++Primer 中的Sales_items.h头文件
C++Primer 中的Sales_item.h头文件...
分类:编程语言   时间:2014-04-28 10:47:42    阅读次数:319
3511条   上一页 1 ... 349 350 351 352 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!