home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / CLIPPER / BCNN0394.ZIP / BCNN0394.TXT
Text File  |  1994-03-11  |  28KB  |  548 lines

  1. ------------------------------------------------------------------------------
  2. ------------------------------------------------------------------------------
  3.         NNNNNNNNNNNN        NNNNNNNNNNNN  NNNNNNN    NNNNNN NNNNNNN    NNNNNN
  4.        NNNNNNNNNNNNNN    NNNNNNNNNNNNNN  NNNNNNNN   NNNNNN NNNNNNNN   NNNNNN
  5.       NNNNNN    NNNNN  NNNNNNNNNN       NNNNNNNNN  NNNNNN NNNNNNNNN  NNNNNN
  6.      NNNNNN    NNNNN NNNNNNNN          NNNNNNNNNN NNNNNN NNNNNNNNNN NNNNNN
  7.     NNNNNNNNNNNN    NNNNNN            NNNNNNNNNNNNNNNNN NNNNNNNNNNNNNNNNN
  8.    NNNNNN   MNNNNN NNNNNNN           NNNNNN NNNNNNNNNN NNNNNN NNNNNNNNNN
  9.   NNNNNN   MNNNNN  NNNNNNNN         NNNNNN   NNNNNNNN NNNNNN   NNNNNNNN
  10.  NNNNNNNNNNNNNN     NNNNNNNNNNNNN  NNNNNN    NNNNNNN NNNNNN    NNNNNNN
  11. NNNNNNNNNNNNN        NNNNNNNNNNN  NNNNNN     NNNNNN NNNNNN     NNNNNN
  12. ------------------------------------------------------------------------------
  13. ------------------------------------------------------------------------------
  14. Boston Computer News Network                                       March, 1994
  15. A Service of the Boston Computer Society, USA                      Vol.3  No.3
  16. Sponsored by the Xbase Language Group                          Clipper Version
  17. ------------------------------------------------------------------------------
  18.  1. Call for Participation:  UDF Showcase.
  19.     -----------------------------------------------------------------------
  20.     ReplyTo:   Les Squires bcnn@world.std.com  [73020,3435]
  21.     ReplySubj: BCNN@UDF@Showcase.
  22.     Deadline:  March 15, 1994
  23.  
  24.     Clever code is pouring in.  The deadline is approaching.  As described
  25.     last month, we'd like to see your 1 to 20 line Clipper function.  One
  26.     you use VERY often.  Email your code.  Choose your best.  Make sure
  27.     it's well documented.  Format it to resemble a BCNN paragraph.
  28.  
  29.     Check PadSpecial() submitted by Gunther 'Goonie' Popp [100014,3646]:
  30.  
  31.     // PadSpec() - Shortens a string to a given length. In the middle of
  32.     //             the str '...'  is inserted, to indicate the user that
  33.     //             something is missing. Very useful for screen-IO.
  34.     // Syntax      cNew := PadSpecial( cOld, nMaxLen )
  35.     // Requires    Funcky II
  36.     // Author      Gunther 'Goonie' Popp [100014, 3646]
  37.     // ------------------------------------------------
  38.  
  39.     FUNCTION PadSpecial( cString, nMaxlen )
  40.     LOCAL cNewStr AS STRING
  41.     cString := trim( cString )
  42.  
  43.     IF len( cString ) > nMaxlen
  44.        nMaxlen := nMaxlen - 5
  45.        cNewStr := left(cString, nMaxlen/2 )
  46.        cNewStr := cNewStr + " ... "
  47.        cNewStr := cNewStr + right(cString, int( (nMaxlen/2+0.5) ) )
  48.     ELSE
  49.        cNewStr := untrim( cString, nMaxlen )
  50.     ENDIF
  51.     return(cNewStr)
  52.  
  53.  
  54.  2. User Group Meeting:  Windows in 60 Minutes  (*New Meeting Place*)
  55.     -----------------------------------------------------------------------
  56.     ReplyTo:  Les Squires 73020,3435  or >INTERNET:LSquires@world.std.com
  57.     Meeting:  March 15, 1994, 6:30 p.m.
  58.     Place:    101 First Avenue, Suite 2, Waltham, MA 02154
  59.  
  60.     We'll pass out a 500 record DBF at our meeting.  Any developer who
  61.     wants to participate is invited to MAKE SOMETHING WINDOWS.  Any
  62.     software (dbFAST, Microsoft Access, Paradox, Fox, Gupta SQL Windows,
  63.     Visual Basic, even Visual Objects for Clipper).  See earlier issues of
  64.     BCNN for more details.
  65.  
  66.  
  67.  3. The Transition From Clipper To Visual Objects:  Learn OOPs Concepts.
  68.     -----------------------------------------------------------------------
  69.     ReplyTo: Chris Pels [73777,3562]
  70.     Date:    April 19, 1994, 6:30 p.m.
  71.  
  72.     "Visual Objects promises to be the object-oriented Clipper that
  73.     programmers have been waiting and clamoring for the last couple of
  74.     years.  Users of OOPs extensions to Clipper like SuperClass and
  75.     Class(y) will find the transition easier.  Get hold of one of these
  76.     products and begin designing objects now." (Clipper Advisor,
  77.     March/April 1994, p.48).
  78.  
  79.     Whether you intend to use the upcoming CA-Visual Objects for Windows
  80.     development or another product, it will be vital to understand the
  81.     basic concepts of Object Oriented Programming (OOP).  The object
  82.     paradigm will transcend almost all aspects of computing in the years to
  83.     come, from programming to data storage.
  84.  
  85.     For our April meeting I will present a practical, example based
  86.     introduction to doing OOP with Clipper 5.2c and Class(y) 2.0d. The
  87.     goals will be to learn the basic concepts of OOP, realize the
  88.     advantages of OOP over procedural programming, and go home ready to
  89.     incorporate some OOP into existing applications. I will show and
  90.     distribute several classes that I am currently using in production
  91.     applications. The emphasis of the evening will be on when and how to
  92.     use objects. Class design and the mechanics of constructing a class
  93.     will be covered in the context of practical examples.
  94.  
  95.     The session will be highly interactive, oriented towards both new and
  96.     experienced object oriented programmers. Knowing more about OOP
  97.     concepts will make you a better programmer no matter what language you
  98.     use for programming!
  99.  
  100.     SPECIAL DEAL ON CLASS(Y)!
  101.  
  102.     As an incentive to go home and start using OOP with Clipper to prepare
  103.     for the future, today, AppSolutions will offer attendees of our April
  104.     meeting a special deal on Class(y) Version 2.0d.
  105.  
  106.     PLEASE READ AND FOLLOW THESE INSTRUCTIONS CAREFULLY SO THIS GOES
  107.     SMOOTHLY FOR ME<G>!
  108.  
  109.     Anyone attending the April 19, 1994 meeting can pre-order Class(y) for
  110.     $139 (includes shipping/delivery for pickup at April meeting only), 30%
  111.     off the $199 list price.  This price is contingent upon me placing one
  112.     bulk order.  Anyone providing an Email address will receive a
  113.     confirmation of their order on 4/2/94.
  114.  
  115.     WAYS TO ORDER:
  116.  
  117.     1.    In person at our 3/15/94 meeting (check or credit card).
  118.     2.    Electronically (credit card only).
  119.     3.    By mail (check or credit card).
  120.  
  121.     Chris Pels
  122.     Greenwich Bay Technologies
  123.     54 West St.
  124.     East Greenwich, RI 02818-3319
  125.  
  126.     ORDERS MUST BE RECEIVED BY 4/1/94 SO I CAN HAVE THE SOFTWARE AT OUR
  127.     APRIL MEETING! NO SOFTWARE WILL BE SHIPPED, YOU MUST COME TO THE
  128.     MEETING TO PICK IT UP.
  129.  
  130.     ------------------------------------------------------------------------
  131.     ORDER FORM (Class(y) 2.0):
  132.            Name:
  133.         Address:
  134.           Phone:
  135.           EMail:
  136.     Credit Card:                                Expiration:
  137.  
  138.     MAKE CHECKS PAYABLE TO AppSolutions, Inc. ($139 US).
  139.  
  140.     Finally, If you really need to call me:  401-885-2815.
  141.  
  142.  
  143.  4. *NEW SERVICE* Announcement of Local User Group News World-Wide.
  144.     -----------------------------------------------------------------------
  145.     ReplyTo:     Les Squires bcnn@world.std.com  [73020,3435]
  146.  
  147.     Email your selection of one UGID (103537, 103888, 101658, etc.) from
  148.     the following list to receive monthly announcements of what's happening
  149.     in your city (every month your President emails an announcement).  For
  150.     example, say '103537-Yes' in the SUBJECT:  or the body of your email.
  151.  
  152.     UGID   Participating Group Name/President/IDs                  Location
  153.     -----------------------------------------------------------------------
  154.     103863 Clipper Club Hamburg                             Hamburg/Germany
  155.            Max Bressel           100112,3401 fido:2:240/5300 +49-40-7661290
  156.     103864 Clipper Developers' Association of Toronto       Toronto, Canada
  157.            John Ball                                           [72060,3716]
  158.     100051 Clipper Expert Group                  Johannesburg, South Africa
  159.            Russel Stromin                     [70334,2353]  +27 11 442 4550
  160.     103873 Clipper Meeting Frankfurt                      Frankfurt/Germany
  161.            Ronald B. Knecht                     [71307,1624] +49-6103-53278
  162.     101669 Clipper User Group (Melbourne)              Melbourne, Australia
  163.            Steve Forbes                          [100033,2073] +613-5530938
  164.     103537 Connecticut CA-Clipper Users Group           Manchester, CT, USA
  165.            George L. Smith                      [71155,2543] (203) 645-8962
  166.     103888 Detroit Area Clipper Users Group (D.A.C.U.G.)    Detroit, MI USA
  167.            Leo Benchich                                        [70451,3613]
  168.     101658 Houston Clipper User Group                       Houston, TX USA
  169.            David Vukovic                                       [71520,1310]
  170.     100483 Mobile Software User Group                        Mobile, AL USA
  171.            George Rae                             [71760,3562] 205-342-8360
  172.     102689 North Carolina Clipper User Group  Research Triangle Park,NC USA
  173.     100494 San Francisco Bay Area Clipper Dev. Assn.  San Francisco, CA USA
  174.            Yau-Man Chan  ymchan@uclink.berkeley.edu 510-229-3277 70731,3523
  175.     102691 SFDDG CA-Clipper/CA-VO SIG                         Miami, FL USA
  176.            Willy Esteban           72740,1440 W:305-599-9609 F:305-599-9610
  177.     103532 SouthEast Clipper Developers Association     Montgomery, Alabama
  178.            Brian Abbott                         [73304,2663] (205) 244-7840
  179.     101612 Washington Area Clipper Users Group       Washington DC Area USA
  180.            Gerald E. Nelson                        76467,3030  703-471-7919
  181.  
  182.  
  183.  5. Position Available: Technical Support/Application Consultant.     * $ *
  184.     -----------------------------------------------------------------------
  185.     ReplyTo:   Advocate Software/ASG
  186.                92 Montvale Avenue
  187.                Stoneham, MA 02180
  188.     Fax:       617-279-1009
  189.     Email:     73234,2301
  190.     Code:      TSAC
  191.  
  192.     Advocate Software provides Fund Raising and Membership Management
  193.     software to prestigious nonprofits through the United States and
  194.     Canada.  Advocate is written in Clipper, using object-based technology
  195.     and the Xbase file system running in a PC network environment.  The
  196.     company was started in 1986 and was acquired by Applications Systems
  197.     Group in 1992.
  198.  
  199.     The Application Consultant position provides implementation support
  200.     including project management, conversion of programming and software
  201.     configuration on new and upgrading installations.  This position works
  202.     with other staff and clients to accomplish these tasks.  Position acts
  203.     as backup telephone support.  Some travel and significant Clipper
  204.     experience required.
  205.  
  206.     Please indicate the job code, and mail, e-mail, or FAX your resume.
  207.  
  208.  
  209.  6. Clipper Developers Guide to Windows (Special Report from BCS).
  210.     -----------------------------------------------------------------------
  211.     ReplyTo:   Darren J. Forcier  >INTERNET:djf@world.std.com
  212.     Download:  BCFORC.ZIP, GO CLIPPER, Lib 17
  213.     Available: March 15-20th
  214.  
  215.     The BCS group has published the results of its February meeting, a
  216.     'white paper' presentation by Darren Forcier on programming solutions
  217.     available to us as Clipper developers.  The paper surveys 1) Clip4Win
  218.     1.2 from Skelton Software/Grumpfish's Clipper->Windows library, 2)
  219.     Dolce Vita (With Craig Yellick's La Strada programming guide), and 3)
  220.     From DOS - A cool library for integrating Windows services into DOS
  221.     applications.  Sample programs are included in the ZIP.
  222.  
  223.  
  224.  7. Developer Tip:  Microsoft and More 1.1.
  225.     -----------------------------------------------------------------------
  226.     ReplyTo:   Erik J. Thomas  73124.2160@CompuServe.COM
  227.  
  228.     I have received over thirty responses to the letter you published in
  229.     last month's xBase newsletter regarding my switching from Clipper to
  230.     FoxPro.  Most of them were to ask for my opinion on what the best
  231.     Windows package between FoxPro, Access, Visual Basic, and Paradox.
  232.  
  233.     You might want to let your readers know there is a company called CD
  234.     Select (1-800-446-1185) which will send a free CD-ROM that contains
  235.     over 64 software packages for test driving. These applications are
  236.     fully functional and can be unlocked and installed onto your system
  237.     with a password from CD Select, should you decide to buy.
  238.  
  239.     Included on the "Microsoft and More 1.1" CD:
  240.  
  241.        Microsoft FoxPro 2.5 for Windows
  242.        Microsoft FoxPro 2.5 Library Construction Kit
  243.        Microsoft Access for Windows
  244.        Microsoft Visual Basic for Windows Professional and Standard Edition
  245.        Microsoft Visual C++ for Windows Professional and Standard Edition
  246.  
  247.     Your readers can find out for themselves which is the better package
  248.     for their needs--with no risk! Unfortunately, you need a CD-ROM drive--
  249.     but heck, just about everyone has one nowadays I'm told!
  250.  
  251.  
  252.  8. ODBC and Client Server: A New Standard for Database Connectivity.
  253.     -----------------------------------------------------------------------
  254.     ReplyTo: Chris Pels [73777,3562]
  255.     ReplyTo: Les Squires bcnn@world.std.com  [73020,3435]
  256.  
  257.        Editor's Note.  In May, Les Squires plans to make a major
  258.        presentation on this subject.  He will use Microsoft Access 2.0 to
  259.        demonstrate critical changes for the development process.
  260.  
  261.     How will we interact with our data in the future?
  262.  
  263.     Client/server architecture is being used more widely today than ever
  264.     before and will most likely become the norm for much of our application
  265.     development in the not to distant future.  Developing applications with
  266.     a database server is a very different world from our DBF tables.  A new
  267.     standard is being touted/pushed by Microsoft for accessing data in
  268.     relational and non-relational DBMS systems called Open Database
  269.     Connectivity (ODBC).
  270.  
  271.     ODBC uses its own SQL dialect as well as any SQL dialect supported by
  272.     the target DBMS.  Because of Microsoft's clout in the industry you will
  273.     be dealing with ODBC in the near future, if you have not already.  A
  274.     very nice introductory article on ODBC was published in the February
  275.     22, 1994 edition of PC Magazine (p. 261-263). It provides a good
  276.     overview of ODBC from the developer's perspective and I highly
  277.     recommend reading it.
  278.  
  279.     It is vital for our future survival as application developer's to learn
  280.     to use ODBC/SQL/client server data access in our applications.
  281.     Fortunately, there are several products that will allow you to "try
  282.     out" ODBC/SQL/client server without having to take out a second
  283.     mortgage.  All of these are Windows products so you will need a
  284.     reasonably powerful computer.  Microsoft Access database engine uses
  285.     ODBC/SQL calls which is a gently introduction into the ODBC world using
  286.     either Microsoft Access or Visual Basic 3.0.  If you want to go to a
  287.     full featured SQL engine Watcom is currently running a great deal on
  288.     it's single user version of SQL for Windows.
  289.  
  290.     The PC Magazine review of Client Server/SQL (10/12/93) said "Watcom SQL
  291.     is an especially good choice for those new to client/server databases".
  292.     The list price special $395 directly from Watcomm (800-265-4555) and
  293.     Programmer's Shop (800-544-8732) has been running a special of $295.
  294.     Either price is a bargain for having a real client server environment
  295.     as a learning tool. Even if you do not use it for any production
  296.     applications it's the cheapest and probably best way to learn a real
  297.     client server environment. Beware, it is addictive and it may be hard
  298.     to go back to the simple DBF tables <g>.
  299.  
  300.  9. Technicon'93 Notes:  A Communications Tip.
  301.     -----------------------------------------------------------------------
  302.     ReplyTo:   Steve Gray [70650,2005].
  303.  
  304.     Ira Emus of Extrasensory and author of Telepathy say's don't use
  305.     XON/XOFF, use RTS/CTS if possible.  Use Zmodem or if machine to machine
  306.     or using compression modems ymodem/g may be the best. A 286/8 will
  307.     support higher transmission speeds that an 386/25 with Qemm loaded
  308.     because Qemm (et.al.) takes interrupts. I purchased Telepathy (and
  309.     their PS/error product as well).
  310.  
  311.  
  312. 10. Technicon'93 Notes:  Tip on Advanced Network Programming.
  313.     -----------------------------------------------------------------------
  314.     ReplyTo:   Steve Gray [70650,2005].
  315.  
  316.     Duplicate key search takes a long time.  By adding a string made up of
  317.     the RECNO() it will speed up.  For example, index on Company +
  318.     STR(RECNO(),7) instead of just Company.
  319.  
  320.  
  321. 11. Technicon'93 Notes:  BandIT - Report Generator.
  322.     -----------------------------------------------------------------------
  323.     ReplyTo:  Mark Bolzern [GCS&WGS] <71630.3505@CompuServe.COM>
  324.  
  325.     BandIT is a superset of R&R Report Writer, comes with complete Clipper
  326.     Source code, Reads R&R files, and is linkable into applications.  It
  327.     neatly overcomes most of R&R's shortcomings.  What a neat third party
  328.     add-on.  This can relieve you from all sorts of coding headaches, and
  329.     it seems that no user can ever have enough reports.  Now you have an
  330.     easy way to satisfy these users.
  331.  
  332.  
  333. 12. Technicon'93 Notes:  Improving Application Performance by Mark Elias.
  334.     -----------------------------------------------------------------------
  335.     ReplyTo:   Richard Simon [71141,2515]
  336.  
  337.     Improve performance for network applications by using local EXEs.
  338.     Using Novell's WSUPDATE command in the login script can be made to
  339.     update the user's local C drive with the most up to date program EXEs
  340.     stored in a file server application directory.  Here's the syntax:
  341.  
  342.     WSUPDATE <<masterfilespec>>  <<localfilespec>> /C
  343.  
  344.  
  345. 13. Technicon'93 Notes:  Licensing and Contracting Software.
  346.     -----------------------------------------------------------------------
  347.     ReplyTo:   Jay Forrest <73707.2010@CompuServe.COM>
  348.  
  349.     The presentation by CA's VP of Legal Affairs was almost worth the price
  350.     of Technicon.  Key concepts were NEVER, EVER SELL software or code as
  351.     software is an intellectual property and not a commodity. This is
  352.     important and the software lawyers have fought for that designation. As
  353.     a result the code can be sold only once, and once sold you have no
  354.     right to use any portion of the code you sold. As one person said,
  355.     "Isn't this just minor semantics?" to which he replied, "Semantically
  356.     the difference is minor. Legally it is enormous!"  Strive he suggested
  357.     for unlimited perpetual license to replace sale (where sale is
  358.     demanded), but if you supply code be sure to get reasonable
  359.     confidentiality clauses to protect you from their giving your code to
  360.     your competitor.
  361.  
  362.     He also suggested offering to people who demand "sale" the concept that
  363.     your programs use proven routines you developed and to sell them the
  364.     program would deprive you of the right to use the tools that give you
  365.     your position in the business and effectively put you out of business,
  366.  
  367.  
  368. 14. Technicon'93 Notes:  Optimizing Your Execution Environment
  369.     -----------------------------------------------------------------------
  370.     ReplyTo:  Mike Herrick [100116,444]
  371.  
  372.     o  Avoid loading ANSI.SYS and SETVER
  373.     o  Avoid SET COMSPEC=.....
  374.     o  Problems with SHARE.EXE generally stem from insufficiently high
  375.        values for the /F and /L parameters.
  376.     o  Don't use the NOIDLE switch
  377.     o  Increasing no of files is minimal overhead
  378.     o  Enabling BADCACHE is likely to correct unpredictable errors
  379.        stemming from corrupt page frame.
  380.  
  381.  
  382. 15. Opportunities for Developers in Russia.
  383.     -----------------------------------------------------------------------
  384.     ReplyTo: Steve Kerr <stkerr@u.washington.edu>
  385.     ReplyTo: Alexander Iu. Uvarov  auvarov@glas.apc.org
  386.              ul. Chkalova, 12/7, kv. 11
  387.              Moscow 103064
  388.              7-095-227-8634 (home)
  389.              7-095-193-7090 (office)
  390.              7-095-943-0040 (fax)
  391.  
  392.     One of my contacts in Russia is a fellow named Alexander Uvarov.  He's
  393.     a computer scientist and specialist in networks, formerly affiliated
  394.     with one of the Biology research institutes and now a member of the
  395.     Scientific Council on Cybernetics of the Russian Academy of Sciences.
  396.     Very bright guy, and very energetic.
  397.  
  398.     Alexander has started, on his own, to move into the area of computer
  399.     training and development of software for same.  He's done some modest
  400.     packages, and sold some of them in Spain.  He'd be interested in
  401.     collaborating with Americans who might want to try a foray into the
  402.     Russian market, but who might not be confidant of their ability to
  403.     discern the "lay of the land."  My estimate, by the way, is that the
  404.     market is large and growing.  There are a good many computers around
  405.     now -- mostly IBM clones, but a growing number of Macs -- and a lot of
  406.     software, but also a lack of people trained to use it.  I saw an
  407.     amazing number of very sophisticated (in other ways) users who were
  408.     completely unaware of how to use basic application programs.
  409.  
  410.     Uvarov is on e-mail, and uses it regularly.  His English is fine.
  411.     I have worked with him for five years and can vouch for his honesty and
  412.     integrity, as well as his general smarts and management acumen.
  413.  
  414.  
  415. 16. Letter to the Editor:  Flagship and Clipper.
  416.     -----------------------------------------------------------------------
  417.     ReplyTo: Glen Webster [70754,2612]
  418.              Robert G. Freeman
  419.              Mark Blomberg
  420.              C.R. Anthony, Inc.
  421.              Oklahoma City, Oklahoma
  422.  
  423.     We are a Clipper/Flagship developer as well as a subscriber to BCNN. We
  424.     would be interested in following any news relating to Flagship.
  425.  
  426.     We have used Flagship to convert our existing Clipper code from a DOS
  427.     environment to a SCO Xenix environment. We found it to be the only
  428.     product that would do the conversion, with few changes to the original
  429.     source.
  430.  
  431.     Mark and Robert developed the new software in only a few months. This
  432.     was after Mark had messed around with another package for months, just
  433.     trying to get it to work.
  434.  
  435.     Flagship has allowed us to create software accross platforms (DOS,
  436.     Xenix) and has allowed us to remove the DOS PC's from our retail
  437.     outlets (190 stores in the midwest). This allows for easier
  438.     maintenance, polling of transactional data from the general office host
  439.     system and also allowed us to get out of a rather expensive service
  440.     contract arrangement.
  441.  
  442.     We support FlagShip, and hope to see BCNN do the same.
  443.  
  444.  
  445. 17. Opportunities for Developers to Make Money:  NT versu OS/2.
  446.     -----------------------------------------------------------------------
  447.     ReplyTo: Ron Dennis <76247.2606@CompuServe.COM>
  448.  
  449.     Thanks for the great BCNN Newsletter, Les.  I was very interested in
  450.     your comments re: NT versu OS/2.  I'm doing a project for MS Solution
  451.     Providers about NT and what opportunities are available to application
  452.     integrators to be successful with it.  Mostly I've found "Rightsizing
  453.     Downward" opportunities, like replacing AS/400 solutions with micros
  454.     and client server applications.
  455.  
  456.     Do you have any thoughts about opportunities for developers to make
  457.     money installing Win NT and Advanced Server?
  458.  
  459.     Lots of people seem to think that "A year from now" NT will be a big
  460.     player in the server and client server markets.  Any way consultants
  461.     can get a client in on the ground floor of this phenomenon and still
  462.     deliver a cost effective and dependable application?
  463.  
  464.     Editor's Note.  That's a question for everybody.  Feel free, Ron, to
  465.     share people's answers in a future BCNN.
  466.  
  467.  
  468. 18. Technicon'93 Notes:  .CH Files.
  469.     -----------------------------------------------------------------------
  470.     ReplyTo: "Dave Rolston 72160,2475" <72160.2475@CompuServe.COM>
  471.  
  472.     Did you know .CH files work from the bottom up?  Put you most specific
  473.     information at the bottom and the most general at the top of your .CH
  474.     files (or modifications of an existing one).
  475.  
  476.  
  477. 19. UART Follow-up
  478.     -----------------------------------------------------------------------
  479.     ReplyTo:    Wilfried A Faulkner, 71670,2050
  480.     ResponseTo: Chris Pels, 73777,3562 (BCNN, February, 1994).
  481.  
  482.     I read your contribution in BCNN about the UART 16550 chip and the BOCA
  483.     card.  I can only sustain your findings.  I myself have a BOCA 2x4 with
  484.     four serial and two parallel ports and noticed a significant increase
  485.     in speed.  However, unless you also replace the standard Windows
  486.     COMM.DRV with something that takes advantage of the UART chip, you
  487.     still don't realize the full benefits of the chip.
  488.  
  489.     You can use TurboCom/2 from Pacific Comm-Ware which will blow your
  490.     socks off.  Or you can try KingCOM which I hear also has a replacement
  491.     for the standard COMM.DRV.  The latter is second hand information and I
  492.     don't vouch for its correctness.
  493.  
  494.  
  495. 20. BCNN Statement of Ownership, Copyright, and Responsibility.
  496.     ----------------------------------------------------------------------
  497.     The BCNN Newsletter is sponsored by the xBASE User Group of the Boston
  498.     Computer Society.  BCNN is dedicated to keeping professional database
  499.     developers (both consultants and corporate employees) informed about
  500.     educational events, meetings, job openings, world events, notable
  501.     articles, technical tips, new and 'must have' products, etc.
  502.  
  503.     As an electronic network BCNN is also a hub where developers can
  504.     address world class issues to fellow developers around the world.
  505.     Recipients agree to respond via Email to periodic polls of their
  506.     directions, opinions, and needs. For those who do not have User Groups
  507.     in their areas, BCNN is a vehicle where individuals can volunteer and
  508.     contribute to something larger than themselves.  Over 5,400 persons
  509.     world-wide participate with CA-Clipper and Microsoft Access.
  510.  
  511.     The newsletter is distributed monthly by electronic mail via CompuServe,
  512.     Internet, FidoNet, and other electronic gateways.  It is free of charge
  513.     to individual developers.  Modest fees are charged to corporations for
  514.     job placement and third-party announcements.  Opinions expressed are
  515.     solely expressed by the authors or by the Xbase Language Group of the
  516.     Boston Computer Society, even in cases where 'Xbase Language Group'
  517.     is abbreviated to 'BCS'.  All materials are copyrighted by the BCS,
  518.     unless otherwise indicated, and free for any user group to
  519.     redistribute on their own BBS on the condition that a by-line
  520.     referencing the BCNN and the individual author are included.
  521.  
  522.     Les Squires, Director
  523.     Xbase User Group
  524.     c/o Word Jenny, Incorporated
  525.     P. O. Box 126
  526.     29 Brick Kiln Road, Kilnwood
  527.     Center Harbor, New Hampshire 03226-0126 USA
  528.     603-253-6109                  //-Primary Phone & Messages 24 hours
  529.     603-253-7214                  //-Messages Only 24 hours
  530.     603-253-9864                  //-Fax 24 hours a day
  531.     INTERENT:bcnn@World.Std.Com   //-First choice for Email.
  532.     CIS:73020,3435                //-Second choice for Email.
  533.  
  534.     Boston Computer Society, Inc.
  535.     101 First Avenue, Suite 2
  536.     Waltham, MA 02154
  537.     617-290-5700  General Number
  538.     617-290-5700  Ext. 432 for up-to-date meeting information.
  539.  
  540.     Add Subscribers:        @BCNN@ClipperYes to bcnn@World.Std.Com.
  541.     Delete Subscribers:     @BCNN@ClipperNo  to bcnn@World.Std.Com.
  542.     Back Issues:            CompuServe CLIPPER Forum, LIBS 1 and 17.
  543.                             FTP samba.iss.uw.edu.pl (CD pub/clipper/bcnn)
  544.  
  545.     BCNN Email Services donated by Word Jenny, Inc. LSquires@World.Std.Com
  546.  
  547.     (c) 1994 Boston Computer Society, Inc.
  548.