Welcome![Sign In][Sign Up]
Location:
Search - windows select

Search list

[Driver Developwindows磁盘IO

Description: 1 程序开发步骤如下 (1) 打开vc,选择菜单项file->new,选择projects选项并建立一个名为\"floppy\"的win32 console applicatoin工程;创建时注意指定创建该工程的目录; (2) 在工程中创建源文件\"floppy.cpp\":选择菜单项project->add to project->files,在选择框中输入自己想要创建的文件名,这里是\"floppy.cpp\";在接下来询问是否创建新文件时回答\"yes\";然后通过Workspace->FileView->Source Files打开该文件,在其中编辑本程序的源代码;编辑结束后通过菜单项File->Save进行保存; (3) 同(2)步骤再加入文件\"floppy.h\"; (4) 通过调用菜单命令项build->build all进行编译连接,可以在指定的工程目录下得到debug->floppy.exe程序;现在即可以运行该程序;由于没有命令行参数,故不必在控制台下来运行,直接运行即可; 2 补充说明 这里仅仅给出了编译结果和源程序,没有所创建工程的其他文件。-a step in the development process as follows (1) Open vc, select menu item file-gt; New, choose projects and the establishment of an option called "floppy" win32 console applicatoin works; Attention to create designated to create the directory of the project; (2) create the works Source "floppy.cpp" : Select menu item project-gt; add to project-gt; files, the choice of their own box to create the file name, here is the "floppy.cpp"; the next question asks whether the creation of new documents to answer "yes" ; then Workspace - gt; FileView - gt; Source Files to open the document, in which the editor of the program's source code; after editing through a menu item File-gt; Save for preservation; (3) with (2) further steps inserted in the document &
Platform: | Size: 55119 | Author: 黄小文 | 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:

[SourceCodewindows 5大io网络模型

Description: iocp select wsaselect。。 五大网络io模型 附源代码
Platform: | Size: 904195 | Author: zisuting | Hits:

[Communicationconnector

Description: 用C实现的TCP/IP socket连接/读/写操作。采用了select方法来设置socket超时。此示例在Windows/unix系统下编译运行通过。-C realization of TCP/IP socket connections/read/write operation. Select the method used to set the socket overtime. This example in the Windows/Unix systems running through the compiler.
Platform: | Size: 2048 | Author: 潘振瑶 | Hits:

[Driver Developwindows磁盘IO

Description: 1 程序开发步骤如下 (1) 打开vc,选择菜单项file->new,选择projects选项并建立一个名为"floppy"的win32 console applicatoin工程;创建时注意指定创建该工程的目录; (2) 在工程中创建源文件"floppy.cpp":选择菜单项project->add to project->files,在选择框中输入自己想要创建的文件名,这里是"floppy.cpp";在接下来询问是否创建新文件时回答"yes";然后通过Workspace->FileView->Source Files打开该文件,在其中编辑本程序的源代码;编辑结束后通过菜单项File->Save进行保存; (3) 同(2)步骤再加入文件"floppy.h"; (4) 通过调用菜单命令项build->build all进行编译连接,可以在指定的工程目录下得到debug->floppy.exe程序;现在即可以运行该程序;由于没有命令行参数,故不必在控制台下来运行,直接运行即可; 2 补充说明 这里仅仅给出了编译结果和源程序,没有所创建工程的其他文件。-a step in the development process as follows (1) Open vc, select menu item file-gt; New, choose projects and the establishment of an option called "floppy" win32 console applicatoin works; Attention to create designated to create the directory of the project; (2) create the works Source "floppy.cpp" : Select menu item project-gt; add to project-gt; files, the choice of their own box to create the file name, here is the "floppy.cpp"; the next question asks whether the creation of new documents to answer "yes" ; then Workspace- gt; FileView- gt; Source Files to open the document, in which the editor of the program's source code; after editing through a menu item File-gt; Save for preservation; (3) with (2) further steps inserted in the document &
Platform: | Size: 55296 | Author: 黄小文 | Hits:

[File OperateFilesNet146102

Description: 本系统是在asp版《在线文件管理器》的基础上设计制作,取其精华,弃其糟粕,功能更强,效率更高,具有以下特点: 1。采用三层结构开发,程序逻辑和用户界面彻底分离,可轻松换肤。 2。全部代码采用Ultra Edit编写,不使用任何可视化开发工具,精确控制代码流程,确保代码高效率运行。 3。自行开发自定义控件,不产生任何一丁点的HTML代码冗余。 4。尽可能的减少客户与服务器的交互,降低对服务器资源消耗,减少网络传输。 5。真正多用户系统,可分别为每个用户设置可管理的文件类型,目录等,上传的单个文件大小限制等。 6。各用户环境自由配置,风格自选(如果有多个风格的话),可自由设置每页显示的文件及目录数等。 7。文件与目录翻页分开,即使管理同一目录下的数万个文件也不再出现程序超时现象。 8。功能强大,除了asp版具备的全部功能如上传、下载、编辑、批量复制、移动、粘贴外还具备文件快速过滤搜索,智能修改文件属性。 9。效率极高。经测试,在一太普通PC上对一个包含50000个文件的目录进行浏览管理,任意翻页,执行时间均不超过1秒。过滤或者搜索则更是低至仅0.3秒的执行时间。而windows资源管理器打开目录或者asp版翻至最后一页都需要6.5秒甚至更长时间。-the system is the asp edition of "online document management device" on the basis of the design, select the essence and disposable dross, more powerful, more efficient and has the following features : 1. The development of a three-tier structure, procedures and user interface logic completely separated easily Eurocargo. 2. All the code used Ultra Edit preparation, not the use of any visual development tools, precision flow control code, to ensure the efficient operation code. 3. Developed OCX, without generating any one little bit of HTML code redundancy. 4. Minimizing the client and server interaction, reduce consumption of server resources and reduce network transmission. 5. A truly multi-user system can be set up for each user can manage the file type, directory, Upload a sing
Platform: | Size: 336896 | Author: 李工 | Hits:

[OS programDriveBox

Description: 一个用于选择驱动器的组合框,告诉你如何实现自画控件以及如何通过WINDOWS SHELL得到驱动器的图标-an actuator used to select the combination of frame, tell you how to achieve self-portraits and controls how Windows Shell is the icon Drivers
Platform: | Size: 131072 | Author: 尚继辉 | Hits:

[Internet-Networkserver-nonblockingsocket

Description: UDP收包程序例子,基于非阻塞模式socket,并利用select()实现接收超时。-UDP packet admission procedure examples, based on the non-blocking mode of socket, and use select () to receive overtime realize.
Platform: | Size: 7168 | Author: liu | Hits:

[.netComboBox

Description: 在用C#编写Windows程序时经常使用ComboBox控件,但此控件列表项只有text属性,与HTML中SELECT控件很不一样,使用很不方便,此代码就可以为ComboBox控件添加value属性!-With C# Preparation Windows programs often use ComboBox controls, but this controls only the list item text attributes, and HTML controls are very different in SELECT, the use of very inconvenient, this code can add the value attribute ComboBox control!
Platform: | Size: 26624 | Author: 王风 | Hits:

[OtherwinSocketTestApp

Description: WinSock Win32 API 的打包类和例子程序 < WinSock > winSocket/winSocketEx: 如果你正在Windows环境中用C++编写TCP/IP网络程序,那么使用这个打包类吧,我想它不会让你失望的。winSocket几乎封装了编写TCP/IP网络应用程序所需的所有内容,winSocketEx加入了对SOCKS 4/5代理服务器的支持。使得在自己的程序中加入代理支持易如反掌。这个打包类支持的特性包括:Connect、Send、Receive、Close、Listen、Bind、Accept、asyncSelect、get_LocalHost、get_LocalPort、get_RemoteHost、get_RemotePort等等。 [代码性质] VC可重用代码段 [代码作者] ryan [文件大小] 53K 声明:转自其他网站 -WinSock Win32 API categories and examples of the packing process <WinSock> winSocket/winSocketEx: If you are using Windows environment C++ Prepared TCP/IP network program, then use this type of packing, I think it will not let you disappointed . WinSocket almost encapsulates the preparation of TCP/IP network applications all the necessary elements, winSocketEx adding a SOCKS 4/5 proxy server support. Making procedures in their own easy to add agent support. This type of support package features include: Connect, Send, Receive, Close, Listen, Bind, Accept, asyncSelect, get_LocalHost, get_LocalPort, get_RemoteHost, get_RemotePort and so on. [Character code] VC reusable code segment [code author] ryan [size] 53K statement: Transfer from other sites
Platform: | Size: 43008 | Author: 邓影 | Hits:

[Windows CECEWifiDriverAR6000-21374

Description: Atheros无线芯片AR-6000系列wince 6驱动源代码(这东西我也没用过别问我,我是搜别的wince资源搜到的) AR6K SDIO support. Requires firmware 1.1 on SD13 cards. readme: Atheros Communications AR6001 WLAN Driver for SDIO installation Read Me March 26,2007 (based on k14 fw1.1) Windows CE Embedded CE 6.0 driver installation. 1. Unzip the installation file onto your system (called installation directory below) 2. Create an OS design or open an existing OS design in Platform Builder 6.0. a. The OS must support the SD bus driver and have an SD Host Controller driver (add these from Catalog Items). b. Run image size should be set to allow greater than 32MB. 3. a. From the Project menu select Add Existing Subproject... b. select AR6K_DRV.pbxml c. select open This should create a subproject within your OS Design project for the AR6K_DRV driver. 4. Build the solution. 转自Tony嵌入式,原文地址:http://www.cevx.com/bbs/dispbbs.asp?boardID=4&ID=11762&page=1-Atheros wireless chips AR-6000 series of wince 6 driver source code (which is something I did not used Do not ask me, I found other resources found wince to) AR6K SDIO support. Requires firmware 1.1 on SD13 cards. Readme: Atheros CommunicationsAR6001 WLAN Driver for SDIO installation Read MeMarch 26,2007 (based on k14 fw1.1) Windows CE Embedded CE 6.0 driver installation.1. Unzip the installation file onto your system (called installation directory below) 2. Create an OS design or open an existing OS design in Platform Builder 6.0. a. The OS must support the SD bus driver and have an SD Host Controller driver (add these from Catalog Items). b. Run image size should be set to allow greater than 32MB. 3. a . From the Project menu select Add Existing Subproject ... b. select AR6K_DRV.pbxmlc. select openThis should create a subproject within your OS Design project for the AR6K_DRV driver.4. Build the solution. Transfer from Tony embedded, the original address: http://www.cevx.com/bbs/dispbbs.asp?boardID=4
Platform: | Size: 533504 | Author: | Hits:

[FlashMXwindows

Description: 窗口功能: 1、可以拖动 2、可以伸缩大小 3、可以最大化、最小化 4、拥有滚动条 本窗口可以容纳两种对象: 1、文本对象(就如在本输入框中输入文本,然后点击【打开】按钮。即可在窗口中显示本文本框中的文本。 2、外部jpg图片或者swf影片,点击【浏览】选择一个本地图片或者swf动画即可打开。 -Window functions: one, you can drag the 2, can be telescopic size 3, you can maximize, minimize 4, has a scroll bar of the window can accommodate two types of objects: one, the text object (as in the input box, enter text, and then Click [Open] button. can be displayed in the window of the box, the text of this article. 2, external jpg picture or swf video, click [Browse] to select a local image or swf animation can be open.
Platform: | Size: 345088 | Author: star | Hits:

[Internet-NetworkCEWifiDriverAR6000-21374

Description: Atheros Communications AR6001 WLAN Driver for SDIO installation Read Me March 26,2007 (based on k14 fw1.1) Windows CE Embedded CE 6.0 driver installation. 1. Unzip the installation file onto your system (called installation directory below) 2. Create an OS design or open an existing OS design in Platform Builder 6.0. a. The OS must support the SD bus driver and have an SD Host Controller driver (add these from Catalog Items). b. Run image size should be set to allow greater than 32MB. 3. a. From the Project menu select Add Existing Subproject... b. select AR6K_DRV.pbxml c. select open This should create a subproject within your OS Design project for the AR6K_DRV driver. 4. Build the solution.
Platform: | Size: 588800 | Author: yangzhe | Hits:

[Multimedia DevelopMinutesToMidnight

Description: iphone 31天开源工程中的第一个,一个精美的计时器-Just like any good programmers we decided to bite this off the same day Apple lifted the NDA even faced with the time constraints. Needless to say the first app will be VERY simple, however it does demonstrate some stuff I stumbled on the first time I started coding against the iPhone SDK. The app is "Minutes to Midnight" it is simply a countdown of the time left I have to finish this app before tomorrow :). This idea came from my friend Chris Craft who committed (and completed!) 30 day of Windows Mobile development. To get started fire up xCode and * Click: File->New Project. From the "New Project" dialog * Select: iPhone OS->Applications-> View-Based Application * Name It: I named mine "MinutesToMidnight" This project already has a UIView we that will be the main view of or application. I imagine a count down looking like a plastic alarm clock which of cource counts backwards to zero. Let make our text have a red LED look and our back
Platform: | Size: 9216 | Author: blueseaineye | Hits:

[GPS developDelphi_GPS_Comp

Description: Here is a GPS component for your GPS navigation hobby project.The component was developed using Delphi 5 professional running with Windows XP Pro, Service pack 2. Review my comments in the source code for insight into how it works. The embedded COM port came from the public domain release of AsyncPro that was originally produced by TurboPower Software. Although it s much more complex than required, the default creation properties support NMEA communications. So, I provided only the ability to specify ComNumber, ComBaud and ComOpen. All Files required to build the COM port are included in the distribution. I changed the look of the port select dialog, the geekish wording of a few message strings and the baud rate property editor to make it compatible with the component.-Here is a GPS component for your GPS navigation hobby project.The component was developed using Delphi 5 professional running with Windows XP Pro, Service pack 2. Review my comments in the source code for insight into how it works. The embedded COM port came from the public domain release of AsyncPro that was originally produced by TurboPower Software. Although it s much more complex than required, the default creation properties support NMEA communications. So, I provided only the ability to specify ComNumber, ComBaud and ComOpen. All Files required to build the COM port are included in the distribution. I changed the look of the port select dialog, the geekish wording of a few message strings and the baud rate property editor to make it compatible with the component.
Platform: | Size: 508928 | Author: Luis Arce | Hits:

[TCP/IP stackWindowsSocketIOModel

Description: Windows网络与通信程序设计几种常见模型范例(OverlappedServer WSAAsyncSelect EventSelectServer select WSAEventSelect)-Windows network and communications programming examples of several common models (OverlappedServer WSAAsyncSelect EventSelectServer select WSAEventSelect)
Platform: | Size: 25600 | Author: 魏冲 | Hits:

[Game Hook Crackgames-windows

Description: 游戏窗口化源码,如果出现“钩住用dll不存在”的提示,请选中程序然后右击按设置   然后在弹出的对话框里点“辅助DLL” 右边框框右边的“打开”按钮,选D3Dwindower根目录下的D3dHook.dll 然后再运行游戏应该就行了   还有有些游戏不能全屏的话,把“一般”选项里的“非活动时缩小窗口”钩上,就解决了   但是这个软件支持的游戏有限,很多都不能执行,只能等以后的版本解决了,没有什么软件能全部支持-Source window of games, if the "hook dll does not exist with a" prompt, select the program and then right-click and then press set point in the pop-up dialog "auxiliary DLL" on the right frame to the right of "Open" button, select D3Dwindower root directory and then run the game D3dHook.dll be on the line there are some games not full screen, then the "General" option in the "non-event when the narrow window" on the hook, it solved the game, but this software support limited, many of them can not perform, such as future versions can only be solved, no software can support all
Platform: | Size: 274432 | Author: FengYun | Hits:

[Internet-NetworkSource

Description: select() windows socket server
Platform: | Size: 6144 | Author: Gong | Hits:

[Grid Computingwindows-socket

Description: 几种常用的Windows Socket 模型 好用又实用。-Windows Socket model several kinds of useful and practical.
Platform: | Size: 51200 | Author: mingming | Hits:

[Internet-NetworkwindowNet-select

Description: Windows Select 网络模式 有助于 参考Select 网络模型 -WindowsSelect network mode
Platform: | Size: 65536 | Author: XiongXiong | Hits:
« 12 3 4 5 6 7 8 9 10 ... 18 »

CodeBus www.codebus.net