登录
首页 » Windows开发 » VC system of the code was developed for the White Box 2003 VC.NET category code...

VC system of the code was developed for the White Box 2003 VC.NET category code...

于 2023-06-26 发布 文件大小:107.38 kB
0 73
下载积分: 2 下载次数: 1

代码说明:

VC++系统中对自己编制的代码进行白盒测试的VC.NET 2003代码类及例子-VC system of the code was developed for the White Box 2003 VC.NET category code and examples

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论


0 个回复

  • 调试工具windbg的扩展插件,可以查看进程中的所有窗口信息,可以结合windbg的命令使用:!hwnd * 函数: hwnd * 功能: 显示被调...
    调试工具windbg的扩展插件,可以查看进程中的所有窗口信息,可以结合windbg的命令使用:!hwnd * 函数: hwnd * 功能: 显示被调试进程中的窗口信息 * 参数: hwnd [-h] [Handle [ UMFlags [TypeName] ] ] * Handle 窗口句柄 * 如果Handle为0,则显示进程中的所有窗口信息 * UMFlags 显示参数,如果是0,则显示最基本参数 * Bit 0 (0x1) 显示General Properties * Bit 1 (0x2) 显示窗口样式 * Bit 2 (0x4) 显示相关窗口 * Bit 3 (0x8) 显示Class信息 * -h 窗口边框高亮 * TypeName 窗口类型 -Windbg debugging tools for extension, you can view all the windows in the process of information may be combined with the use of windbg the command:! Hwnd* Function: hwnd* function: shows debug window in the process of information* parameters: hwnd [-h] [ Handle [UMFlags [TypeName]]]* Handle window handle* If Handle is 0, it shows all the windows in the process of information* UMFlags display parameters, if it is 0, it shows the basic parameters* Bit 0 (0x1) shows General Properties* Bit 1 (0x2) display window style* Bit 2 (0x4) display window* Bit 3 (0x8) display Class information
    2022-03-06 01:53:55下载
    积分:1
  • wince触摸屏幕的驱动程序源代码
    wince触摸屏幕的驱动程序源代码-touch-screen of WinCE driver source code
    2023-03-30 19:45:03下载
    积分:1
  • 算法实现题7
    算法实现题7-60 战马问题 « 问题描述: 按照国际象棋的规则,在位置(0,0)处的马可以跳到位置(1,2),(1 ,-2),(-1,2), (-1,-2),(2,1),(2,-1),(-2,1),(-2,-1)处。战马问题中的战马具有更一般的跳跃 能力。位置(0,0)处的战马每次可以跳到k 个位置x y i k i i ( , ),1 £ £ ,中的一个位置。战 马问题要求确定给定的战马能否跳遍无限大的棋盘上的每个位置。 « 编程任务: 对于给定的战马问题中战马的跳跃能力。确定战马能否跳遍无限大棋盘上的每个位置。 « 数据输入: 由文件input.txt给出输入数据。第1 行有1个正整数k,表示位置(0,0)处的战马每 次可以跳到k个位置。接下来的k行,每行有2个整数,表示战马的跳跃位置。 « 结果输出: 将计算结果输出到文件output.txt。给定的战马能跳遍棋盘上的每个位置时输出“Yes”, 否则输出“No”。 输入文件示例 输出文件示例 input.txt output.txt 3 1 0 0 1 -2 -1 Yes
    2022-01-27 16:50:13下载
    积分:1
  • 实现机器人仿真的三种模式: 1.步行模式:步行状态显示,停止,视角转换,改变步行速度,改变步行幅度。 2.舞蹈模式:双人华尔兹、单人芭蕾的演示。 3...
    实现机器人仿真的三种模式: 1.步行模式:步行状态显示,停止,视角转换,改变步行速度,改变步行幅度。 2.舞蹈模式:双人华尔兹、单人芭蕾的演示。 3.步态控制:原地踏步姿态,快速跑步姿态的显示,停止,视角转换-Robot simulation of three modes: 1. Walking mode: foot status display, stop, angle conversion, changing the walking speed, change foot range. 2. Dance mode: Double waltz, single ballet presentation. 3. Gait control: marking time in posture, gesture fast-running show, stop, angle conversion
    2023-07-04 21:00:03下载
    积分:1
  • 俄罗斯方块c代码,好玩简单,易懂,快快快快看
    俄罗斯方块c代码,好玩简单,易懂,快快快快看-program
    2022-05-09 10:38:28下载
    积分:1
  • 香农算法,用C编写的.希望对大家有用,
    香农算法,用C编写的.希望对大家有用,-xiangnong
    2022-07-21 09:21:48下载
    积分:1
  • 俄罗斯方块小游戏,希望对学弟学妹门有帮助,我主要用的2维数组实现...
    俄罗斯方块小游戏,希望对学弟学妹门有帮助,我主要用的2维数组实现-Tetris game, in the hope that Mei Xue Xue Di door has to help, I mainly use 2-dimensional array realize
    2023-01-08 01:50:04下载
    积分:1
  • A*算法属于一种启式搜索。它扩展结点的次序类似于广度优先搜索,但不同的是每生成一个子结点需要计算估价函数F,以估算起始结点到该结点的代价及它到达目标结点的代价...
    A*算法属于一种启发式搜索。它扩展结点的次序类似于广度优先搜索,但不同的是每生成一个子结点需要计算估价函数F,以估算起始结点到该结点的代价及它到达目标结点的代价的和;每当扩展结点时,总是在所有待扩展结点中选择具有最小F值的结点作为扩展对象,以便使搜索尽量沿最有希望的方向进行。 -A* algorithm is a heuristic search. It extended node in the order of priority similar to the breadth of search, but in every generation is a sub-node calculated valuation function F, to estimate initial node to the node, the price and it arrived at the target node, and the price; Whenever expansion node, the question has always extended to all nodes with the smallest choosing F value of the node as expansion targets, in order to search as far as possible along the most promising direction.
    2023-01-19 07:50:04下载
    积分:1
  • 杨创2440矩阵键盘
    扬创2440矩阵键盘 做了一个矩阵的键盘绝对能用-Yang Chuang 2440 Matrix Keyboard
    2022-08-16 20:40:33下载
    积分:1
  • 水声信号的处理水下机器人对目标的定位并提供反馈信息
    水声信号的处理水下机器人对目标的定位并提供反馈信息-water voice signal process, locate objects for under water robot
    2022-07-17 07:35:10下载
    积分:1
  • 696518资源总数
  • 104718会员总数
  • 27今日下载