Board logo

标题: Borland PowerPack for DOS [打印本页]

作者: Tyguest228     时间: 2005-12-29 02:53    标题: Borland PowerPack for DOS

rt(共6)

readme的内容:
--------------------


                             WELCOME TO THE BORLAND
                               POWERPACK FOR DOS

This README file contains important information about the Borland PowerPack for DOS. For the latest information about this product and its accompanying programs and manuals, read this entire file.

-----------------
TABLE OF CONTENTS
-----------------

1.  How to Get Help
     -Sources of information
2.  Installation
     -Performing custom installations
3.  Features
     -BGI
     -Compatibility
     -Windows/Win32 API Emulation
     -Function implementation
     -Debuggers
4.  Important Information
     -Delivering the Application
     -Additional APIs
     -TLookupValidator class
     -Using the QEMM memory manager
     -Turbo Vision palette changes
     -NOEHxx Libraries
     -Debuggers
     -Recompiling Existing Turbo Vision Applications
     -TPicResult Type and vsXXXX Constants
     -Using the Paradox Engine with PowerPack for DOS
5.  Miscellaneous Information

------------------
1. HOW TO GET HELP
-----------------

SOURCES OF INFORMATION
----------------------
  If you have any problems, please read this file, and
  check the on-line help and the PowerPack and Borland C++
  manuals first. If you still have a question and need assistance,
  help is available from the following sources:

  1. For instant on-line access to the Borland CompuServe forums,
     with their libraries of technical information and answers
     to common questions, type

        GO BCPPDOS     - for questions pertaining to DOS

         or

        GO BCPPWIN     - for questions pertaining to Windows

     If you are not a member of CompuServe, see the enclosed
     special offer, and write for full details on how to receive
     a free IntroPak containing a $15 credit toward your first
     month's on-line charges.

     For on-line access to Borland information on BIX, type

        JOIN BORLAND

     For on-line access to Borland information on GEnie, type

        BORLAND


  2. Borland offers a wide variety of Technical Support plans
     providing a range of assistance from installation and general
     usage of Borland C++ to language syntax, programming, and
     debugging help. For information about these support programs,
     call 1-800-523-7070.

  3. Borland's TECHFAX service. Call (800) 822-4269 for a FAX
      catalog of technical document entries.

  4. Borland DLBBS. Dial (408) 431-5096 (up to 9600 baud, 8-N-1)
     for a host of free technical documents and example programs.

  5. For immediate assistance with everything from configuring Borland C++
      to programming or debugging, call our C++ Programmer's
      Advisor Lines ($2/minute, first minute free):
            * Windows / Win32:     1-900-555-1002  or 1-800-782-5558 (MC/Visa)
            * DOS :      1-900-555-1004  or 1-800-368-3366 (MC/Visa)

  6. Technical information on Borland C++ is available on the Internet
     via anonymous ftp at our ftp site ftp.borland.com.

  7. Subscribe to Borland's free electronic newsleter and get a regular
      update on the hottest programming tips and tricks.  Send your full
      name and address via electronic mail to tech-info@borland.com.

---------------
2. INSTALLATION
---------------
For more install information see the online-text file PINSTALL.TXT.

The Borland PowerPack requires Borland C++ version 4.02 or later.
If you do not have version 4.02 or later of Borland C++ contact
the Borland Order Desk at 1-800-645-4559 to upgrade.  Outside of
North America, contact your local Borland office.

Make sure you specify the correct directory that you installed
Borland C++ into during install.

Make sure you have turned ON the "CD-ROM:" entry if you have performed a
CD-only configuration installation of Borland C++. Also make sure you have
entered the full path to the BIN directory for the "CD-ROM Binary Directory"
option (e.g. D:\BC4\BIN).

   IMPORTANT:  Make sure to remove any overlay switches from your makefiles
   and projects if you are converting an overlaid application to a DOS
   extended application.  Overlays are not compatible with DOS extended
   applications, and are, in fact superfluous.

Note: make sure that \BC4\BIN comes before comes before any PowerPack path
in you PATH settings.


