首页 > Windows开发
windows下通过virtualbox安装虚拟机
windows下通过virtualbox安装虚拟机...
分类:Windows开发   时间:2014-03-29 17:33:42    收藏:0  评论:0  赞:0  阅读:585
Winform中产生验证码图片
1、创建ValidCode类: public class ValidCode { #region Private Fields private const double PI = 3.1415926535897932384626433832795; private const double PI2 ...
分类:Windows开发   时间:2014-03-29 18:38:08    收藏:0  评论:0  赞:0  阅读:533
win8 Win7 禁用 directx 的正确方法win7 disable directx accelerate
http://superuser.com/questions/495303/how-do-i-disable-directdraw-and-direct3d-acceleration-on-windows-81.Disable Aero(Mostly not necessary but do it ...
分类:Windows开发   时间:2014-03-29 16:37:11    收藏:0  评论:0  赞:0  阅读:1118
windows下用vc开发php扩展
www.php.net下载php源码windows.php.net下载windows二进制包版本号保持一致二进制包注意:编译器版本 目前有vc9和vc11两个版本线程安全/非线程安全x86/x64http://windows.php.net/downloads/php-sdk/php-sdk-bin...
分类:Windows开发   时间:2014-03-29 19:55:32    收藏:0  评论:0  赞:0  阅读:492
Windows Phone中的图形渲染处理
前言这篇文章主要介绍Windows Phone中XAML的渲染处理过程,你可以根据下文中所提到的内容来优化现有的XAML页面,来提高页面渲染的性能。 XAML的渲染包括以下两个阶段: 1. 光栅化(Rasterization) 光栅化是将图形的表现形式从以基于矢量(vector-based)的图形(...
分类:Windows开发   时间:2014-03-31 15:27:47    收藏:0  评论:0  赞:0  阅读:591
WinFrom 控件 属性 小结
1、ToolTip.ToolTipTitle 属性 获取或设置工具提示窗口的标题。 小注:         该标题在窗口中作为一行粗体文本显示在标准的工具提示控件说明文本的上方。 通常,标题只用于区分窗体上不同类别的控件,或作为较长控件说明的简介。         标题的最大长度是 99 个字符。 如果此属性包含的字符串比 99 个字符长,则不会显示任何标题。 2、Control.Tag...
分类:Windows开发   时间:2014-03-29 15:18:10    收藏:0  评论:0  赞:0  阅读:641
[贪心]UVA11054 Wine trading in Gergovia
题意:题意:一题街道上很多酒店,交易葡萄酒,正数为卖出葡萄酒,负数为需要葡萄酒,总需求量和总售出量是相等的,从一家店到另外一家店需要路费(路费=距离×运算量),假设每家店线性排列且相邻两店之间距离都是1,求最小路费。 思路:一开始看出是贪心但是方法完全用错,我的想法是按照出售或者买进的葡萄酒的数量排序,然后依次向右找到要买进或者要卖出的居民,直到所有的都为零,时间复杂度应该是O(N*LogN),但是果断超时了。。后来参考别人的思路,算是明白怎么一回事了 我们可以假想第i个人总是与第i+1个人来进行交易来满足...
分类:Windows开发   时间:2014-03-29 15:38:07    收藏:0  评论:0  赞:0  阅读:753
Windows live writer插入代码图片Test
/** * 验证字符串text是不是ip地址,是返回true,否则返回false * @param text * @return */public static boolean isIPAddress(String text){ StringBuilder regex = new StringBui...
分类:Windows开发   时间:2014-03-29 13:01:36    收藏:0  评论:0  赞:0  阅读:586
使用Windows 8 Pro密钥光盘安装Windows 8.1 Pro
微软发布的公告说,Windows 8用户可以免费升级到Windows 8.1,但是在使用光盘全新安装Windows 8.1的时候,会发现Windows 8的Key并不能成功通过验证进行安装。此时,我们可以另辟蹊径,使用公用的安装密钥进行安装,之后在机芯激活。
分类:Windows开发   时间:2014-03-29 13:03:09    收藏:0  评论:0  赞:0  阅读:579
Windows live writer publish Test
windows live writer Test Test…. 参考:http://www.cnblogs.com/liuxianan/archive/2013/04/13/3018732.html
分类:Windows开发   时间:2014-03-29 13:07:39    收藏:0  评论:0  赞:0  阅读:692
win8 VS控件信息
exp:Name为控件的变量名;HorizontalAlignment为控件的居中、左右靠;TextWrapping??;Text为界面初始显示的信息;Margin为控件位置(x,?,?,y),Height??;VerticalAlignment为控件名称;Height和Width为控件的长度宽度;...
分类:Windows开发   时间:2014-03-29 13:30:19    收藏:0  评论:0  赞:0  阅读:624
利用Google Speech API实现Speech To Text
很久很久以前, 网上流传着一个免费的,识别率暴高的,稳定的 Speech To Text API, 那就是Google Speech API. 但是最近再使用的时候,总是返回500 Error. 后来通过查看源码知道需要增加一个参数:key=.... 可能是为了防止滥用吧. 并且, 最近Chrome...
分类:Windows开发   时间:2014-03-29 13:43:04    收藏:0  评论:0  赞:0  阅读:1315
32位和64位Ghost版Win8.1系统大全下载最新版
Win8.1系统
分类:Windows开发   时间:2014-03-29 13:53:53    收藏:0  评论:0  赞:0  阅读:542
【Windows API】Button Control Structures
①BUTTON_IMAGELISTContains information about an image list that is used with a button control②BUTTON_SPLITINFOContains information that defines a split...
分类:Windows开发   时间:2014-03-29 09:03:17    收藏:0  评论:0  赞:0  阅读:462
【Windows API】Button Control Notifications
①BCN_DROPDOWNSent when the user clicks a drop down arrow on a button. The parent window of the control receives this notification code in the form of ...
分类:Windows开发   时间:2014-03-29 06:19:19    收藏:0  评论:0  赞:0  阅读:593
WinForm训练一_改变窗体大小
WinForm训练一_改变窗体大小
分类:Windows开发   时间:2014-03-29 06:22:38    收藏:0  评论:0  赞:0  阅读:494
【Windows API】Button Control Messages
①BCM_GETIDEALSIZEGets the size of the button that best fits its text and image, if an image list is present. You can send this message explicitly or u...
分类:Windows开发   时间:2014-03-29 06:26:06    收藏:0  评论:0  赞:0  阅读:534
【Windows API】Button Control Macros
①Button_EnableEnables or disables a button②Button_GetCheckGets the check state of a radio button or check box. You can use this macro or send the BM_G...
分类:Windows开发   时间:2014-03-29 06:33:33    收藏:0  评论:0  赞:0  阅读:1089
(原)win7下JDK1.7安装
安装过程就省了,下面记录一下设置环境变量核心步骤:1.系统变量→新建 JAVA_HOME 变量 。变量值填写jdk的安装目录(D:\Profession\java\jdk1.7)2.系统变量→寻找 Path 变量→编辑在变量值最后输入 %JAVA_HOME%\bin;%JAVA_HOME%\jre\...
分类:Windows开发   时间:2014-03-29 06:34:58    收藏:0  评论:0  赞:0  阅读:615
(原)Win7下Tomcat配置文件基本配置及环境变量配置
配置环境变量:1.创建系统变量:CATALINA_HOME变量值:tomcat的安装路径 (我的是)2.找到安装tomcat安装目录bin 文件夹,找到里面的执行文件,运行,然后执行下面的操作。打开浏览器,输入http://localhost:8080,出现正常界面就正常了配置server.xml1...
分类:Windows开发   时间:2014-03-29 06:37:33    收藏:0  评论:0  赞:0  阅读:527
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!