在此贴出repeater中的ItemDataBound事件中的代码:private void
ItemDataBound(object sender, RepeaterItemEventArgs e) { if (e.Item.ItemType ==
ListIt...
分类:
其他好文 时间:
2014-05-09 10:29:55
阅读次数:
294
CONTAINING_RECORD 这样的一个宏,我看了它的定义,如下:#define
CONTAINING_RECORD(address, type, field) ((type *)( (PCHAR)(address) -
(ULONG_PTR)(&((type*)0)->field)))cla...
分类:
其他好文 时间:
2014-05-09 04:21:01
阅读次数:
330
protected void btnCrop_Click(object sender,
EventArgs e) { ...
分类:
其他好文 时间:
2014-05-09 04:02:32
阅读次数:
335
using System.Data;using System.Data.Sql;using
System.Data.SqlClient; protected void Page_Load(object sender, EventArgs e) {
SqlConn...
分类:
数据库 时间:
2014-05-09 04:01:32
阅读次数:
388
//窗体加载完毕 void MyMessageBox_Loaded(object sender,
RoutedEventArgs e) { //启动定时期倒计时,多线程计时 //System.Threading....
分类:
编程语言 时间:
2014-05-09 03:27:00
阅读次数:
366
newton板已经发布了,下面接着整理我调试的一个小小的方面,蓝牙的功能实现以及测试:
转载请注明出处:http://blog.csdn.net/wang_zheng_kai
3.2. Bluetooth Function Test
141
142 1)View the Bluetooth MAC address and device names:hcitool dev
143...
分类:
其他好文 时间:
2014-05-09 01:32:21
阅读次数:
265
sharepoint学习笔记汇总
http://blog.csdn.net/qq873113580/article/details/20390149
protected void Button1_Click(object sender, EventArgs e)
{
using (SPSite site = new SPSite("http:...
分类:
其他好文 时间:
2014-05-08 17:13:44
阅读次数:
254
private void treeView1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
if(e.Button==MouseButtons.Right)
{
TreeNode tn=treeView1.GetNodeAt(e.X,e.Y);
if(tn!=null)treeView1.SelectedNode...
分类:
其他好文 时间:
2014-05-08 16:24:44
阅读次数:
308
这道题采用穷举法。 1 /** 2 * Given a string containing only
digits, 3 * restore it by returning all possible valid IP address combinations.
4 ...
分类:
其他好文 时间:
2014-05-08 09:17:22
阅读次数:
248
其实很简单,就是实用lpadmin命令,下面给出一个例子:
printername="YOUR_PRINTER_NAME"
location="LOCATION INFO"
gui_display_name="HP Color LaserJet M600 in Office for Example"
address="ipp://printserver.yourcompany.org/YOUR_...
分类:
其他好文 时间:
2014-05-08 06:05:55
阅读次数:
303