Performing custom installations
-------------------------------
If you are going to build 16-bit applications, you will need the 16-bit
command-line tools, the 16-bit Turbo Debugger, the 16-bit large-model
Run-time Library, and the 16-bit Class Library from Borland C++.
When performing a Custom install of Borland C++, make sure the
following options are turned on:

   Customize Installation for Borland C++ Product - 16-bit Windows, DOS

   Borland C++ Tools - Command Line Tools, Debugger, Visual Tools, Run-time
   Libraries, Class Library

   Borland C++ Debugger - Turbo Debugger

   Borland C++ Run-time Libraries - all options on

   Borland C++ Class Libraries - all options on


If you are going to build 32-bit Applications, you will need the 32-bit
command-line tools, the 32-bit debugger, the 32-bit RTL libraries,
and the 32-bit class Libraries from Borland C++. When performing a
Custom install of Borland C++, make sure the following options are turned on:

   Customize Installation for Borland C++ Product - 32-bit Windows, DOS

   Borland C++ Tools - Command Line Tools, Debugger, Run-time
   Libraries,  Class Library

   Borland C++ Debugger - Turbo Debugger

   Borland C++ Visual Tools - Integrated Development Environment (IDE)

   Borland C++ Run-time Libraries - all options on

   Borland C++ Class Libraries - all options on


-----------
3. FEATURES
-----------

Borland PowerPack for DOS lets you build 16-bit and 32-bit DOS extended
applications. There is full support for 16-bit and 32-bit protected mode BGI
and Turbo Vision.

You can generate DOS extended applications from the IDE by selecting the
appropriate target from the TargetExpert selection list. To enable DPMI
targeting and Turbo Vision for DOS in the IDE your BCW.INI file should
contain these lines (automatically added by INSTALL):

[AddOns]
addon000=bcwdpmi.dll

The installation of the PowerPack will not always use addons000. If you have
previously installed a product that uses this section, the install program
will use "addon001" or the first free number in sequence.

The following section will also be added:

[dpmi]
bcinclude=C:\BC4\INCLUDE
bclib=C:\BC4\BIN

BGI
---
BGI support for DOS extended applications follows a slightly different model
from real mode. Now there are BGI DLLs. The BGI16.DLL contains most of the
graphics library functionality. There are still separate driver files as in
the old DOS BGI. The 32-bit BGI has a BGI32.DLL which provides support similar
to BGI16.DLL. However, the 32-bit drivers are implemented as DLLs. The 32-bit
drivers are kept in the \BC4\BGI directory for consistency.

Instead of linking with GRAPHICS.LIB, you should link with BGI16.LIB or
BGI32.LIB, for 16-bit and 32-bit applications, respectively.

Note: using BGI in a DOS extended application requires that
you have the BC4\BGI directory in your path.

Compatibility
-------------
32-bit DOS extended applications which use the ANSI C/C++ functions
should run unmodified under NT.

32-bit DOS extended applications in general should run under DOS,
NT, Windows 3.1 DOS boxes, Windows 3.11 DOS boxes and OS/2 2.x DOS
boxes.  Applications which use interrupts or IO instructions, or
expect to have direct access to video/DOS memory will generally
fail to run under NT.

16-bit DOS extended applications should run unmodified under DOS,
NT, Windows 3.1 DOS boxes, Windows 3.11 DOS boxes and OS/2 2.x DOS
boxes.


Windows/Win32 API Emulation
----------------------------
The 16-bit and 32-bit extenders support emulation of most of the Windows and
Win32 APIs. The libraries DPMI16 and DPMI32 include import records for those
APIs which are emulated, so use of an unimplemented API will result in
link time errors. If you need to use an API which is not implemented
by the extenders, you can hook unresolved APIs and provide resolution
for them at run time. To do this, you need to implement and export
a hook function as follows:

    FARPROC WINAPI _export BorlandUnresolvedEntryHook (LPCSTR modName,
                                                       BOOL byOrdinal,
                                                       LPCSTR entry);

The first parameter is the name of the module for the function, for
example, "KERNEL".  The second parameter tells whether the third
parameter is a string or an ordinal value.  If it is FALSE, then the
third parameter is a string naming the unresolved entry, for example,
"GETATOMNAME".  Your hook function should determine if it is has an
implementation for this entry.  If it does, it should hand back a
pointer to the function.  This will be used by the loader to resolve
the references in the image.

