标准参考OBJECT 元素定义了一个嵌入的对象。其引入的初衷是取代 IMG 和 APPLET 元素。不过由于安全等各方面原因以及缺乏浏览器支持,这一初衷并未实现。浏览器的对象支持依赖于对象类型。然而,即便是相同的对象类型,各主流浏览器也都 使用了不同的代码来加载。 classid 属性用于指定对象实...
分类:
其他好文 时间:
2014-07-22 00:34:38
阅读次数:
251
代码清理:USE[master] GO ALTER DATABASE 表名 SET RECOVERY SIMPLE WITH NO_WAIT GO ALTER DATABASE 表名 SET RECOVERY SIMPLE --简单模式 GO USE 表名 GO DBCC SHRINKFILE (N...
分类:
数据库 时间:
2014-07-22 00:33:37
阅读次数:
232
flash中有版权声明,不适合商业开发。这是官网地址:http://www.hdfu.net/本文参考了http://blog.csdn.net/yafei450225664/article/details/12855915 并且加入了自己的解析,以供之后的参考。官网提供的demo包,包含了ph.....
分类:
Web程序 时间:
2014-07-22 00:33:34
阅读次数:
312
我们在网页上看到的播放器无外乎WMP/RealOne/Macromedia Flash Player,其他的无非是面板不同,或者添加了其他控件,对于计算机上安装的一些播放器也都是编码和解码器的整合,其最核心的编码和解码技术是相同的。例如:网络上最流行的windows media流(asf,wma,w...
分类:
其他好文 时间:
2014-07-22 00:21:36
阅读次数:
260
Flash Builder4破解步骤
1、安装Flash Builder4.0试用版
2、找到Flash Builder4的安装路径,查找如下相应的文件
3、修改如下文件下的文件
(1)找到Adobe Flash Builder 4 Installer\Adobe Flash Builder 下的features和plugins
(2)查找Adob...
分类:
其他好文 时间:
2014-07-21 23:41:53
阅读次数:
261
Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the hist...
分类:
其他好文 时间:
2014-07-21 14:18:36
阅读次数:
235
Givennnon-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the histog...
分类:
其他好文 时间:
2014-07-21 10:04:43
阅读次数:
229
参考知乎:http://www.zhihu.com/question/22537362在mac os设置-安全性与隐私-隐私-辅助功能找到flash bulder 打上前面的勾,如下图:
分类:
移动开发 时间:
2014-07-21 00:33:30
阅读次数:
231
使用flash bulider开发app在ios模拟器上运行,出现以下错误错误提示是isb与当前设备的osx不符合。当前使用airsdk版本是4.0,xcode5.1.1。查看了air13sdk的更新说明有这个提示:查看了air14sdk的更新说明有这个提示:md,这就是个坑啊......。故升级到...
分类:
移动开发 时间:
2014-07-21 00:33:09
阅读次数:
189
//area=(n*m)/ ((x+1)*(k-x+1))
//1: x==0;
//2: x=n-1
//3: x=m-1
# include
long long max(long long x,long long y)
{
return x>y?x:y;
}
int main()
{
long long n,m,k,sum,t,ans;
scanf("%lld%lld%lld",&...
分类:
其他好文 时间:
2014-07-20 22:27:13
阅读次数:
172