亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

MY

  • Overview In this chapter I introduce Borland C++Builder (BCB) and explain what it is about. I also d

    Overview In this chapter I introduce Borland C++Builder (BCB) and explain what it is about. I also devote considerable time to explaining the purpose of this book and the philosophy behind MY approach to technical writing. Technical subjects covered in this chapter include Creating a simple Multimedia RAD program that plays movies, WAV files, and MIDI files. Shutting down the BCB RAD programming tools and writing raw Windows API code instead. Creating components dynamically on the heap at runtime. Setting up event handlers (closures) dynamically at runtime. A brief introduction to using exceptions. This topic is covered in more depth in Chapter 5, "Exceptions." A brief introduction to ANSI strings. This subject is covered in more depth in Chapter 3, "C++Builder and the VCL." Using the online help. Greping through the include and source files that come with the product and with this book.

    標簽: introduce Overview Borland Builder

    上傳時間: 2014-01-04

    上傳用戶:小鵬

  • Addressbook using double-linked list. This example shows the use of a double-linked list by implemen

    Addressbook using double-linked list. This example shows the use of a double-linked list by implementing an addressbook for the console. It has features like inserting, searching(linear), sorting(bubble sort), deleting and load/save to a file. I wrote this during MY study of Applied Computer Science so it s intended mainly for students who want to know about some advanced programming techniques in C. The Code was compiled with MSVC++ 6.0 but it should compile with any ANSI-compliant compiler.

    標簽: double-linked list Addressbook implemen

    上傳時間: 2014-01-24

    上傳用戶:asddsd

  • This software was done in part for a textbook on AI I ve written called _The Basis of AI_ (tentative

    This software was done in part for a textbook on AI I ve written called _The Basis of AI_ (tentative title, subject to change but not if I get MY way). For details see: http://www.mcs.com/~drt/basisofai.html

    標簽: tentative software textbook written

    上傳時間: 2015-03-30

    上傳用戶:cxl274287265

  • 手機文件瀏覽器 Here are the sources to SMan v1.2c 1.2 is a major jump from v1.1. You will see this from the

    手機文件瀏覽器 Here are the sources to SMan v1.2c 1.2 is a major jump from v1.1. You will see this from the way the code has been restructured into multiple files. It also supports flip closed. However, to MY chagrin, I made the mistake of assuming there will only be one flip closed view. :( That s changed in v1.3 :) 1.3 supports multiple flip closed views that can be easily added into SMan.

    標簽: from 1.2 the sources

    上傳時間: 2015-03-31

    上傳用戶:彭玖華

  • The zlibex.pas unit included in this archive will work with delphi 5, 6,and 7. if you previously dow

    The zlibex.pas unit included in this archive will work with delphi 5, 6,and 7. if you previously downloaded MY delphi 5 unit, you will notice that the unit has been renamed. this was done because borland included in its delphi 6 and 7 lib directories a zlib.dcu file and i felt it was more correct to rename MY unit and force developers to have to update their code than to make developers worry about the possible file contention in delphi 6 and 7.

    標簽: previously included archive zlibex

    上傳時間: 2015-04-30

    上傳用戶:縹緲

  • 通用寄存器的部分代碼 LIBRARY IEEE USE IEEE.STD_LOGIC_1164.ALL ENTITY traffic IS PORT(clk,sm,sb:IN bit

    通用寄存器的部分代碼 LIBRARY IEEE USE IEEE.STD_LOGIC_1164.ALL ENTITY traffic IS PORT(clk,sm,sb:IN bit mr,MY,mg,br,by,bg:OUT bit ) END traffic

    標簽: IEEE STD_LOGIC LIBRARY traffic

    上傳時間: 2014-01-14

    上傳用戶:水口鴻勝電器

  • The tar file contains the following files: ptfsf.c: heart of the perfect TFSF code ptfsf.h: he

    The tar file contains the following files: ptfsf.c: heart of the perfect TFSF code ptfsf.h: header file for same ptfsf-demo.c: FDTD code which demonstrates use of perfect TFSF code. Essentially this program used to generate results shown in the paper ptfsf-file-maker.c: code to generate an incident-field file using the "perfect" incident fields ptfsf-demo-file.c: FDTD code which uses the perfect incident fields stored in a file fdtdgen.h: defines macros used in much of MY code Makefile: simple make-file to compile programs Also include are some simple script files to run the programs with reasonable values. The code assumes a two-dimensional computational domain with TMz polarization (i.e., non-zero field Ez, Hx, and Hy). The program is currently written so that the incident field always strikes the lower-left corner of the total-field region first. (If you want a different corner, that should be a fairly simple tweak to the code, but for now you ll have to make that tweak yourself.)

    標簽: ptfsf following the contains

    上傳時間: 2013-11-28

    上傳用戶:風之驕子

  • FreeJaPoll is a free software that make possible to add in a simple way a web-survey to your own s

    FreeJaPoll is a free software that make possible to add in a simple way a web-survey to your own site. FreeJaPoll is a servlet written in Java programming language the program logo (on the right) shows The Duke (Java mascotte) and a duke-like colored chicken...why? Because the word "Poll" in MY native language, Italian, is very similar to the corrispective English word "Chiken" -)

    標簽: FreeJaPoll web-survey software possible

    上傳時間: 2015-05-16

    上傳用戶:無聊來刷下

  • ENGLISH RESUME Dear sir/madam In answer to your advertisement in present interview for your n

    ENGLISH RESUME Dear sir/madam In answer to your advertisement in present interview for your need. I wish to tender MY service. With reference to your advertisement in present interview for your need, I respectfully offer MYself for the position.

    標簽: your advertisement interview ENGLISH

    上傳時間: 2014-09-08

    上傳用戶:chenbhdt

  • Although there has been a lot of AVL tree libraries available now, nearly all of them are meant to w

    Although there has been a lot of AVL tree libraries available now, nearly all of them are meant to work in the random access memory(RAM). Some of them do provide some mechanism for dumping the whole tree into a file and loading it back to the memory in order to make data in that tree persistent. It serves well when there s just small amount of data. When the tree is somewhat bigger, the dumping/loading process could take a lengthy time and makes your mission-critical program less efficient. How about an AVL tree that can directly use the disk for data storage ? If there s something like that, we won t need to read through the whole tree in order to pick up just a little bit imformation(a node), but read only the sectors that are neccssary for locating a certain node and the sectors in which that node lies. This is MY initial motivation for writing a storage-media independent AVL Tree. However, as you step forth, you would find that it not only works fine with disks but also fine with memorys, too.

    標簽: available libraries Although nearly

    上傳時間: 2014-01-22

    上傳用戶:zhoujunzhen

主站蜘蛛池模板: 平泉县| 司法| 吉安县| 威宁| 南宁市| 化州市| 方正县| 景德镇市| 搜索| 山阴县| 高密市| 丹寨县| 筠连县| 岗巴县| 扬中市| 通辽市| 灌南县| 射阳县| 旬阳县| 隆安县| 济阳县| 武夷山市| 灵石县| 大庆市| 嘉定区| 广南县| 牙克石市| 吉木乃县| 开江县| 垦利县| 汨罗市| 宝坻区| 利辛县| 南部县| 惠州市| 崇仁县| 文成县| 沾益县| 玛纳斯县| 鹤岗市| 泽库县|