码迷,mamicode.com
首页 >  
搜索关键字:minimum window subst    ( 31566个结果
JFace dailog button事件中刷新透视图异常 Trying to execute the disabled command org.eclipse.ui.window.closePerspective
报错的代码为protected void buttonPressed(int buttonId) {Display.getDefault().syncExec(new Runnable() { public void run() { localpmtsStreamViewsAction.r...
分类:Windows程序   时间:2014-06-15 22:51:34    阅读次数:684
CSS 字体
华文细黑:STHeiti Light [STXihei]华文黑体:STHeiti华文楷体:STKaiti华文宋体:STSong华文仿宋:STFangsong俪黑 Pro:LiHei Pro Medium俪宋 Pro:LiSong Pro Light标楷体:BiauKai苹果俪中黑:Apple LiG...
分类:Web程序   时间:2014-06-15 22:38:24    阅读次数:260
android 窗体透明的,黑暗度等的设置技巧
设置透明度(这是窗体本身的透明度,非背景)1 WindowManager.LayoutParams lp=getWindow().getAttributes();2 lp.alpha=0.3f;3 getWindow().setAttributes(lp);alpha在0.0f到1.0f之间。1.0...
分类:移动开发   时间:2014-06-15 22:26:12    阅读次数:335
[leetcode]Minimum Window Substring @ Python
原题地址:https://oj.leetcode.com/problems/minimum-window-substring/题意:Given a string S and a string T, find the minimum window in S which will contain all...
分类:编程语言   时间:2014-06-15 22:10:42    阅读次数:1109
topcoder SRM 624 DIV2 CostOfDancing
排个序,求前k个元素和即可 int minimum(int K, vector danceCost) { sort(danceCost.begin(),danceCost.end()); return accumulate(danceCost.begin()...
分类:其他好文   时间:2014-06-15 21:53:14    阅读次数:201
topcoder SRM 624 DIV2 BuildingHeightsEasy
从大到小遍历一遍,每次取M个元素,然后求得最小的floor即可 int minimum(int M, vector heights) { sort(heights.begin(),heights.end()); int minFloor = 10000; ...
分类:其他好文   时间:2014-06-15 21:48:45    阅读次数:229
js split str.split(" "); split使用方法 在某处截字符串
输出结果就是223566split就是将一字符串以特定的字符切割成多个字符串,并以一维数组的形式储存我项目中的样例:function SelectCompany(){var str=window.showModalDialog("MessageFrame.htm","","dialogWidth=7...
分类:Web程序   时间:2014-06-15 20:40:46    阅读次数:307
Windows 2008 上 T-SQL 延迟5秒
用Wireshark抓包发现包被分割成60byte的小包, 协商的Windows size=256. 可以通过如下命令解决:为了不让TCP/IP协议的自动调谐功能拖累网络传输速度,按照下面的操作将其关闭掉: 开始--运行--cmd回车-在该工作窗口的DOS提示符下,输入字符串命令“netsh int...
分类:数据库   时间:2014-06-15 19:51:45    阅读次数:214
关于pydev的语法的错误提示
第三方包引入时,eclipse默认会把一些包定为错误的,错误是:“undefined variable from import...” 其实是对的,可是报错,很烦人解决方法:window -- preferences -- pydev -- editor -- code analysis -- Un...
分类:其他好文   时间:2014-06-15 18:40:06    阅读次数:175
模式对话框里的CheckedChanged事件
问题: 模式对话框里的CheckedChanged事件不被触发:解决方法:一、先不直接showModalDialog出要的页面,而是要放一个中单页面window.showModalDialog("Print/Index.aspx?HEADOID=" + strOid + "&rnd=" + Math...
分类:其他好文   时间:2014-06-15 17:22:39    阅读次数:123
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!