转载:http://blog.chinaunix.net/uid-22414998-id-3268537.html{ "keys": ["ctrl+`"], "command": "show_panel", "args": {"panel": "console", "toggle": true} }...
分类:
其他好文 时间:
2014-10-21 22:50:38
阅读次数:
171
http://www.tyvj.cn/Problem_Show.aspx?id=1124 设状态dp[i][j] 为第i个花放入第j个瓶子里所能得到的最大价值 且 (i 2 #include 3 #include 4 #include 5 #include 6 #include 7...
分类:
其他好文 时间:
2014-10-21 21:06:06
阅读次数:
207
启用Ad Hoc Distributed Queries: exec sp_configure 'show advanced options',1reconfigureexec sp_configure 'Ad Hoc Distributed Queries',1reconfigure 使用完成后,...
分类:
数据库 时间:
2014-10-21 19:30:05
阅读次数:
341
- (void)show;{ self.hidden = NO; CAKeyframeAnimation *animation = [CAKeyframeAnimation animationWithKeyPath:@"transform"]; CATra...
分类:
其他好文 时间:
2014-10-21 17:36:32
阅读次数:
146
SQL 如何 远程备份数据库到本地
--1、启用xp_cmdshell
USE master
EXEC sp_configure 'show advanced options', 1
RECONFIGURE WITH OVERRIDE
EXEC sp_configure 'xp_cmdshell', 1
RECONFIGURE WITH OVERRIDE
EXEC sp_...
分类:
数据库 时间:
2014-10-21 15:27:55
阅读次数:
207
1 更具资源ID,设置窗口的属性2 隐藏、显示、可用等。3 //显示城市下拉列表4 GetDlgItem(IDC_CITY_FIRST)->ShowWindow(SW_SHOW);5 //隐藏城市静态文字框6 GetDlgItem(IDC_STATIC_CITY)->ShowWindow(SW_HI...
分类:
编程语言 时间:
2014-10-21 15:12:49
阅读次数:
235
1 在更新静态文本框之前首先隐藏控件2 然后在显示出来。3 代码:4 GetDlgItem(IDC_TEXT_PM)->ShowWindow(SW_HIDE);5 UpDate();//更新数据函数,自定义的6 GetDlgItem(IDC_TEXT_PM)->ShowWindow(SW_SHOW)...
分类:
编程语言 时间:
2014-10-21 13:48:37
阅读次数:
161
// 定义类 类名字是 classA function classA(){ this.b=1; } classA.prototype.b=44; classA.prototype.show = function(){ alert(this.b); }; // 用new实例化 var b = new....
分类:
其他好文 时间:
2014-10-21 11:46:44
阅读次数:
127