您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. 获取屏幕上各颜色的红、绿、蓝值

  2. 在桌面上运行各种程序中,有很多色彩十分靓丽,我们有时也想使用它们的颜色,但苦于没有源码,所以很难准确知道它们的R、G、B颜色值。于是便产生了很多拾取屏幕颜色的工具,你想知道它们是怎么用程序实现的么?下面我就拿我用VC6.0做的一个屏幕颜色拾取器的实例代码来告诉您,实例程序运行后的界面如下: 基本构成思想: 原理很简单,只需要简要的三步。既:获取屏幕DC、得到当前鼠标所在的像素值、 分解出像素值中的红、绿、蓝三色既可,很简单吧! 关键代码实现: 1、 获取屏幕DC HDC hD
  3. 所属分类:C++

    • 发布日期:2002-10-08
    • 文件大小:52224
    • 提供者:chenxh
  1. WinAPI (Delphi版)

  2. Creating Windows CreateMDIWindow CreateWindow CreateWindowEx RegisterClass RegisterClassEx UnregisterClass Message Processing BroadcastSystemMessage CallNextHookEx CallWindowProc DefFrameProc DefMDIChildProc DefWindowProc DispatchMe ssage GetMessage
  3. 所属分类:Delphi

    • 发布日期:2004-11-10
    • 文件大小:1048576
    • 提供者:microrain
  1. vb 抓点抓色 源码

  2. 自动抓取屏幕的颜色和坐标…… Private Sub Timer1_Timer() Dim hdc As Long Dim a As POINTAPI Dim quyanse As Long Call GetCursorPos(a) '取得鼠标位置 Text1.Text = a.x Text3.Text = a.y hdc = GetDC(0) '取得整个屏幕的hDC Form1.BackColor = GetPixel(hdc, a.x, a.y) '取 颜色 ReleaseDC 0, hd
  3. 所属分类:VB

    • 发布日期:2009-05-20
    • 文件大小:2048
    • 提供者:xxl118
  1. 系统托盘图标例子程序

  2. inherited; if message.LParam = wm_rbuttonup then begin //用鼠标右键点击图标 getcursorpos(mousept); //获取光标位置 popupmenu1.popup(mousept.x, mousept.y); //在光标位置弹出选单 end; if message.LParam = wm_lbuttonup then begin //用鼠标左键点击图标 //显示应用程序 窗口 ShowWindow(Handle, SW_SHO
  3. 所属分类:其它

    • 发布日期:2009-09-28
    • 文件大小:3072
    • 提供者:liu9536
  1. 精彩编程与编程技巧-利用GetCursorPos 读取滑鼠的座标 ...

  2. 利用GetCursorPos 读取滑鼠的座标 
  3. 所属分类:C++

    • 发布日期:2009-10-10
    • 文件大小:451
    • 提供者:gsc11111
  1. VByk识别答题卡颜色

  2. Private Declare Sub mouse_event Lib "user32" (ByVal dwFlags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cButtons As Long, ByVal dwExtraInfo As Long) Private Declare Function GetCursorPos Lib "user32" (lpPoint As pointapi) As Long Private Decl
  3. 所属分类:VB

    • 发布日期:2010-01-05
    • 文件大小:8192
    • 提供者:dingxingszj
  1. 动态卷帘式窗体演示程序(VB6.0源代码编写)

  2. 动态卷帘式窗体演示程序(VB6.0源代码编写)Private Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As Long
  3. 所属分类:VB

    • 发布日期:2010-03-06
    • 文件大小:816128
    • 提供者:gouyue
  1. 如何获取屏幕上各颜色的红、绿、蓝值

  2. 基本构成思想: 原理很简单,只需要简要的三步。既:获取屏幕DC、得到当前鼠标所在的像素值、分解出像素值中的红、绿、蓝三色既可,很简单吧! 关键代码实现: 1、 获取屏幕DC HDC hDC = ::GetDC(NULL); //获取屏幕DC 2、 获取当前鼠标位置像素值 CPoint pt; GetCursorPos(&pt);        //得到当前鼠标所在位置 COLORREF clr = ::GetPixel(hDC, pt.x, pt.y); //获取当前鼠标点像素值 3、 分解出
  3. 所属分类:C++

    • 发布日期:2010-03-22
    • 文件大小:22528
    • 提供者:yth796
  1. c++源码程序之人机对战五子棋的设计可做毕业论文

  2. // 五子棋Dlg.cpp : implementation file // #include "stdafx.h" #include "五子棋.h" #include "五子棋Dlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif int board[14][14]; //棋盘数组 BOOL ptable[14][14][480]; //人的所
  3. 所属分类:C++

    • 发布日期:2010-04-11
    • 文件大小:97280
    • 提供者:pc_master
  1. 关于Access程序,A程序调用B程序的例子!

  2. 各位好,目前我写程序用到了通过一个access应用程序 A ,调用另一个Access应用程序 B,并打开B中的一个窗体显示所要查询到的信息。这些功能我都实现了 dim B as Access.Application B.OpenAccessProject("C:\pro\B.adp") B.DoCmd.OpenForm "from1", acNormal, , "编号='" & Me.编号 & "' ", , acWindowNormal B.Forms("form1").SetFocus D
  3. 所属分类:Access

    • 发布日期:2010-06-01
    • 文件大小:487424
    • 提供者:llshboy
  1. Access程序A调用 AccessB的功能 B

  2. 各位好,目前我写程序用到了通过一个access应用程序 A ,调用另一个Access应用程序 B,并打开B中的一个窗体显示所要查询到的信息。这些功能我都实现了,只是,Access应用程序B这个主窗体不能跑到任何Windows窗体的前面。每次都要手动鼠标点击。 我也使用了以下代码,却还是不行。 dim B as Access.Application B.OpenAccessProject("C:\pro\B.adp") B.DoCmd.OpenForm "from1", acNormal, ,
  3. 所属分类:Access

    • 发布日期:2010-06-01
    • 文件大小:425984
    • 提供者:llshboy
  1. VB模拟鼠标的方法 SetWindowPos GetCursorPos SetCursorPos 源码

  2. VB模拟鼠标的方法 SetWindowPos GetCursorPos SetCursorPos
  3. 所属分类:VB

    • 发布日期:2010-06-22
    • 文件大小:3072
    • 提供者:jinjie412
  1. 3D游戏源代码自己研究吧

  2. 3D游戏源代码 #include #include #include #include #include #include "SkinMesh.h" #include "Map.h" const float fWalkStep=10.0f; const float fZoomStep=50.0f; HWND hWnd; HFONT hFont =NULL; LPDIRECT3D9 g_pD3D =NULL; LPDIRECT3DDEVICE9 g_pd3dDevice =NULL;
  3. 所属分类:C++

    • 发布日期:2010-07-19
    • 文件大小:1048576
    • 提供者:aibinghe
  1. 打气球的游戏! MFC源代码

  2. 打气球的游戏! MFC源代码 srand ((int) GetCurrentTime ()); //初始化随机数发生器 POINT point; //记录鼠标位置 GetCursorPos(&point); //获取鼠标位置 ScreenToClient(&point); //把屏幕上指定点的屏幕坐标转换成用户坐标 char buffer[10]; score=0; count=60; _gcvt(score,10,buffer); //将score转化为字符串放入buffer中 m_scor
  3. 所属分类:C++

    • 发布日期:2010-12-29
    • 文件大小:1048576
    • 提供者:hokage9023
  1. Qt抓取用户界面上RGB值【源代码】

  2. Qt抓取用户界面上RGB值,颜色拾遗器,Qt代码,可以在多平台上编译。 如果不下载,可以参考(增加了使用windows API的方法): http://blog.csdn.net/piaopiaolanghua/archive/2011/04/16/6327860.aspx WINDOWS API关键函数: POINT pt; GetCursorPos(&pt); HDC hDC = GetDC(NULL); COLORREF clr = GetPixel(hDC, pt.x, pt.y);
  3. 所属分类:QT

    • 发布日期:2011-04-16
    • 文件大小:10240
    • 提供者:piaopiaolanghua
  1. API硬件与系统函数(delphi)

  2. API硬件与系统函数(delphi) 很详细的文档哦。 WinAPI: GetComputerName - 获取计算机名称 //声明: GetComputerName( lpBuffer: PChar; {缓冲区} var nSize: DWORD {缓冲区大小} ): BOOL; ________________________________________ //举例: var arr: array[0..MAX_COMPUTERNAME_LENGTH] of char; d: DWORD
  3. 所属分类:Delphi

    • 发布日期:2011-09-21
    • 文件大小:416768
    • 提供者:liu6023952
  1. Windows 60个常用API

  2. 函数 Arc() Beep() BringWindowToTop() Chord() CloseHandle() CloseWindow() DeleteFileA() DeleteMenu() DestroyWindow() DllRegisterServer() Ellipse() ExitWindowsEx() FatalExit() FindWindowA() FreeLibrary() GetBkColor() GetCapture() GetComputerNameA() GetC
  3. 所属分类:Windows Server

    • 发布日期:2011-09-24
    • 文件大小:215040
    • 提供者:hugion
  1. 学生上机游戏专用监控系统

  2. unit Unit3; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, xpWindow, StdCtrls, AAFont, AACtrls; type TForm3 = class(TForm) Label2: TLabel; xpWindow1: TxpWindow; AAFadeText1: TAAFadeText; private {
  3. 所属分类:其它

    • 发布日期:2011-11-10
    • 文件大小:1009664
    • 提供者:wanciden
  1. VC++6.0源码 启用禁用 鼠标所指控件

  2. 用GetCursorPos取得鼠标屏幕坐标,然后用WindowFromPoint获得鼠标当前点窗口ID ,ScreenToClient转换为客户坐标,然后根据窗口ID和客户坐标+ChildWindowFromPoint,来取得某个控件ID,然后根据控件ID,确认是否启用或禁用鼠标所指控件
  3. 所属分类:C++

  1. 强制去掉窗体的灰显状态

  2. 使用MFC封装的几个API函数实现简单的功能,可以列举出窗体的句柄,及其所有父 子窗体,并对其进行控制 SetWindowsPos GetCursorPos WindowFromPoint EnumChildWindows
  3. 所属分类:C++

    • 发布日期:2009-04-15
    • 文件大小:27648
    • 提供者:xiaoji9981
« 12 3 »