There are a few restrictions to this functionality:

    - Your hook function may be called before the RTL has initialized.
      It may therefore call strcmp and a few related string functions,
      but little else.  It should not attempt to do I/O, or
      allocations.

    - If the application is a 16-bit application, the hook function
      should be in the first segment in the image, and this should be
      a preload segment.  The hook function will have access to the
      automatic data segment.

    - The function should not call any unimplemented APIs.


Function implementation
-----------------------
The int86, int86x, intdos, intdosx, and intr RTL functions will not be
supported on DPMI32. The int386 and int386x RTL functions should be used
instead.


Debuggers
---------
Two debuggers are available:
       TD.EXE for 16-bit application debugging
       TD32.EXE for 32-bit application debugging


------------------------
4. IMPORTANT INFORMATION
------------------------

Delivering the Application
--------------------------
16-bit applications will always need to ship with the following files:

   RTM.EXE
   DPMI16BI.OVL

If these applications use BGI, you will have to ship BGI16.DLL, plus
the appropriate BGI drivers and fonts.

32-bit applications will always need to ship with the following files:

   32RTM.EXE
   DPMI32BI.OVL

If these applications use BGI, you will have to ship BGI32.DLL, plus
the appropriate BGI drivers and fonts.

If your 32-bit application will be run under a DOS box under Windows
3.1 or later, you will need to install WINDPMI.386 in the
user's SYSTEM.INI file. These files need to be on your path, or in the
same directory as the application.

Additional APIs
---------------
The following additional Windows APIs, not listed in the printed documentation,
are emulated under DPMI16:

   _lclose
   _lread
   _lcreat
   _lseek
   _lopen
   _lwrite
   wsprintf
   AnsiToOemBuff
   GetCurrentTime
   GetDesktopWindow
   GetExePtr
   GetPrivateProfileInt
   GetPrivateProfileString
   GetProfileInt
   GetProfileString
   GetSystemDirectory
   GetTickCount
   GetWindowsDirectory
   OemToAnsiBuff
   OpenFile
   WritePrivateProfileString
   WriteProfileString

TLookupValidator Class
----------------------
The following validator class has been added to the product, but was
not listed in the printed documentation:

   TLookupValidator                                 validate.h
   -----------------------------------------------------------
A lookup validator compares the string typed by a user with a list of
acceptable values. TLookupValidator is an abstract validator type from which
you can derive useful lookup validators. You will never create an instance
of TLookupValidator. When you create a lookup validator type, you need to
specify a list of valid items and override the lookup method to return
True only if the user input matches an item in that list. One example of a
working descendant of TLookupValidaor is TStringLookupValidator.

Member functions:

   isValid       virtual Boolean isValid( const char *s );

Calls lookup to find the string s in the list of valid input
items.  Returns True if lookup returns True, meaning lookup found
s in the list; otherwise, return False.

see also:  TLookupValidator::lookup

   lookup       virtual Boolean lookup( const char *s );

Searches for the string s in the list of valid entries and
returns True if it finds s;  otherwise, returns False.  
TLookupValidator's lookup is a pure virtual function that always
returns False.  Descendant lookup validator classes must override
lookup to perform a search based on the actual list of acceptable
items.

Using the QEMM memory manager
-----------------------------
If you use the QEMM memory manager comment out the following line from your
CONFIG.SYS file:

REM DEVICE=C:\QEMM\QDPMI.SYS SWAPFILE=DPMI.SWP SWAPSIZE=1024

This removes the QEMM DPMI Services Manager, which is not compatible with
Borland's DPMI Manager 32RTM. Only our tools (BCC32, MAKE, TLINK32,
TD32 etc.) will not run under the QEMM server. Your applications will
run under the QEMM server.

Turbo Vision palette changes
----------------------------
Turbo Vision 2.0's application palette has been expanded to include Blue
and Cyan dialog colors. In addition, the help colors have been incorporated
into the application palette. This could cause you to get undefined symbol
errors for cpColor, cpBlackWhite, cpMonochrome, cHelpColor, cHelpBlackWhite,
and cHelpMonochrome.

