整个窗口使用消息类重新写的源码如下:#windows应用程序
#使用类来描述
#开发人员:蔡军生(QQ:9073204) 深圳 2014-8-24
from ctypes import *
from ctypes.wintypes import *
WS_EX_APPWINDOW = 0x40000
WS_OVERLAPPEDWINDOW = 0xcf0000
WS_CAPTION = 0x...
分类:
其他好文 时间:
2014-08-28 09:45:19
阅读次数:
220
为了学习app做打算 今天就自学了下webservice,rest应该是其中一种 还有种就是soap,目前就先举个rest的demo吧 准备ws的jar和spring的jar,如何要连接数据的话就自行准备这边就不提供了 下载jar:http://download.csdn.net/detail/t....
分类:
Web程序 时间:
2014-08-27 12:51:57
阅读次数:
183
扩展窗口风格: WS_EX_ACCEPTFILES 指明用这个风格创建的窗口能够接受拖放文件。 · WS_EX_CLIENTEDGE 指明窗口具有3D外观,这意味着,边框具有下沉的边界。 · WS_EX_CONTEXTHELP 在窗口的标题条中包含问号。当用户单击问号时,鼠标光标的形状变为带指针.....
分类:
其他好文 时间:
2014-08-27 12:22:27
阅读次数:
223
本文转载自de.cel《MySQL的字符串连接函数CONCAT, CONCAT_WS,GROUP_CONCAT》在搜索Mysql中怎么实现把一列的多行数据合并成一行时,找到了group_contact函数,它比SqlServer中的select @list=@list+列名 from 表名,的形式方...
分类:
数据库 时间:
2014-08-24 11:30:22
阅读次数:
219
#include #include #include using namespace std;#define maxn 100100int wa[maxn],wb[maxn],wv[maxn],ws[maxn];int r[maxn],sa[maxn];char str[maxn];int cmp(...
分类:
其他好文 时间:
2014-08-23 16:35:51
阅读次数:
261
题目输出最长公共字串#define maxn 200010int wa[maxn],wb[maxn],wv[maxn],ws[maxn];int cmp(int *r,int a,int b,int l){return r[a]==r[b]&&r[a+l]==r[b+l];}//yuan lai z...
分类:
其他好文 时间:
2014-08-19 09:18:33
阅读次数:
250
Execute("select products_id, products_image from ".TABLE_PRODUCTS); while (!$pro_list->EOF){ if(file_exists(DIR_WS_IMAGES.$pro_list->fields[...
分类:
其他好文 时间:
2014-08-18 18:26:42
阅读次数:
209
//设计中,未完成references:http://www.asp.net/web-api/overview/security/basic-authenticationhttp://technet.microsoft.com/zh-cn/library/dd378867(v=ws.10).aspx...
服务端:package com.yinfu.service;import javax.jws.WebService;import javax.xml.ws.Endpoint;@WebService public class TestWebsService { public String sa...
分类:
Web程序 时间:
2014-08-18 15:51:32
阅读次数:
248
日前的工作接触到很多系统间的Webservice调用,这里想谈谈基于spring+xfire实现的webservice的客户端踩过的一些坑,需要测试关注的点。 xFire的配置项 在spring中实现ws的client的客户端还是相对比较容易的,只需要编写一个和webservice接口一致的接口类即...
分类:
Web程序 时间:
2014-08-18 12:06:24
阅读次数:
224