出现这个问题是因为应用程序使用了特殊端口,修改端口就可以解决。特殊端口列表A security change has been made in Adobe Flash Player 9.0.115.0 to block commonly reserved ports (to prevent mali...
分类:
其他好文 时间:
2014-12-03 12:17:39
阅读次数:
207
VMware-workstation-full-11.0.0-2305329.exeName: VMware-workstation-full-11.0.0-2305329.exe 发行日期: 2014-12-01内部版本号: 2305329Product installation includin...
分类:
系统相关 时间:
2014-12-03 00:09:54
阅读次数:
310
有了前面几章的基础,对一些简单的应用是可以处理的,但在实际项目中,经常是关联表的查询,比如最常见到的多对一,一对多等。这些查询是如何处理的呢,这一讲就讲这个问题。我们首先创建一个Article 这个表,并初始化数据.
程序代码
Drop TABLE IF EXISTS `article`;
Create TABLE `article` (
`id` int(11)...
分类:
其他好文 时间:
2014-12-02 22:39:58
阅读次数:
216
1 #include 2 #include 3 #include 4 5 using namespace std; 6 7 const int nn=102; 8 int a[nn]; 9 10 int quick_partition(int i,int j);11 void quick...
分类:
编程语言 时间:
2014-12-02 22:29:58
阅读次数:
250
因为在和策划讨论的时候发现游戏需要一个战争迷雾的效果,本来想到一般rts游戏的那种,但是手游不需要那么好的效果,之前我玩过一款《热战联盟》,然后还看到一个《文明变革2》的手游,出现了战争迷雾的效果,猜测了一下制作的方法,应该是用不同的云雾图素随机覆盖,然后做边..
分类:
其他好文 时间:
2014-12-02 17:38:05
阅读次数:
369
Qt Quick提供了一个类 AnimatedImage ,可以播放 Gif 动画,使用简单,这里是一个示例。...
分类:
其他好文 时间:
2014-12-02 13:34:24
阅读次数:
236
1,把一个表中的字段更新到另一个表中 delimiter //
drop procedure if exists pro_test;
create procedure pro_test(out parm int)
begin
declare i int;
set i=1;
while i <= 50 do
update room_room set prov...
分类:
数据库 时间:
2014-12-02 10:42:24
阅读次数:
272
动态规划Given a stringS, find the longest palindromic substring inS. You may assume that the maximum length ofSis 1000, and there exists one unique longes...
分类:
其他好文 时间:
2014-12-01 20:48:25
阅读次数:
250
上一篇说了如何提取接口数据。这里讲下界面用到的一些库。今天给大家推荐metro扁平化样式UI控件库:MahApps.Metro 。官方地址:http://mahapps.com/guides/quick-start.html 支持控件:ButtonsDataGridDialogsFlipViewFl...
分类:
其他好文 时间:
2014-12-01 19:08:59
阅读次数:
184
jQuery Media Plugin是一款基于jQuery的网页媒体播放器插件,它支持大部分的网络多媒体播放器和多媒体格式,比如:Flash, Windows Media Player, Real Player, Quicktime, MP3,Silverlight, PDF。使用方法:1、在we...
分类:
Web程序 时间:
2014-12-01 12:46:48
阅读次数:
220