The cpXXXX palettes have been renamed cpAppXXXX. The cHelpXXXX palettes are
no longer defined because they were merged into the cpAppXXXX palettes. If
you are overriding TApplication::getPalette to add the help colors to the
application palette, remove your getPalette function. It is no longer needed.
The help colors are now part of the application palette, and you can use the
help system without any palette modifications.

If you are overriding TApplication::getPalette to extend the palette for your
own user-defined classes, you will need to modify the palettes returned by
your user-defined classes. The Turbo Vision 2.0 palette has been expanded
from 63 colors to 131 colors. This means your user defined classes probably
return references to palette entries 64 and up. You will need to modify your
user-defined classes to return palette references 132 and up.

NOEHxx Libraries
----------------
Purpose:

The NOEHxx libraries eliminates the overhead of exception-handling code in
the run-time library for users who don't need it and who do not rely on any
libraries that require it.

How to use:

A NOEHxx library must be linked in before the standard runtime library.
For command-line tools this can be accomplished by specifing the appropriate
NOEHxx library on the BCC command-line, or making it the first library given
to TLINK.

For the IDE, add the approriate library to the project using AddNode.
To ensure the NOEHxx library is processed before the standard libraries,
turn on "Show Runtime Nodes" in the Options|Environment|ProjectView dialog.
From the project window you can move the library up and down using the
ALt-<arrow> keys. Be sure the NOEHxx library appears before other standard
libraries. Note: use NOEHWL.LIB when building DPMI16 programs.

What they do:

The NOEHxx libraries resolve calls to exception-related compiler helper
functions to dummy functions that return appropriate return values. They
also restore the pre-exception behavior of operator new to return NULL on
out of memory conditions. Non-exception enabled versions of setjmp() and
longjmp() are also provided.

Limitations:

Note: some features introduced in BC4.0 require exception handling.
These include the string class, BIDS container classes, the standard
OWL libraries, and RTTI.

Debuggers
---------
Borland's Turbo Debugger supports both 16-bit DPMI debugging (TD.EXE) and
32-bit DPMI debugging (TD32.EXE). DPMI support services are provided by
several files delivered with PowerPack for DOS, and are used by both
debuggers.

   - A new command-line switch has been added to TD32.EXE:  -vd.
     This switch enables the use of 32-bit DPMI video dlls. This
     allows users to create their own DPMI video dlls to access BGI
     video modes under dpmi.

     Usage of -vd switch:
           -vd<\path\video_dll_name>

     PowerPack for DOS provides SVGA32.DLL for 32-bit dpmi BGI
     support. It is used in conjunction with TD32.EXE. When the -vd
     switch is used with TD32.EXE, the default video_dll_name is
     SVGA32.DLL. No name needs to be supplied. SVGA32.DLL is the
     default and it must be located in the same directory as TD32.EXE.

     Three DOS environment variables can be set to enable specific
     options available when using SVGA32.DLL:

           set SVGA32=MONO    (enables TD32.EXE dual monitor support)
           set SVGA32=COLOR   (enables TD32.EXE on a color monitor, the
                               default behavior.)
           set SVGA32DEBUG=<filename>  (Output SVGA32 diagnostic info
                                        to a log file.)

     SVGA32.DLL is not required to debug 32-bit DPMI BGI applications.

   - 32-bit DPMI dual-monitor support is provided within SVGA32.DLL.
     To use this dual-monitor support, set the SVGA32 environment
     variable, as shown above, to MONO, and invoke TD32.EXE using
     the -vd command line switch.

   - Remote debugging of DPMI applications is not currently supported.

   - Mouse support is not currently provided for 32-bit dual-monitor
     debugging.

   - MS Mouse driver 9.01 has known problems which render it
     incompatible with TD32.EXE and TD.EXE under DOS. All other
     mouse drivers function properly.

Recompiling Existing Turbo Vision Applications
-----------------------------------------------
To recompile your existing Turbo Vision 1.0 applications with Turbo Vision
2.0, you must:

   - Change #include <tv.h> to #include <tvision/tv.h> in all files.

