procedure TForm1.FormShow(Sender: TObject);begin ShowWindow(Application.handle, SW_HIDE); SetWindowLong(Self.handle, GWL_EXSTYLE, GetWindowLong(Self.h...
分类:
其他好文 时间:
2014-07-29 20:41:42
阅读次数:
218
php获取文件名$phpself =$_SERVER['PHP_SELF']; //获取当前文件名$str = end(explode("/",$phpself)); //去掉'/'echo $str.""; //输出文件全名echo substr($str,0,strrpos($str, '...
分类:
Web程序 时间:
2014-07-29 17:14:22
阅读次数:
225
-(void)shareWork:(id)sender{ UIActionSheet *share = [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:@"关闭" destructiveButtonT....
分类:
其他好文 时间:
2014-07-29 17:01:12
阅读次数:
273
描述:递归代码: 1 class Solution: 2 # @param num, a list of integers 3 # @return a tree node 4 def sortedArrayToBST(self, num): 5 if len(...
分类:
其他好文 时间:
2014-07-29 16:41:11
阅读次数:
210
在oc中我们通过-(CardMatchingGame *)game{ if(!_game) _game=[[CardMatchingGame alloc] initWithCardCount:[self.cardButtons count] usingDeck:[self createDeck...
分类:
其他好文 时间:
2014-07-29 14:09:28
阅读次数:
173
1 var info = self.get("returnValue");2 view.set("#labelProduct.text","产品:"+info.product);3 view.set("#labelVendor.text","提供商:"+info.vendor);4 view.set...
分类:
其他好文 时间:
2014-07-29 13:36:18
阅读次数:
212
1.使用pipeline进行批量导入数据
class Redis_Handler(Handler):
def connect(self):
#print self.host,self.port,self.table
self.conn = Connection(self.host,self.port,self.table)
def execute(self, acti...
分类:
编程语言 时间:
2014-07-29 13:06:56
阅读次数:
394
列表解析语法:[exprforiter_variniterable][exprforiter_variniterableifcond_expr]如果是有类的情况下,可以使用classPerson(object):9def__init__(self,name,age=0):10self.name=na...
分类:
编程语言 时间:
2014-07-29 12:12:06
阅读次数:
254
#coding:utf-8importConfigParserclassConf():def__init__(self,name):self.name=nameself.cp=ConfigParser.ConfigParser()self.cp.read(name)defgetSections(se...
分类:
编程语言 时间:
2014-07-29 11:25:16
阅读次数:
290
fromPyQt4importQtGuifromPyQt4importQtCorefromPyQt4.QtCoreimportpyqtSlot,SIGNAL,SLOTimportsysclassmyTabWidget(QtGui.QTabWidget):deftabChangedSlot(self,...
分类:
其他好文 时间:
2014-07-29 11:09:06
阅读次数:
500