虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

up-techpxa

  • 这是书上的代码

    这是书上的代码,Pop-Up Menu在非模态对话框中实现UPDATE-COMMAND-UI机制,供大家参考

    标签: 代码

    上传时间: 2014-01-04

    上传用户:changeboy

  • The XC226x derivatives are high-performance members of the Infineon XC2000 Family of full-feature s

    The XC226x derivatives are high-performance members of the Infineon XC2000 Family of full-feature single-chip CMOS microcontrollers. These devices extend the functionality and performance of the C166 Family in terms of instructions (MAC unit), peripherals, and speed. They combine high CPU performance (up to 80 million instructions per second) with extended peripheral functionality and enhanced IO capabilities. Optimized peripherals can be adapted flexibly to meet the application requirements. These derivatives utilize clock generation via PLL and internal or external clock sources. Onchip memory modules include program Flash, program RAM, and data RAM.

    标签: high-performance full-feature derivatives Infineon

    上传时间: 2016-12-12

    上传用户:wab1981

  • This paper addresses the subject of SQL Injection in a Microsoft SQL Server/IIS/Active Server Page

    This paper addresses the subject of SQL Injection in a Microsoft SQL Server/IIS/Active Server Pages environment, but most of the techniques discussed have equivalents in other database environments. It should be viewed as a "follow up", or perhaps an appendix, to the previous paper, "Advanced SQL Injection". The paper covers in more detail some of the points described in its predecessor, providing examples to clarify areas where the previous paper was perhaps unclear. An effective method for privilege escalation is described that makes use of the openrowset function to scan a network. A novel method for extracting information in the absence of helpful error messages is described the use of time delays as a transmission channel. Finally, a number of miscellaneous observations and useful hints are provided, collated from responses to the original paper, and various conversations around the subject of SQL injection in a SQL Server environment.

    标签: Server SQL Injection Microsoft

    上传时间: 2014-07-28

    上传用户:xhz1993

  • H.264/AVC, the result of the collaboration between the ISO/IEC Moving Picture Experts Group and the

    H.264/AVC, the result of the collaboration between the ISO/IEC Moving Picture Experts Group and the ITU-T Video Coding Experts Group, is the latest standard for video coding. The goals of this standardization effort were enhanced compression efficiency, network friendly video representation for interactive (video telephony) and non-interactive applications (broadcast, streaming, storage, video on demand). H.264/AVC provides gains in compression efficiency of up to 50% over a wide range of bit rates and video resolutions compared to previous standards. Compared to previous standards, the decoder complexity is about four times that of MPEG-2 and two times that of MPEG-4 Visual Simple Profile. This paper provides an overview of the new tools, features and complexity of H.264/AVC.

    标签: the collaboration between Experts

    上传时间: 2013-12-30

    上传用户:dongbaobao

  • 是用java和jsp实现的bbs论坛系统。 有注册登陆模块

    是用java和jsp实现的bbs论坛系统。 有注册登陆模块,浏览功能模块,发帖回帖模块,帖子管理模块,论坛设置功能模块,管理版块功能模块,用户管理模块。-is java and jsp realized bbs forum system. Registered landing module, navigation module, barred when posting module, message management module, the Forum set up functional modules, Management plate functional modules, user management module.

    标签: java bbs jsp 论坛

    上传时间: 2014-01-17

    上传用户:kiklkook

  • 44b0公版的测试程序

    44b0公版的测试程序, ******************************************************* * NAME : 44BINIT.S * * Version : 10.JAn.2003 * * Description: * * C start up codes * * Configure memory, Initialize ISR ,stacks * * Initialize C-variables * * Fill zeros into zero-initialized C-variables *

    标签: 44b0 测试程序

    上传时间: 2013-12-22

    上传用户:teddysha

  • FileEdit can edit file ,save file ,open file ,have basic simple functions for file .INSERT, BACKSPAC

    FileEdit can edit file ,save file ,open file ,have basic simple functions for file .INSERT, BACKSPACE ,TAB,PGUP,PGDOWN,UP,DOWN,LEFT,RIGHT AND SO ON

    标签: file functions FileEdit BACKSPAC

    上传时间: 2017-01-02

    上传用户:风之骄子

  • 开源备份软件源码 AMANDA, the Advanced Maryland Automatic Network Disk Archiver, is a backup system that a

    开源备份软件源码 AMANDA, the Advanced Maryland Automatic Network Disk Archiver, is a backup system that allows the administrator to set up a single master backup server to back up multiple hosts over network to tape drives/changers or disks or optical media. Amanda uses native dump and/or GNU tar facilities and can back up a large number of workstations running multiple versions of Unix. Amanda uses Samba, Cygwin or a native Windows client to back up Microsoft Windows desktops and servers

    标签: Automatic Advanced Maryland Archiver

    上传时间: 2017-01-13

    上传用户:xc216

  • xl系列单片机实验仪演示程序 DS18B20温度控制数码管 。 DS18B20温度控制数码管显示 : 1、K3 → 进入设定温度报警值 TL 状态: L--20 2、K3 → 进入设定温度

    xl系列单片机实验仪演示程序 DS18B20温度控制数码管 。 DS18B20温度控制数码管显示 : 1、K3 → 进入设定温度报警值 TL 状态: L--20 2、K3 → 进入设定温度报警值 TH 状态: H--28 3、K3 → 返回 4、设定过程: K1 →加键 (UP), K2 →减键 (DOWN),可快速调。

    标签: 18B B20 DS 18

    上传时间: 2013-12-11

    上传用户:Altman

  • void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >=

    void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >= Size || j < 0 || j >= Size ) { return } step++ board[i][j]=step if (step == Size*Size) { showboard() system("PAUSE") return } //DFS Knight(i-2,j-1) //left Knight(i-2,j+1) Knight(i+2,j-1) //right Knight(i+2,j+1) Knight(i-1,j-2) //up Knight(i+1,j-2) Knight(i+1,j+2) //down Knight(i-1,j+2) // board[i][j]=0 step-- }

    标签: int Knight printf board

    上传时间: 2014-01-17

    上传用户:cxl274287265