If you are compiling in the IDE, you also must:

   - Enable Turbo Vision support by right clicking on the EXE node in your
     project, selecting TargetExpert, turning on the Turbo Vision check box,
     and pressing OK.

   - Update your include path by changing
     Options|Project|Directories|Source Directories|Include to C:\BC4\INCLUDE.

   - Rebuild with Project|Build All to overwrite old OBJs.


TPicResult Type and vsXXXX Constants
------------------------------------
The following reference material is missing from the printed documentation:

=============================================================
TPicResult type                                    validate.h
=============================================================

Declaration  enum TPicResult = (prComplete, prIncomplete, prEmpty,
                                prError, prSyntax, prAmbiguous,
                                prIncompNoFill);

Function  TPicResult is the result type returned by the picture
          member function of TPXPictureValidator.

See also  TPXPictureValidator::picture


=============================================================
vsXXXX constants                                   validate.h
=============================================================

          Function  Input line objects use vsOK to check that
                    their associated validator objects were
                    constructed properly. When called with a
                    command parameter of cmValid, an input
                    line object's valid member function
                    checks its validator's status field. If
                    status is vsOK, the input line's valid
                    returns True, indicating that the
                    validator object is ready to use.

                    The only value defined for status other
                    than vsOK is vsSyntax, used by
                    TPXPictureValidator to indicate that it
                    could not interpret the picture string
                    passed to it. If you create your own
                    validator objects, you can define error
                    codes and pass them in the status field.

            Values  The validate.h header file defines two
                    constants used by validator objects to
                    report their status:

Validator status constants
-----------------------------------------
Constant         Value     Meaning
-----------------------------------------
vsOK               0       Validator constructed properly

vsSyntax           1       Error in the syntax of either a
                           TPXPictureValidator or a
                           TDBPictureValidator
-----------------------------------------

See also  TValidator::status


Using the Paradox Engine with PowerPack for DOS
-----------------------------------------------
If you are using the Paradox Engine with executables created with the
DOS PowerPack, and you receive the runtime error message:

   Unable to locate GDI.DLL

this means that your executable attempted to load an old version of
PXENGWIN.DLL. Make sure that you are using version 3.01 of the Paradox Engine
and that there are no older versions being found first on your path. If you
do not have version 3.01 of the Paradox Engine you can obtain an upgrade by
calling the Borland Order Desk at (800) 645-4559. Outside of North America
contact your local Borland office.


---------------------------
5.MISCELLANEOUS INFORMATION
---------------------------

CD Only Configuration Install
-----------------------------
If you have done the CD Only Configuration install, you will need to update
your Turbo Vision example files by doing the following:

  For each example

     - Select the Options menu

     - Select the Project option

     - Modify the Include Source Directory to show
       <CD-ROM drive>:\BC4\INCLUDE;<path you installed the PowerPack to>

     - Modify the Library Source Directory to show
       <CD-ROM drive>:\BC4\LIB;<path you installed the PowerPack to>.

     - Press the OK button.

Doing these steps sets both your CD-ROM INCLUDE and LIBRARY paths, and your
PowerPack INCLUDE and LIBRARY paths.

If you have done the CD Only Configuration install, then you must change
the BC DOS & Library Icon help-file path (in the Borland C++ group) from
the CD to your hard drive.

Changing Target Type
---------------------
If you change the target type for an application from DPMI16 to DPMI32 or
vice-versa, you must rebuild the application. If you only request a MAKE,
the application will not be built correctly, because MAKE logic is based
on the time and date stamp.

Reinstallation
--------------
If you reinstall any portion of Borland C++ after installing the
PowerPack, some PowerPack environment settings may be lost.
If this happens, reinstall the PowerPack.

Phar Lap Compatibility
----------------------
When running protected-mode applications that use Phar Lap's DOS extender
and which will spawn applications using Borland's DOS extender (for example
NMAKE), load 32RTM first. This will cause Borland's DPMI server to be used,
which is compatible with both DOS extenders.

[ Last edited by Tyguest228 on 2006-1-5 at 18:22 ]
附件 1: POWERPAKfordos.part1.rar (2005-12-29 02:53, 500 K, 下载附件所需积分 1点 ,下载次数: 1050)
附件 2: POWERPAKfordos.part2.rar (2005-12-29 02:53, 500 K, 下载附件所需积分 1点 ,下载次数: 1013)
附件 3: POWERPAKfordos.part3.rar (2005-12-29 02:53, 500 K, 下载附件所需积分 1点 ,下载次数: 957)

