Welcome![Sign In][Sign Up]
Location:
Search - ids

Search list

[Windows Develop304074PlayMP3-eVC3.rar

Description: ======================================================================== Microsoft Foundation Class Library for Windows CE: PlayMP3 ======================================================================== AppWizard has created this PlayMP3 application for you. This application not only demonstrates the basics of using the Microsoft Foundation classes but is also a starting point for writing your application. This file contains a summary of what you will find in each of the files that make up your PlayMP3 application. PlayMP3.h This is the main header file for the application. It includes other project specific headers (including Resource.h) and declares the CPlayMP3App application class. PlayMP3.cpp This is the main application source file that contains the application class CPlayMP3App. PlayMP3.rc This is a listing of all of the Microsoft Windows CE resources that the program uses. It includes the icons, bitmaps, and cursors that are stored in the RES subdirectory. This file can be directly edited in Microsoft eMbedded Visual C++. res\PlayMP3.ico This is an icon file, which is used as the application's icon. This icon is included by the main resource file PlayMP3.rc. res\PlayMP3.rc2 This file contains resources that are not edited by Microsoft eMbedded Visual C++. You should place all resources not editable by the resource editor in this file. PlayMP3.vcc This file contains information used by ClassWizard to edit existing classes or add new classes. ClassWizard also uses this file to store information needed to create and edit message maps and dialog data maps and to create prototype member functions. ///////////////////////////////////////////////////////////////////////////// AppWizard creates one dialog class: PlayMP3Dlg.h, PlayMP3Dlg.cpp - the dialog These files contain your CPlayMP3Dlg class. This class defines the behavior of your application's main dialog. The dialog's template is in PlayMP3.rc, which can be edited in Microsoft Developer Studio. ///////////////////////////////////////////////////////////////////////////// Other standard files: StdAfx.h, StdAfx.cpp These files are used to build a precompiled header (PCH) file named PlayMP3.pch and a precompiled types file named StdAfx.obj. Resource.h This is the standard header file, which defines new resource IDs. Microsoft eMbedded Visual C++ reads and updates this file. ///////////////////////////////////////////////////////////////////////////// Other notes: AppWizard uses "TODO:" to indicate parts of the source code you should add to or customize. If your application uses MFC in a shared DLL, and your application is in a language other than the operating system's current language, you will need to copy the corresponding localized resources MFCWCXXX.DLL from the Microsoft eMbedded Visual C++ CD-ROM onto the system or system32 directory, and rename it to be MFCLOC.DLL. ("XXX" stands for the language abbreviation. For example, MFCWCDEU.DLL contains resources translated to German.) If you don't do this, some of the UI elements of your application will remain in the language of the operating system. /////////////////////////////////////////////////////////////////////////////
Platform: | Size: 285495 | Author: loveyou365 | Hits:

[Develop Toolseclipse编程附件\jdic-20060613-bin-windows.zip

Description: 【SSD7】-EX3答案(queries.sql)2008-08-01 16:48/*1.Display the ID, first name, and joining date of each member whose ID begins with the letters "A%B" or "A&B" and who joined the library no later than Nov. 30, 1997. */ SELECT libid,fname,Join_date FROM MEMBER4 WHERE (libid like 'A\%B%' escape '\' or libid like 'A&B%') and Join_date 1 AND SUM(Qty) > 10 ORDER BY SUM(Qty) ASC /*3.List the IDs and first names of all the members who have read less than 5% of the total number of books read from the library, in non-decreasing order of the number of books read by each.*/ SELECT member4.libid,fname,SUM(TimesRead) AS TotalTimesRead FROM MEMBER4 INNER JOIN READ_BY4 ON MEMBER4.libid = READ_BY4.libid GROUP BY MEMBER4.libid,fname HAVING SUM(TimesRead) 1) ORDER BY fname ASC; /*5.List the names of the suppliers and their respective average quantities of title orders received, whose average quantities of title orders received is more than the average quantity of an order in the system.*/ SELECT SUPPLIER4.name,AVG(Qty) AS Avg_qty FROM SUPPLIER4 INNER JOIN (ORDERED4 INNER JOIN PURCHASE_ORDER4 ON PURCHASE_ORDER4.PoNum = ORDERED4.PoNum) ON SUPPLIER4.Supplier_Id = ORDERED4.Supplier_Id GROUP BY SUPPLIER4.name,ORDERED4.Supplier_Id HAVING AVG(Qty) > (SELECT AVG(Qty) FROM PURCHASE_ORDER4) /*6.List alphabetically the first names and IDs of all the male members of the library who joined before Oct. 10, 1995, who have read only five or fewer different titles, and who have not read the same title twice or more*/ SELECT MEMBER4.fname,MEMBER4.libid,READ_BY4.TimesRead,COUNT (DISTINCT CallNumber) FROM MEMBER4 INNER JOIN READ_BY4 ON MEMBER4.libid = READ_BY4.libid WHERE MEMBER4.Gender = 'M' AND Join_date < '1995-10-10'AND TimesRead < 2 GROUP BY MEMBER4.fname,MEMBER4.libid,READ_BY4.TimesRead HAVING COUNT (DISTINCT CallNumber) <= 5
Platform: | Size: 873693 | Author: c978645312@163.com | Hits:

[Windows DevelopVC视图绘制动态曲线图

Description: ======================================================================== MICROSOFT FOUNDATION CLASS LIBRARY : TestDrawCurve_26 ======================================================================== AppWizard has created this TestDrawCurve_26 application for you. This application not only demonstrates the basics of using the Microsoft Foundation classes but is also a starting point for writing your application. This file contains a summary of what you will find in each of the files that make up your TestDrawCurve_26 application. TestDrawCurve_26.dsp This file (the project file) contains information at the project level and is used to build a single project or subproject. Other users can share the project (.dsp) file, but they should export the makefiles locally. TestDrawCurve_26.h This is the main header file for the application. It includes other project specific headers (including Resource.h) and declares the CTestDrawCurve_26App application class. TestDrawCurve_26.cpp This is the main application source file that contains the application class CTestDrawCurve_26App. TestDrawCurve_26.rc This is a listing of all of the Microsoft Windows resources that the program uses. It includes the icons, bitmaps, and cursors that are stored in the RES subdirectory. This file can be directly edited in Microsoft Visual C++. TestDrawCurve_26.clw This file contains information used by ClassWizard to edit existing classes or add new classes. ClassWizard also uses this file to store information needed to create and edit message maps and dialog data maps and to create prototype member functions. res\TestDrawCurve_26.ico This is an icon file, which is used as the application's icon. This icon is included by the main resource file TestDrawCurve_26.rc. res\TestDrawCurve_26.rc2 This file contains resources that are not edited by Microsoft Visual C++. You should place all resources not editable by the resource editor in this file. ///////////////////////////////////////////////////////////////////////////// For the main frame window: MainFrm.h, MainFrm.cpp These files contain the frame class CMainFrame, which is derived from CFrameWnd and controls all SDI frame features. res\Toolbar.bmp This bitmap file is used to create tiled images for the toolbar. The initial toolbar and status bar are constructed in the CMainFrame class. Edit this toolbar bitmap using the resource editor, and update the IDR_MAINFRAME TOOLBAR array in TestDrawCurve_26.rc to add toolbar buttons. ///////////////////////////////////////////////////////////////////////////// AppWizard creates one document type and one view: TestDrawCurve_26Doc.h, TestDrawCurve_26Doc.cpp - the document These files contain your CTestDrawCurve_26Doc class. Edit these files to add your special document data and to implement file saving and loading (via CTestDrawCurve_26Doc::Serialize). TestDrawCurve_26View.h, TestDrawCurve_26View.cpp - the view of the document These files contain your CTestDrawCurve_26View class. CTestDrawCurve_26View objects are used to view CTestDrawCurve_26Doc objects. ///////////////////////////////////////////////////////////////////////////// Other standard files: StdAfx.h, StdAfx.cpp These files are used to build a precompiled header (PCH) file named TestDrawCurve_26.pch and a precompiled types file named StdAfx.obj. Resource.h This is the standard header file, which defines new resource IDs. Microsoft Visual C++ reads and updates this file. ///////////////////////////////////////////////////////////////////////////// Other notes: AppWizard uses "TODO:" to indicate parts of the source code you should add to or customize. If your application uses MFC in a shared DLL, and your application is in a language other than the operating system's current language, you will need to copy the corresponding localized resources MFC42XXX.DLL from the Microsoft Visual C++ CD-ROM onto the system or system32 directory, and rename it to be MFCLOC.DLL. ("XXX" stands for the language abbreviation. For example, MFC42DEU.DLL contains resources translated to German.) If you don't do this, some of the UI elements of your application will remain in the language of the operating system. /////////////////////////////////////////////////////////////////////////////
Platform: | Size: 1967656 | Author: xiayang168 | Hits:

[SourceCodeADOWrapper_demo

Description: This article is based in part on Bob Place s ADO is AOK (a simple ADO tutorial). Wrapper Usage This is consist of 2 classes. CDyndb : This Class manages connections and recordsets. Recordsets are organized as linked list (CList) and you can access them using their ids. CDynRec : This class is the node to populate for each recordsets. ADO封装器类 这篇文章一部分基于Bob Place的《ADO is AOK》 (简单的ADO指导) 。 包裹的用法 由2个类组成。 类CDyndb: 这个类别管理连接和记录集。记录集是连接起来的记录的集合,你可以通过他们的ID访问他们。 类CDynRec: 这个类别存放记录集的代码。-This article is based in part on Bob Place s ADO is AOK (a simple ADO tutorial). Wrapper Usage This is consist of 2 classes. CDyndb : This Class manages connections and recordsets. Recordsets are organized as linked list (CList) and you can access them using their ids. CDynRec : This class is the node to populate for each recordsets.
Platform: | Size: 123904 | Author: 徐丽志 | Hits:

[Internet-Networklibnids-1.16

Description: 一个微型NIDS实现例子- A miniature NIDS realization example
Platform: | Size: 112640 | Author: | Hits:

[Internet-NetworkGetOicqpsw

Description: 窃取OICQ的用户号码及密码,同时对客户端控制。(作者:张磊)-theft auto user IDs and passwords, while on the control of the client. (Author : Zhang Lei)
Platform: | Size: 234496 | Author: aa | Hits:

[Linux-Unixenv_audit-1.05.tar

Description: 项目描述: Env_audit is a program that ferrets out everything it can about the environment. It looks for process IDs, UID, GID, signal masks, umask, priority, file descriptors, and environmental variables. It comes with test configurations for anacron, apache, atd, crond, GDB, inittab, logrotate, PHP, pppd, procmail, rsh, rxvt, sendmail, SSH, stunnel, sudo, xinetd, and xterm. env_audit是一个搜索有关环境的所有东西的程序。它查询进程IDs,UID, GID,信号掩码,umask,优先权,文件描述符,和环境变量。它提供了用于anacron, apache, atd, crond, GDB, inittab, logrotate, PHP, pppd, procmail, rsh, rxvt, sendmail, SSH, stunnel, sudo, xinetd, 和xterm的测试配置。 类别: Development Status: 5 - Production/Stable Environment: Console (Text Based) Intended Audience: System Administrators License: GNU General Public License (GPL) Operating System: POSIX Topic: Security-Project Description : Env_audit is a program that ferrets out everything it can about the environment. It looks for process IDs, UID and GID, signal masks, umask, priority, file descriptors, and environmental variables. It comes with test configurations for anacron, apache, atd, explain, GDB, inittab, logrotate, PHP, pppd, procmail, rsh, rxvt, sendmail, SSH, stunnel, sudo, xinetd, and xterm. env_audit is a search on the environment of all things procedures. It inquiry process IDs, UID and GID, signal mask, umask, priority, file descriptors, and environment variables. It provides for anacron, apache, atd, explain, GDB, inittab, logrotate, PHP, pppd, procmail, rsh, rxvt, sendmail, SSH, stunnel, sudo, xinetd, and xterm test configuration. Categories : Development Status : 5-Production/Stabl
Platform: | Size: 20480 | Author: 阿荣 | Hits:

[Internet-Network基于相似度聚类分析方法的异常ids的模型及实现

Description: 基于相似度聚类分析方法的异常入侵检测系统的模型及实现-Similarity-based clustering analysis of abnormal Intrusion Detection System Model and Implementation
Platform: | Size: 161792 | Author: 赵艳 | Hits:

[Internet-Network智能入侵检测

Description: 一个基于智能的检测工具,功能比较完善而且方便实用。-one based on intelligent detection tools, functional sound practical and convenient.
Platform: | Size: 265216 | Author: 王嘉昀 | Hits:

[Internet-Network脚本

Description: 一个开放源码的高级NIDS系统 目前最著名最活跃的开放源码NIDS项目,定位于轻量级的入侵检测系统-an open source system is currently senior NIDS most famous of the most active open source projects NIDS, located in the lightweight Intrusion Detection System
Platform: | Size: 7168 | Author: 浪天 | Hits:

[Driver DevelopUSBDriver

Description: This driver was developed using a USB keyboard from Cherry,as indicated by the VID and PID codes. These IDs must be set for the device you intend to support. Similarly, you will need to set Class to the appropriate string for your device class.
Platform: | Size: 28672 | Author: 楊智斐 | Hits:

[Otherids-sqlsyntax.pdf

Description: informix不错的书籍,适宜本部错的学系书籍-good books, appropriate headquarters wrong faculties books
Platform: | Size: 1815552 | Author: 杨样 | Hits:

[Windows DevelopVisual C++编程实现摄像头视频捉

Description: 本文提供的视频捕捉类CcaptureVideo和示例,在Win2K + DirectX9 SDK + VC6 环境下调试通过。注意:编译时需要Strmiids.lib Quartz.lib两个库文件(DirectX9 SDK自带)。 -This paper provides video capture and category CcaptureVideo example, in Win2K DirectX9 SDK VC6 through debugging environment. Attention : Build need Strmiids.lib Quartz.lib two libraries (DirectX9 SDK own).
Platform: | Size: 4096 | Author: kang | Hits:

[Linux-Unixannids_n-0[1].0.2

Description: 一个入侵检测小程序,用C编写,linux环境-a small program with C preparation, linux environment
Platform: | Size: 39936 | Author: 刘伟 | Hits:

[OtherISDl420

Description: 很好用的语音新片,是IDS公司出品的,我用该电路时感觉输出功率有点小。-good movie with the voice of the producer of the IDS, I used to the circuit output feeling a bit small.
Platform: | Size: 362496 | Author: 王衷曲 | Hits:

[source in ebooknids

Description: 该源码是用C语言编写的,实现网络入侵检测系统的功能-source is the C language, network Intrusion Detection System function
Platform: | Size: 2264064 | Author: liuliang | Hits:

[Internet-Networklnids

Description: 这是本人毕业设计.关于网络入侵检测系统的,希望大家看看!-This is my graduation design. On the network intrusion detection system, I hope, we see!
Platform: | Size: 8248320 | Author: liuliang | Hits:

[BooksSEEDSemina2003

Description: seed 公司讲座文档 主要介绍TiDSP使用,入门 -seed companies lecture document introduces TiDSP use, beginners
Platform: | Size: 5748736 | Author: 廖胜凯 | Hits:

[Process-ThreadshowAllcurrentProcess

Description: 一个windows控制台程序,枚举了当前所有的进程名和进程ID-a windows console procedures, the current enumeration process all the names and process IDs
Platform: | Size: 15360 | Author: | Hits:

[Other resourceIDS_Testing

Description: 文章介绍了入侵检测系统测试的重要性和大概的测试标准,描述了入侵检测系统测试过程中的相关技术,如环境搭建、测试数据获取等。最后,文章介绍了入侵检测系统测试分析的方法,并对当今各种测试技术进行了简要的介绍。-article introduces the intrusion detection system testing and about the importance of the test, Description of Intrusion Detection System testing process related technologies, such as environmental structures, such as access to test data. Finally, the article describes the Intrusion Detection System test analysis method, and today's test techniques are briefly introduced.
Platform: | Size: 459776 | Author: 蔡青 | Hits:
« 1 2 3 4 5 67 8 9 10 11 ... 20 »

CodeBus www.codebus.net