码迷,mamicode.com
首页 >  
搜索关键字:sub    ( 10221个结果
ZOJ 1074 To the Max (DP)
Problem Given a two-dimensional array of positive and negative integers, a sub-rectangle is any contiguous sub-array of size 1 x 1 or greater located within the whole array. The sum of a rectangle...
分类:其他好文   时间:2014-08-14 01:35:57    阅读次数:228
Excel 2007 批量删除隐藏的文本框[转]
该方法取自百度知道,该朋友给出函数,我详细写一下方法。打开有文本框的excel文件。按 Alt+F11 打开编辑器。将下面的函数复制进去:Sub deltxbox()Dim s As ShapeFor Each s In ActiveSheet.ShapesIf s.Type = msoTextBo...
分类:其他好文   时间:2014-08-12 18:42:05    阅读次数:222
keybd_event 转载
Option ExplicitPrivate Declare Sub keybd_event Lib "user32" (ByVal bVk As Byte, ByVal bScan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long)...
分类:其他好文   时间:2014-08-12 13:29:14    阅读次数:276
29python运算符重载
__init__ 构造函数__del__ 析构函数__add____sub____or____repr__,__str____call____getattr____setattr____delattr____getattribute____getitem____setitem____delitem_...
分类:编程语言   时间:2014-08-12 13:10:34    阅读次数:247
批量修改WORD表格属性
有时候需要对word中很多表格的属性进行修改,而word无法批量修改属性,所有这里记录一个宏Sub TableFormatter()Dim oTbl As Table, i As IntegerFor Each oTbl In Selection.Tables With oTbl .Rows...
分类:其他好文   时间:2014-08-12 12:59:04    阅读次数:383
关于垂直对齐方式vertical-align
vertical-align包括以下取值: ?baseline:浏览器默认取值; sub:文字的下标; super:文字的上标; top:垂直向上对齐; text-top:使元素和上级元素的字体向上对齐; middle:垂直居中对齐; text-bottom:使元素和上...
分类:其他好文   时间:2014-08-12 03:42:23    阅读次数:266
perl按固定长度分裂字符串
$a="111111111111111111111111111111111111";@b = $a =~ /\w{3}/g; print "@b\n";@c = unpack("(A3)*", $a);print "$c[7]\n"; for ($i=1;$i<=13;$i=$i+3){$b=sub...
分类:其他好文   时间:2014-08-11 20:53:42    阅读次数:959
python 学习笔记re
在学习python的过程中很多时候都需要用到re(正则),因为我也不是开发所以呢只是简单说一下经常需要用到的东西。 在工作中经常用到的主要是三个函数:1、math 2、search 3、sub 4、split 1、re.math(a,b) math和search其实用法差不多,只是找...
分类:编程语言   时间:2014-08-11 20:51:02    阅读次数:240
VB的MSHFlexGrid控件内容导入Excel
机房收费系统中有很多窗体用到导出到Excel,说一下vb与Excel的交互,如何才能将MSHFlexgrid中的内容导出到Excel。      首先在VB中添加引用Microsoft Excel 14.0 Object Library。然后找到相应按钮,在过程中添加如下代码: Private Sub cmdExport_Click() Dim i As Long, j As Lo...
分类:其他好文   时间:2014-08-11 18:05:12    阅读次数:172
Problem A SPOJ SUB_PROB
DescriptionString Matching is an important problem in computer science research and finds applications in Bioinformatics, Data mining,pattern recognit...
分类:其他好文   时间:2014-08-11 08:21:41    阅读次数:345
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!