作者: Tyguest228     时间: 2005-12-29 02:54


[ Last edited by Tyguest228 on 2006-1-5 at 18:24 ]
附件 1: POWERPAKfordos.part4.rar (2005-12-29 02:54, 500 K, 下载附件所需积分 1点 ,下载次数: 909)
附件 2: POWERPAKfordos.part5.rar (2005-12-29 02:54, 500 K, 下载附件所需积分 1点 ,下载次数: 894)

作者: Tyguest228     时间: 2005-12-29 02:55
附件 1: POWERPAKfordos.part6.rar (2005-12-29 02:55, 157.61 K, 下载附件所需积分 1点 ,下载次数: 793)

作者: jpzsj     时间: 2006-1-5 10:22
介绍一下,这是什么程序?
作者: gt2000     时间: 2006-2-6 04:38
哦!,是真的,虽然现在不用,不过我下了,真是很谢谢你,以前找了好久好久没有找到.
作者: weilong888     时间: 2006-2-7 20:09
这东西不错。
作者: sphinxzh     时间: 2006-10-19 21:36
我下了,可是怎么用啊?
作者: 雨露     时间: 2006-10-20 06:28
晕,这样大量发附件,论坛还受得了?不是有上传空间吗?
作者: GOTOmsdos     时间: 2007-2-22 05:40
哇! 终于找到了 这个了!
好高兴!

论坛的上传空间好象我没有一次成功下到东西
作者: GOTOmsdos     时间: 2007-2-22 06:09
另,请教一下:
用这个POWERPACK 能突破DOS下一次读写文件的64KB的限制(比如,BC的 fread() fwrite()一次只能读写64KB)吗?
比如,一次就读写10MB文件内容?(如果有这么大)?

[ Last edited by GOTOmsdos on 2007-2-22 at 06:41 AM ]
作者: cqllzp     时间: 2007-3-7 01:38
谢谢分享我找了很久了!
听说这个工具功能强大!
作者: pcuser80     时间: 2007-3-7 12:11
感谢楼主分享~
作者: scnclisir1     时间: 2007-3-12 11:47    标题: 支持

支持
作者: xxyyy     时间: 2007-3-17 06:02
turbo vision也能转换吗?
作者: xxyyy     时间: 2007-3-17 06:03
严重支持
作者: rollin7     时间: 2007-3-30 11:31
真是好东东呀,顶顶顶.
作者: zhaxg     时间: 2007-4-2 09:42
我也不用,谁知道有没有一个编译器可以同时编译c和c++???
作者: xiaoxin2296     时间: 2007-4-2 10:53
说是要Borland C++4.02才可以用,哪里有下的啊?
作者: ligeng     时间: 2007-4-3 10:05
有一个下不了啊,不知是什么原因 。
作者: liuweiming     时间: 2007-4-21 05:34
3q
作者: safirst     时间: 2007-6-12 21:00
传说中的好东西
作者: zx5290     时间: 2007-6-13 22:38
kankan
作者: lixun305     时间: 2007-6-19 17:12
谢谢分享,不知道做什么用的,下来看看!
作者: strinf     时间: 2007-7-1 14:37
听说这是可以设计出16-bit与32-bit之protected mode之.exe文件的好用工具!
作者: cicnx     时间: 2007-7-9 21:01
想下载但没积分...怎么样有积分啊.
作者: nestfly     时间: 2007-7-10 07:20
没有积分怎么下!!!
作者: nl1031     时间: 2007-7-28 11:23    标题: 太好了

下载看看
作者: willsion     时间: 2007-7-29 23:33
下载收藏。。。。。。。。。。
作者: syscss     时间: 2007-8-2 15:55
2131312312
作者: syscss     时间: 2007-8-2 15:55
231321312
作者: syscss     时间: 2007-8-2 15:55
5454545ghgh
作者: syscss     时间: 2007-8-2 15:55
232323
2323
3
3
作者: syscss     时间: 2007-8-2 15:56
.

