码迷,mamicode.com
首页 > Windows程序 > 周排行
[Windows Server 2008] 安装网站伪静态
Windows 2008 R2也可以使用IIS自带的URL REWRITE模块实现伪静态,但会产生web.config文件;对PHP程序来说不太友好,因此我们不采用这种方式。本节是接“安装PHP+MYSQL”课程,因此以discuz
分类:Windows程序   时间:2015-12-09 11:30:20    阅读次数:165
VB 半透明窗体
Private Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal hwnd As Long, ByVal nIndex As Long) As LongPrivate Declare Function ...
分类:Windows程序   时间:2015-12-09 13:24:15    阅读次数:211
C#对数字添加逗号,千分位
/// /// 对数字添加”,“号,可以处理负数以及带有小数的情况 /// /// /// protected string FormatMoney( string money) { ...
分类:Windows程序   时间:2015-12-09 23:11:17    阅读次数:380
windows下配置caffe(环境:win7+vs2013+opencv3.0)
说明:大部分转载于initialneil的大作Caffe + vs2013 + OpenCV in Windows Tutorial (I) –Setup准备工作:1.下载CUDA7.5:https://developer.nvidia.com/cuda-downloads,安装完成后会自动创建变量...
分类:Windows程序   时间:2015-12-10 13:31:10    阅读次数:6526
C# 通过Hook的方法 屏蔽快捷键
#region 屏蔽Windows功能键(快捷键) public delegate int HookProc(int nCode, int wParam, IntPtr lParam); private static int hHook = 0; public const int ...
分类:Windows程序   时间:2015-12-10 15:04:48    阅读次数:372
C#如何关闭指定进程
或者这样关闭自己 ...
分类:Windows程序   时间:2018-12-13 13:50:19    阅读次数:230
api接口的记录
http://tingapi.ting.baidu.com/v1/restserver/ting?method=baidu.ting.billboard.billList&type=1&size=100&offset=0参数: type = 1 新歌榜(100),2 热歌榜(100),14 影视金曲 ...
分类:Windows程序   时间:2018-12-14 13:11:59    阅读次数:200
Installing OpenSSH from the Settings UI on Windows Server 2019 or Windows 10 1809
Installing OpenSSH from the Settings UI on Windows Server 2019 or Windows 10 1809 OpenSSH client and server are installable features of Windows 10 180 ...
分类:Windows程序   时间:2018-12-14 13:56:45    阅读次数:172
保持窗口始终显示在屏幕(即便Win+D返回桌面)
解决方案:(其中 TopMost = true 便可使窗口保持最前端) ...
分类:Windows程序   时间:2018-12-14 19:30:30    阅读次数:192
制作鼠标击穿窗体
实现效果: 知识运用: API函数SetWindowLong和GetWindowLong 在调用API函数的时候要添加 System.Runtime.InteropService命令空间 [DllImport("user32", EntryPoint = "GetWindowLong")] //从指 ...
分类:Windows程序   时间:2018-12-14 21:11:11    阅读次数:243
quick-cocos2d-x API函数汇总
quick-cocos2d-x API函数汇总 1. init 在quick\framework\init.lua文件中。 quick framework 初始化,载入 quickframework 预定义的常量、模块。 1.1 常量 在初始化框架之前,可以定义以下常量: · DEBUG: 设置框架 ...
分类:Windows程序   时间:2018-12-15 13:43:02    阅读次数:950
Win7删除右键菜单中“图形属性”和“图形选项”
完win7操作系统后,打完驱动在桌面右键会出现如下两个选项,平时没啥用又占用空间,那么如何删掉这两个选项呢? 操作步骤: 1、在运行中输入 regedit 确定打开注册表; 2、依次单击展开HKEY_CLASSES_ROOTDirectoryBackgroundshellexContextMenuH ...
分类:Windows程序   时间:2018-12-16 11:04:16    阅读次数:186
Win32 Ime
Win32 Ime API: ImmGetContext: 获取指定窗口的当前的输入上下文,然后再尝试访问上下文中的信息。应用程序应该定期使用这个功能获取窗口的当前的输入上下文。若hWnd参数为零,将返回桌面当前的输入上下文。 HIMC ImmGetContext( HWND hWnd ); Get ...
分类:Windows程序   时间:2018-12-16 17:11:53    阅读次数:273
1.在windows下安装rabbitMQ
a .RabbitMQ是用erLang语言写的,所以我们在安装rabbitMQ之前要先安装erLang。 要安装最新版本的请分别前往 www.erlang.org和www.rabbitmq.com网站下载安装 (这两个网站打开比较慢,都打开估计要几分钟) 或者使用此刻(2018-12-16)最新版本 ...
分类:Windows程序   时间:2018-12-17 02:24:01    阅读次数:254
[APIO2010]特别行动队
"嘟嘟嘟" 这道题dp式特别好想: $$dp[i] = max_{j = 0} ^ {i 1} (dp[j] + f(s[i] s[j]))$$ 其中$f(x) = ax^ 2 + bx + c$,$s[i] = \sum_{j = 1} ^ {i} x[j]$。 但是$O(n ^ 2)$过不了,需 ...
分类:Windows程序   时间:2018-12-17 14:23:59    阅读次数:249
redis-cluster集群安装(windows)
在此先奉上安装包(链接:https://pan.baidu.com/s/1QHYQPkYPuiRWhdj9APbjnw 提取码:jv8x ) 1. 安装ruby 下载 rubyinstaller-2.2.6-x64.exe 2.安装ruby环境 下载rubygems-2.6.12.zip 解压安装包 ...
分类:Windows程序   时间:2018-12-17 23:50:42    阅读次数:318
1、DataGridView
DataGridView赋值后 通过RowPostPaint事件绘制行号 ...
分类:Windows程序   时间:2018-12-18 17:57:12    阅读次数:217
win10 文件扩展名的更改
win10 文件扩展名的改 随便打开一个文件夹,最好是"此电脑", 第二行是 " 文件 - 计算机 - 查看 " 在查看里面就可以更改了. ...
分类:Windows程序   时间:2018-12-18 20:56:44    阅读次数:175
使用NuGet发布自己的.NET NuGet 包(仅限 .NET Standard 和 Windows)
Microsoft Note:创建 NuGet 包Microsoft Note:快速入门:使用 Visual Studio 创建和发布 NuGet 包(仅限 .NET Standard 和 Windows).nuspec 引用https://blog.csdn.net/huwei2003/artic... ...
分类:Windows程序   时间:2018-12-19 19:31:43    阅读次数:326
C#中decimal,double和float的区别
float 单精度浮点 32bit,double 双精度浮点64bit,decimal是高精度 128bit,浮点型。float double 是 基本类型(primitive type),decimal不是。float 有效数字7位,范围 ±1.5 × 10E?45 to ±3.4 × 10E38 ...
分类:Windows程序   时间:2018-12-19 22:03:26    阅读次数:236
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!