23
.0.
56..0.0.
作者: syscss     时间: 2007-8-2 15:56
0..2.4312.10.0..0.0
作者: layerzoom     时间: 2007-8-11 17:16
很难找的哦!
作者: player2ccp     时间: 2007-8-13 22:27
支持一下
作者: aca     时间: 2007-8-28 21:42
ding,学习....
作者: qunce     时间: 2007-9-9 22:27
宝贝,收藏了!
作者: sohu129     时间: 2007-9-12 19:47
做人还是多回复些有用的信息,不然互联网上的垃圾你一辈子都弄不清。
作者: fengdou151     时间: 2007-10-7 18:14
非常想要,怎么下载
作者: jackshin     时间: 2007-11-8 21:01
有中文资料么?
作者: walterchw     时间: 2007-11-26 15:22
不错,正在找这
作者: walterchw     时间: 2007-11-26 15:26
下一次顶一次
作者: dongyongqiang     时间: 2007-12-6 07:13
thank you very much!
作者: dongyongqiang     时间: 2007-12-6 07:15
thank you very much!
作者: TONY123456     时间: 2007-12-18 09:46
THANKS MAN
作者: renl     时间: 2007-12-18 18:25
好东西,我喜欢
现在看到这个地方是我要呆很久的地方了
谢谢楼主了
作者: raythunder     时间: 2007-12-18 18:29
严严重支持
重支持
作者: renhua     时间: 2008-1-6 21:33
很好,很强大。
作者: bobo98     时间: 2008-1-7 00:54
好东西,自然要支持!
顶 ---- 一个字!
作者: zator     时间: 2008-2-27 14:07
找好久了,thank
作者: jlywb     时间: 2008-3-5 14:49
好东西
作者: jlywb     时间: 2008-3-5 14:50
time:~0,2
作者: happe     时间: 2008-3-11 04:58
全是英文的,这是什么东西啊?
能不能解释一下啊
谢谢!
作者: kaixinmao     时间: 2008-3-17 23:16    标题: 生成的程序好大呀

一点都不精巧
作者: heling     时间: 2008-3-18 17:31
好家伙
作者: dwq2005     时间: 2008-4-1 23:41
找了好久了.怎么下不到
作者: dwq2005     时间: 2008-4-1 23:43
非常感谢
作者: dwq2005     时间: 2008-4-1 23:46
版主,你是救星,太伟大了!
作者: gaoxy2008     时间: 2008-4-11 09:57
非常感谢。
作者: mooling     时间: 2008-5-5 21:48
需要这麽多记分阿
作者: cjamking     时间: 2008-5-28 15:15
没有积分,呵呵
作者: peterwsh     时间: 2008-6-9 00:51
好东西,强烈支持!
作者: jaken123456     时间: 2008-6-22 19:39
多谢提供下载,正找这个呢。。。。。。
作者: xiaoranzzz     时间: 2008-8-8 12:02
找了许久,终于有了
作者: vcmasm2008     时间: 2008-8-8 19:57
建议用 DJGPP + Allegro !
作者: GOTOmsdos     时间: 2008-8-17 14:46
this is a test post, cause i'm in ARACHNE dos browser again !
作者: bigeyes     时间: 2008-8-29 10:19
不懂用.试试
作者: silitex     时间: 2008-9-5 15:26
虽然还不知道是什么东西,不过还是感谢楼主分享!
作者: bigeyes     时间: 2008-9-5 16:41
很好.
作者: tomli2000     时间: 2008-9-12 14:10    标题: very good

very good
作者: zbhunter     时间: 2008-10-27 21:38
谢谢,找了很久了
作者: zhengxm     时间: 2008-11-1 22:31
谢谢,找了很久了,记号先
作者: youhard     时间: 2008-11-30 00:13
yes
作者: fishold123     时间: 2008-12-8 01:53
thank u very much
作者: flyer2001     时间: 2009-2-3 01:38
不知道怎么用
作者: 88509572     时间: 2009-3-3 08:07
我不支持的话,就有点对不党了。
作者: 88509572     时间: 2009-3-3 08:14
哇! 终于找到了 这个了!
好高兴!
再次回贴支持,我有个程序是用这个写的,正想学习一下,有高人指点一下对对DBASE的DBF格式数据库访问的源代码吗?联系油箱88509572@QQ.COM
作者: yuxingzeng     时间: 2009-3-14 02:46    标题: 支持

好东东
作者: peterww2007     时间: 2009-6-20 20:52
好东东,谢谢分享,这东东可真不好找.
作者: vcmasm     时间: 2009-7-9 11:28
可惜Borland没有相应的DOS IDE!
没有太大的实用价值!

[ Last edited by vcmasm on 2009-7-9 at 11:30 ]
作者: netreg     时间: 2009-11-16 17:46
多谢分享,顶……
作者: linuxdos110     时间: 2009-12-16 23:56
好东西
作者: wlb5396340     时间: 2010-1-21 17:23
好,需要,先拿两分!
作者: wlb5396340     时间: 2010-1-21 17:24
再来一下
作者: pkuwc     时间: 2010-3-1 11:01
这个东西的确很强大!但它只能支持到DPMI 0.9,不知道有没有可以支持到DPMI 1.0的开发包呢?最好可以和这个包向下兼容的!
作者: lizi168     时间: 2010-6-1 15:35
严重支持
作者: highpcc     时间: 2010-6-12 09:47
谢谢,虽然我不懂
作者: ericdog     时间: 2010-6-20 12:23
是早期的好東西,推薦
作者: shxch1987     时间: 2010-7-13 16:09
谢谢分享!确实不好找了。
作者: kinglin     时间: 2010-8-15 19:21
让我破费了,呵呵
作者: mashan0537     时间: 2010-9-24 19:29
不好找的资源呀,收了!谢谢
作者: hithl     时间: 2010-10-30 12:28
终于找到了
作者: qingwashaoye     时间: 2017-2-1 01:11
顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶
顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶          顶顶
顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶                顶顶
顶顶顶顶顶顶顶顶顶顶    顶顶          顶顶顶顶顶顶顶
顶顶顶顶顶顶        顶顶  顶顶顶    顶顶顶顶顶顶顶顶
顶             顶顶顶顶顶顶顶   顶顶顶顶顶顶顶顶顶
顶           顶顶顶顶顶顶顶顶         顶顶顶顶
顶顶         顶顶顶顶顶顶顶顶            顶顶
顶顶顶 顶顶顶    顶顶顶顶顶顶    顶顶顶顶顶     顶顶
顶顶顶顶顶顶顶顶   顶顶顶顶顶顶  顶顶顶 顶顶顶顶   顶顶顶
顶顶顶顶顶顶顶顶   顶顶顶顶顶   顶顶顶  顶顶顶   顶顶顶
顶顶顶顶顶顶顶顶   顶顶顶顶顶   顶顶顶  顶顶顶   顶顶顶
顶顶顶顶顶顶顶顶   顶顶顶顶顶   顶顶   顶顶顶   顶顶顶
顶顶顶顶顶顶顶顶   顶顶顶顶顶   顶顶   顶顶顶   顶顶顶
顶顶顶顶顶顶顶顶   顶顶顶顶顶   顶顶   顶顶顶   顶顶顶
顶顶顶顶顶顶顶顶   顶顶顶顶顶   顶顶   顶顶顶   顶顶顶
顶顶顶顶顶顶顶顶   顶顶顶顶顶  顶顶顶  顶顶顶顶   顶顶顶
顶顶顶顶顶顶顶顶   顶顶顶顶顶  顶顶顶  顶顶顶顶   顶顶顶
顶顶顶        顶顶顶顶顶顶 顶顶  顶顶顶顶    顶顶顶
顶顶顶顶       顶顶顶顶顶顶顶顶顶  顶顶 顶顶顶  顶顶顶
顶顶顶顶顶顶     顶顶顶顶顶顶顶顶   顶顶    顶顶顶顶顶
顶顶顶顶顶顶顶顶   顶顶顶顶顶顶顶    顶顶顶      顶顶
顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶     顶顶顶顶顶      顶
顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶    顶顶顶顶顶顶顶顶     顶
顶顶顶顶顶顶顶顶顶顶顶顶顶     顶顶顶顶顶顶顶顶顶顶    顶
顶顶顶顶顶顶顶顶顶顶顶顶  顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶  顶顶
顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