home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a087 / 1.ddi / README2.TXT < prev    next >
Encoding:
Text File  |  1994-02-02  |  45.2 KB  |  1,266 lines

  1.                        README.TXT
  2. **********************************************************
  3.                    Release Notes for
  4.  
  5.     Microsoft(R) FoxPro(R) for Windows(TM) Version 2.5b
  6.  
  7.     (C)1993 Microsoft Corporation. All Rights Reserved.
  8.  
  9. Information in the FoxPro online Help is more current than
  10. information in the printed documentation. This README
  11. provides information not contained in the FoxPro online
  12. help or documentation, and provides corrections to both.
  13. **********************************************************
  14. ========
  15. CONTENTS
  16. ========
  17.  
  18. Part   Description
  19. ----   -----------
  20.  
  21. 1      How to View Accented Characters in this README
  22. 2      Sample Files and FoxTools Documentation
  23. 3      New Commands and Functions
  24. 4      _MEMVARMASK
  25. 5      New Transporter and Screen Directives
  26. 6      MODIFY COMMAND/FILE/MEMO Enhancements
  27. 7      WAIT...WINDOW Enhancements
  28. 8      International and Cross Platform Recommendations
  29. 9      Documentation Corrections
  30. 10     Installation Questions and Answers
  31. ----------------------------------------------------------
  32. ======================================================
  33. Part 1: How to View Accented Characters in this README 
  34. ======================================================
  35.  
  36. This README file contains accented characters. To properly
  37. display these accented characters, open this README in the
  38. Notepad text editor included with Microsoft Windows or in
  39. the FoxPro for Windows text editor with an ANSI font
  40. (Courier, FixedSys, MS Sans Serif and so on).
  41. ----------------------------------------------------------
  42. ===============================================
  43. Part 2: Sample Files and FoxTools Documentation
  44. ===============================================
  45.  
  46. Sample files and the FoxTools library documentation are
  47. included with FoxPro for Windows. These files are in the
  48. FOXPROW\GOODIES subdirectory and are installed in a
  49. compressed form to save hard disk space. To unpack these
  50. files, open the File Manager and double-click
  51. ALLUNPAK.BAT in the FOXPROW\GOODIES subdirectory.
  52.  
  53. ALLUNPAK.BAT creates a FOXTOOLS subdirectory that contains
  54. FOXTOOLS.WRI, the documentation for the FoxTools library,
  55. and sample programs that utilize the FoxTools library.
  56.  
  57. Note: You may use the bitmaps in GOODIES\BITMAPS or
  58. modified versions of them in your applications. However,
  59. you cannot make and sell copies of the bitmaps or any
  60. portion of the bitmaps contained in the GOODIES\BITMAPS
  61. subdirectory.
  62. ----------------------------------------------------------
  63. ==================================
  64. Part 3: New Commands and Functions 
  65. ==================================
  66.  
  67. Several commands and functions are new to
  68. FoxPro 2.5b. For additional information about these
  69. commands and functions, see the "International and Cross
  70. Platform Recommendations" section below and the
  71. corresponding topics in Help.
  72.  
  73. New Commands
  74. ------------
  75.  
  76. SET NOCPTRANS
  77. SET COLLATE
  78.  
  79. New Functions
  80. -------------
  81.  
  82. CPCURRENT()
  83. CPDBF()
  84. CPCONVERT()
  85. IDXCOLLATE()
  86. ----------------------------------------------------------
  87. ===================
  88. Part 4: _MEMVARMASK 
  89. ===================
  90.  
  91. Menus you created in FoxPro 2.5 that included 
  92. expressions may not have behaved properly when the spell
  93. checker or graph wizard were active.
  94.  
  95. SKIP FOR expressions typically depend on the value of
  96. skip variables, but the skip variables were not visible to
  97. your menus when the spell checker or graph wizard was
  98. active in FoxPro 2.5. In the initialization code of the
  99. spell checker and graph wizard applications (SPELLCHK.APP
  100. and GENGRAPH.APP respectively), PRIVATE ALL is
  101. intentionally issued. This hides skip variables from
  102. user-defined menus and causes a "Variable not found" error
  103. when you make a menu choice.
  104.  
  105. To correct this situation in FoxPro 2.5b, the following
  106. code is added to the beginning of the spell checker
  107. and graph wizard applications:
  108.  
  109. IF TYPE("_memvarmask") = "C" and !EMPTY(_memvarmask)
  110.     PRIVATE ALL EXCEPT &_memvarmask
  111. ELSE
  112.     PRIVATE ALL
  113. ENDIF
  114.  
  115. Suppose a certain menu option should be skipped when the 
  116. memory variable named "skipvar" evaluates to true. In
  117. FoxPro 2.5b you should include the following lines in your
  118. menu startup code to take advantage of the _MEMVARMASK
  119. variable:
  120.  
  121. PUBLIC _memvarmask  
  122. _memvarmask = "skipvar"   
  123. STORE .T. TO skipvar             && Skip initially.
  124.  
  125. To create a set of skip variables, include the following 
  126. lines in your menu startup code:
  127.  
  128. PUBLIC _memvarmask  
  129. _memvarmask = "skip*"   
  130. STORE .T. TO skipthis, skipthat  && Skip initially.
  131.  
  132. When you execute the spell checker and graph wizard, they
  133. don't hide variables in SKIP FOR expressions, preventing 
  134. the "Variable not found" errors you may have experienced 
  135. in FoxPro 2.5.
  136.  
  137. Note that _MEMVARMASK isn't a system memory variable.
  138. ----------------------------------------------------------
  139. =============================================
  140. Part 5: New Transporter and Screen Directives 
  141. =============================================
  142.  
  143. Several new Transporter and screen directives have been
  144. added.
  145.  
  146. The #DOSOBJ, #MACOBJ, #UNIXOBJ and #WINOBJ  
  147. Transporter directives allow you to transport objects
  148. created in the Screen Builder and Report Writer to 
  149. specific FoxPro platforms. For additional information 
  150. about these Transporter directives, see the Transporting 
  151. Files topic in Help.
  152.  
  153. #TRAN SNIPPET ONLY, a new screen directive, is available
  154. in FoxPro 2.5b. This screen directive affects how screen
  155. objects are transported, and is not discussed in Help.
  156. #TRAN SNIPPET ONLY is designed to limit the Transporter's
  157. changes to just screen snippets, and is placed in
  158. a screen's Setup snippet.
  159.  
  160. When screen objects are transported to a different FoxPro
  161. platform, only the screen snippets for updated screen
  162. objects are transported if #TRAN SNIPPET ONLY is included.
  163. All other screen object attributes are not transported to
  164. the different platform. 
  165.  
  166. Note that #TRAN SNIPPET ONLY only affects updated screen
  167. objects; it does not affect new or unchanged screen
  168. objects or screen objects being transported for the first
  169. time.
  170. ----------------------------------------------------------
  171. ===============================================
  172. Part 6: MODIFY COMMAND/FILE/MEMO Enhancements 
  173. ===============================================
  174.  
  175. A new option, NOMENU, is available in FoxPro for Windows
  176. for the MODIFY COMMAND, MODIFY FILE and MODIFY MEMO commands.
  177. If you include NOMENU, the Text menu pad is removed from the 
  178. FoxPro System menu bar, preventing changes to the font, 
  179. font size, line spacing and indentation. The spell checker 
  180. is also not available.
  181. ----------------------------------------------------------
  182. ================================
  183. Part 7: WAIT WINDOW Enhancements 
  184. ================================ 
  185.  
  186. WAIT WINDOW now supports multiple line messages. Use a
  187. carriage return (CHR(13)) to move portions of your message
  188. to additional lines. The message window is automatically
  189. expanded to accommodate the additional lines. For example,
  190. this command creates a message window that contains two
  191. lines:
  192.  
  193. WAIT WINDOW "This is the 1st line" + CHR(13) + ;
  194.     "This is the 2nd line"
  195.  
  196. The width of the message window is adjusted to fit the
  197. longest line in the message. All lines in the message are
  198. left-justified in the message window. Line feeds (CHR(10))
  199. following CHR(13) are ignored.
  200. ----------------------------------------------------------
  201. =========================================================
  202. Part 8: International and Cross Platform Recommendations 
  203. ========================================================= 
  204.  
  205.                    *** IMPORTANT ***
  206.  
  207. *******************************************************
  208. *  Be sure to read this section completely before you *
  209. *  change code pages or collation sequences!          *
  210. *******************************************************
  211.  
  212. Overview of topics
  213.  
  214. 1   FoxPro Collation Sequences
  215. 2   Case-Insensitive Collation Sequences
  216. 3   Case-Sensitive Collation Sequences
  217. 4   How do the SEEK and SKIP commands work?
  218. 5   Alternatives to SEEK and SKIP
  219. 6   Additional Recommendations
  220. 7   New Code Pages
  221. 8   CPZERO Program
  222. 9   Corrections to the Help File
  223.  
  224. FoxPro 2.5b gives international developers and users
  225. powerful new features for handling accented characters
  226. across different FoxPro platforms, and provides 
  227. accurate sorting in many languages.
  228.  
  229. For international FoxPro users, this section describes
  230. how code pages and collation sequences affect sorting,
  231. seeking and comparisons using the SORT and SEEK commands,
  232. and also provides recommendations for taking advantage
  233. of these features.
  234.  
  235. U.S. FoxPro users whose applications don't contain
  236. accented characters may not need any of the new
  237. international 2.5b features. In this case, you can
  238. disregard this section of the README and the
  239. International/X-Platform topic in Help. FoxPro 2.5b is
  240. 100% percent compatible with FoxPro 2.5.  
  241.  
  242. 1 FoxPro Collation Sequences
  243. ----------------------------
  244.  
  245. With a MACHINE collation sequence, which earlier FoxPro
  246. versions use (and to which FoxPro 2.5b still defaults),
  247. each character in the code page, whether it's a Roman
  248. character, an accented character, or a line-drawing
  249. character, has a unique "sort weight" determined by its
  250. position in the code page. In a majority of code
  251. pages, all accented characters appear after the unaccented
  252. characters. In this situation an Σ sorts after z, which
  253. isn't correct in most languages (although it is true in
  254. Swedish, for instance).
  255.  
  256. Furthermore, in most languages accented characters sort
  257. after their unaccented counterparts, but only if the
  258. unaccented versions of all characters being compared are
  259. the same. For example, in German, Σ sorts after the
  260. unaccented a, but the string Σa sorts before the string ab
  261. because the second character a is less than the second
  262. character b. In this way, characters are interleaved in
  263. many cultures.
  264.  
  265. FoxPro 2.5b supports a number of new collation sequences
  266. to correctly sort in many languages. These sequences take
  267. into account all the complex rules of the language
  268. (including two-to-one, three-to-one and one-to-two
  269. mappings). The following collation sequences were
  270. available when this README was created. The code pages
  271. for which these collation sequences are defined are also
  272. included.
  273.  
  274. Collation Sequence   Friendly Name    Code Pages
  275. ------------------   -------------    ----------
  276. CZECH                Czech            852, 895, 1250            
  277. DUTCH                Dutch            437, 850, 1252
  278. GREEK                Greek            737, 1253            
  279. GENERAL              General          437, 620, 850,
  280.                                       852, 861, 865,
  281.                                       895, 1250, 1252,
  282.                                       10000            
  283. HUNGARY              Hungarian        852, 1250            
  284. ICELAND              Icelandic        437, 850, 861,
  285.                                       1252
  286. MACHINE              Machine          All            
  287. NORDAN               Norwegian/Danish 437, 850, 865,
  288.                                       1252    
  289. POLISH               Polish           620, 852, 1250            
  290. RUSSIAN              Russian          866, 1251            
  291. SLOVAK               Slovak           852, 895, 1250            
  292. SPANISH              Spanish          437, 850, 1252
  293. SWEFIN               Swedish/Finnish  437, 850, 1252
  294. UNIQWT               Unique Weight    437, 850, 1252,
  295.                                       10000    
  296. If you specify a collation sequence in the SET COLLATE
  297. command as a string literal, enclose the collation
  298. sequence in quotation marks. Don't enclose the collation
  299. sequence in quotation marks if you specify a collation
  300. sequence in your FoxPro configuration file (CONFIG.FP or
  301. CONFIG.FPW).
  302.  
  303. If you use the SET COLLATE command to specify a collation 
  304. sequence that isn't supported by the current code page, 
  305. FoxPro generates an error. If you specify a collation 
  306. sequence in your FoxPro configuration file that isn't 
  307. supported by the current code page, the collation sequence 
  308. defaults to MACHINE.
  309.  
  310. If you specify a collation sequence in the International
  311. panel in the View window, the collation sequence names 
  312. appear in longer forms. For example, the NORDAN option 
  313. appears as Norwegian & Danish, and the SWEFIN option 
  314. appears as Swedish & Finnish.
  315.  
  316. For additional information about collation sequences, see
  317. SET COLLATE in Help.
  318.  
  319. 3 Case-Sensitive Collation Sequences
  320. ------------------------------------
  321.  
  322. Two case-sensitive collation sequences are available in
  323. FoxPro: the familiar MACHINE sequence, the default
  324. sequence in earlier FoxPro versions, and the sequence
  325. named UNIQWT. UNIQWT is a "unique weight" sort in which 
  326. each accented character sorts strictly after its 
  327. unaccented counterpart (unlike the interleaving of 
  328. accented characters described earlier).
  329.  
  330. While the collation sequence with UNIQWT isn't strictly
  331. culturally correct as with GENERAL, it may aid developers
  332. in migrating their applications from earlier FoxPro
  333. versions. One reason is that upper- and lower-case letter
  334. are treated distinctly as they were in earlier FoxPro
  335. versions. Another reason is described in the section
  336. titled "How do the SEEK and SKIP commands work?"
  337.  
  338. 4 How do the SEEK and SKIP commands work?
  339. -----------------------------------------
  340.  
  341. The SEEK command accepts an expression. FoxPro transforms
  342. that expression into a sort key which it compares to
  343. keys in the master index or tag. SEEK then positions the 
  344. record pointer at the first index entry that's greater 
  345. than or equal to ( >= ) the supplied key.
  346.  
  347. With a machine sort, SEEK finds a match if there is one.
  348. The UNIQWT sort has the same property. But when FoxPro
  349. uses the new language-specific collation sequences to
  350. create indexes, only the alphabetic part of the key is
  351. considered and any diacritical marks are ignored. In other
  352. words, even if you SEEK "Σbc" you may find "abc". Note
  353. that partial searches (where you search for part of the
  354. field) using SEEK may not return the results you expect
  355. when the current collation sequence is not MACHINE or
  356. UNIQWT.
  357.  
  358. FoxPro behaves this way for the following three reasons:
  359.  
  360. 1) Performance.
  361.  
  362. 2) Consistency with the SKIP command.
  363.  
  364. 3) Consistency with the SET NEAR command.
  365.  
  366. To have SEEK and SKIP find only those records that exactly
  367. match accented characters, you must either SET EXACT ON or
  368. use an index tag created with the MACHINE or UNIQWT
  369. collation sequences. 
  370.  
  371. Note that SEEK and SKIP use the collation sequence of the
  372. master index or tag, and ignore the current collation
  373. sequence. SEEK can't be used unless there is an index is
  374. active.  
  375.  
  376. 5 Alternatives to SEEK and SKIP
  377. -------------------------------
  378.  
  379. If you use accented characters, use one of the following
  380. methods to search a table:
  381.  
  382. 1) Construct a loop with SCAN FOR ... ENDSCAN.
  383.  
  384. 2) Use LOCATE FOR ... CONTINUE. 
  385.  
  386. LOCATE and SCAN use an index if one is active, and
  387. they have two very significant advantages over SEEK when
  388. data contains accented characters.
  389.  
  390. First, both LOCATE and SCAN remember the condition with
  391. which they were invoked, so they can be used for looping
  392. on a condition. SEEK, on the other hand, simply positions
  393. you somewhere in the index, and SKIP continues down the
  394. index from that point. With international data, this may
  395. not give you the results you want.
  396.  
  397. Second, LOCATE and SCAN are diacritically-sensitive,
  398. whereas SEEK isn't. In addition, both LOCATE and SCAN can
  399. be fully optimized by Rushmore if the current collation
  400. sequence is MACHINE or UNIQWT; otherwise partial
  401. optimization will occur.
  402.  
  403. The ORDER BY clause of the SQL SELECT command uses the
  404. current collating sequence, which is returned by
  405. SET("COLLATE")).
  406.  
  407. 6 Additional Recommendations
  408. ----------------------------
  409.  
  410. 1) If you aren't concerned with indexing accented
  411. characters in a language-specific way, feel free to
  412. continue to use machine indexes. For many U.S. users,
  413. this is appropriate.
  414.  
  415. 2) For the best performance when using a collation
  416. sequence other than MACHINE or UNIQWT, be sure that the
  417. current collation sequence is the same as the collation
  418. sequence of any indexes you are using.
  419.  
  420. 3) Most international users will want accented characters
  421. in all fields to be translated automatically by FoxPro
  422. when running cross-platform applications. However, if you
  423. have a table with a character field that's actually 
  424. storing binary information (data), the SET NOCPTRANS 
  425. command allows you to inform FoxPro that characters
  426. in such a field should not be translated. 
  427.  
  428. Binary data might otherwise be changed, because of
  429. FoxPro's "nearest" character mapping.  For characters such
  430. as the MS-DOS line-drawing characters, FoxPro maps to the
  431. "nearest" character in the destination code page.
  432.  
  433. If you choose to use SET NOCPTRANS, you must do so
  434. immediately after issuing the USE command. From that
  435. point on, FoxPro's automatic character translation is
  436. not in effect for any fields you designate. In particular, 
  437. you must issue the SET NOCPTRANS command before issuing 
  438. a SQL SELECT command -- you cannot let SQL SELECT open
  439. tables for you if the tables contain fields which should
  440. not be translated.
  441.  
  442. Note that SET NOCPTRANS only operates on fields for the
  443. table open in the currently selected work area.  If you
  444. close a table and then open the table again, you must
  445. reissue SET NOCPTRANS and designate the fields which
  446. should not be translated.
  447.  
  448. 4) If you create cross platform applications, you should
  449. avoid using FoxFont. FoxFont is an OEM MS-DOS font that
  450. you may find useful in some situations. But if you use
  451. FoxFont in an application you create in FoxPro for
  452. Windows, some of the characters in the application may
  453. not transport correctly to other FoxPro platforms.
  454.  
  455. Furthermore, FoxFont won't correctly display characters
  456. typed on international Windows keyboards. If you have
  457. automatic code page translation enabled, FoxPro will
  458. display accented characters correctly.
  459.  
  460. FoxFont is the installed default font for the FoxPro
  461. desktop. FoxFont is the default font for user-defined
  462. windows created with DEFINE WINDOW when the FONT clause
  463. is omitted. Be sure to include the FONT clause when
  464. creating user-defined windows in FoxPro for Windows.
  465.  
  466. FixedSys is the default font for the Command, Trace and
  467. Debug windows if you're using Windows 3.1. Text editor
  468. windows default to the current Command window font. 
  469.  
  470. 5) FoxPro 2.5b can automatically translate accented
  471. characters in most files types such as .DBF, .SCX, and
  472. .FXP files. However, program (.PRG) and text (.TXT) files
  473. don't have a header and can't be marked with a code page.
  474. Therefore, FoxPro must assume that a program or text file
  475. was designed for use on the platform on which it is
  476. opened.
  477.  
  478. It's important that you compile each program on the 
  479. platform on which it was written. Since compiled programs 
  480. (.FXP files) have a header, once you compile a program, it 
  481. can be run on any FoxPro platform and accented characters 
  482. in the original source program are automatically 
  483. translated when automatic code page translation is in 
  484. effect.
  485.  
  486. 6) Do not mix programs created on different FoxPro
  487. platforms in a project. The Project Manager assumes that
  488. all programs and tables in a project are native to the
  489. current FoxPro platform. If you create an application or
  490. an executable from a project that contains programs
  491. created on different FoxPro platforms, translation of
  492. accented characters in the programs might not be
  493. translated properly.
  494.  
  495. Also, within the Project Manager you can't specify the
  496. platform on which a program or text file was created.
  497. Therefore, in the Project Manager don't edit programs or
  498. tables created on a FoxPro platform other than the current 
  499. platform.  This means that you shouldn't double-click on a
  500. file to open it in the Project Manager if you've enabled
  501. automatic translation by including CODEPAGE = AUTO in 
  502. your FoxPro configuration file.
  503.  
  504. If you create an application that contains files created
  505. on different FoxPro platforms, do not open the files for
  506. editing from within the Project Manager.
  507.  
  508. However, once you build an application (.APP file), it
  509. will run on any FoxPro platform and FoxPro can
  510. automatically translate accented characters.
  511.  
  512. 7) If you have a project created in FoxPro for MS-DOS
  513. version 2.0 and the files within the project contain 
  514. accented characters, you can share the project and 
  515. its files across different FoxPro platforms by performing
  516. the  following steps to convert the project and its files.
  517. This conversion is required just once, and enables cross 
  518. platform sharing of all the elements of the project.
  519.  
  520. a) Open the project in FoxPro for MS-DOS 2.5b or FoxPro
  521.    for Windows 2.5b. A dialog appears, asking if you would 
  522.    like to convert the project to a 2.5 format. Choose 
  523.    Yes, then close the project.
  524.   
  525. b) Open every screen, report, label, menu and table
  526.    contained in the project with the USE command. You are 
  527.    prompted for the code page (437, 850 and so on) on 
  528.    which each was created. Specify the MS-DOS code page 
  529.    on which each was built and then choose Yes.
  530.  
  531. c) Use MODIFY COMMAND or MODIFY FILE and include the
  532.    AS clause to open EVERY program, query, format file
  533.    or text file contained in the project. In the AS
  534.    clause, specify the code page (437, 850 and so on)
  535.    of the FoxPro platform on which each was created.
  536.    Choose the Save As option from the File menu and choose
  537.    the Change Code Page check box.  In the dialog that
  538.    appears after you choose Save, specify the code page
  539.    for the FoxPro platform on which the file will be used.
  540.  
  541. 8) If you're developing a cross-platform application,
  542. avoid using characters that appear in one code page and
  543. not another. For example, the MS-DOS line drawing
  544. characters aren't supported under Windows, so avoid using
  545. them in screens you plan to transport between FoxPro for
  546. MS-DOS and FoxPro for Windows.
  547.  
  548. You can use CHR() if your application absolutely requires
  549. line drawing and accented characters. Output from CHR()
  550. isn't translated when the function is executed, allowing
  551. you to output any character.
  552.  
  553. 9) The MS-DOS file system is case-insensitive and requires
  554. uppercase file names. If your applications run on FoxPro
  555. for MS-DOS, be sure to restrict file names to those
  556. characters that have uppercase equivalents in your MS-DOS
  557. code page.
  558.  
  559. For example, code page 437 doesn't contain uppercase
  560. versions of several accented vowels. These characters
  561. can't be safely used in a FoxPro file name. It's best
  562. to avoid accented characters in file names.
  563.  
  564. 7 New Code Pages
  565. ----------------
  566.  
  567. The following code pages are now supported:
  568.  
  569. Code Page       Platform
  570. ---------       --------
  571. 437             U.S. MS-DOS
  572. 737             Greek MS-DOS (437G)
  573. 620             Mazovia (Polish) MS-DOS
  574. 850             International MS-DOS
  575. 852             EE MS-DOS (Latin II)
  576. 861             Icelandic MS-DOS
  577. 865             Nordic MS-DOS
  578. 866             Russian MS-DOS
  579. 895             Kamenicky (Czech) MS-DOS
  580. 1250            Windows EE
  581. 1251            Russian Windows
  582. 1252            Windows ANSI
  583. 1253            Greek Windows
  584. 10000           Standard Macintosh
  585.  
  586. Byte 29 in table headers contains the code page identifier.
  587. The following table lists the code page and the
  588. corresponding code page identifier in hex.
  589.  
  590. Code Page       Code Page Identifier
  591. ---------       --------------------
  592. 437             x01
  593. 737             x6A
  594. 620             x69
  595. 850             x02
  596. 852             x64
  597. 861             x67
  598. 865             x66
  599. 866             x65
  600. 895             x68
  601. 1250            xC8
  602. 1251            xC9
  603. 1252            x03
  604. 1253            xCA
  605. 10000           x04
  606.  
  607. 8 CPZERO Program
  608. ----------------
  609.  
  610. If you accidentally specify the wrong code page when
  611. you open a table that isn't marked with a code page, run
  612. CPZERO.PRG to reset the table's code page to zero. CPZERO
  613. is a FoxPro program that is automatically installed in
  614. your FoxPro directory. Before you run CPZERO, make sure
  615. that the table whose code page you'll reset isn't open.
  616. When you run CPZERO, you are prompted for the name of the 
  617. table to modify.  
  618.  
  619. 9 Corrections to the Help File
  620. ------------------------------
  621.  
  622. Configuring FoxPro and International/X-Platform Topics
  623. ------------------------------------------------------
  624.  
  625. These FoxPro 2.5b help file topics contain the following
  626. line:
  627.  
  628. "Note that MODIFY STRUCTURE also marks a table with the
  629. current code page."  
  630.  
  631. This line is incorrect and should read:
  632.  
  633. "Note that MODIFY STRUCTURE doesn't mark a table with the
  634. current code page. Rather, it preserves the table's 
  635. existing code page mark." 
  636.  
  637. International/X-Platform Topic
  638. ------------------------------
  639.  
  640. This help file topic contains the following line:
  641.  
  642. For example, if the current collation sequence is GENERAL,
  643. both of these return true (.T.):
  644.  
  645.     "Stra▀e" = "Strasse"
  646.  
  647.     and
  648.  
  649.     "Stra▀e" == "Strasse"
  650.  
  651. "Stra▀e" == "Strasse" will always return .F., not .T. as
  652. it states in this topic. A strict machine comparison is
  653. performed by ==. All characters in each string are
  654. compared, including trailing blanks. For more information
  655. about comparisons using = and ==, see SET EXACT in the
  656. Language Reference or the FoxPro help facility.
  657. ----------------------------------------------------------
  658. =================================
  659. Part 9: Documentation Corrections 
  660. =================================
  661.  
  662. DDEExecute()
  663. ------------
  664.  
  665. The syntax for DDEExecute() is incorrect on page L3-363 
  666. of the Language Reference manual and in the Help file. The
  667. correct syntax is:
  668.  
  669.    DDEExecute(<expN>, <expC1>[, <expC2>])
  670.  
  671. The <expC2> parameter is the name of a user-defined
  672. function (UDF). There is no format parameter in this
  673. function.
  674.  
  675. APPEND GENERAL
  676. --------------
  677.  
  678. The second example on page D13-24 of the Developer's Guide
  679. isn't correct and will cause an error. Microsoft Word 
  680. doesn't support linking.
  681. ----------------------------------------------------------
  682. ===========================================
  683. Part 10: Installation Questions and Answers
  684. ===========================================
  685.  
  686. Overview of Questions
  687.  
  688. 1   What is the easiest way to install FoxPro on a network?
  689. 2   What kind of user rights do I need to install FoxPro 
  690.     on the network?
  691. 3   Why are workstation users on our network unable to use
  692.     the graphing and spell checker features in FoxPro?
  693. 4   During installation I was asked to select either
  694.     DOS-style keystrokes or Windows-style keystrokes. 
  695.     Which should I choose?
  696. 5   What is the minimum DOS files setting for FoxPro for 
  697.     Windows?
  698. 6   Does FoxPro for Windows update any Dynamic Link 
  699.     Libraries (DLLs) in the Windows subdirectory where 
  700.     system files are kept?
  701. 7   I accidentally deleted some of the FoxPro sample files.
  702.     Can I reinstall these files without reinstalling 
  703.     FoxPro? 
  704. 8   My computer is having difficulty reading the FoxPro 
  705.     disks because of an alignment problem with the floppy 
  706.     drives. Is there another option for installation?
  707. 9   I'm trying to install FoxPro for Windows under Windows 3.0
  708.     and I'm getting the message "Cannot write VER.DLL."  
  709.     Any suggestions?
  710. 10  I'm having difficulty installing FoxPro. I've tried
  711.     streamlining both my CONFIG.SYS and AUTOEXEC.BAT and I
  712.     still can't install FoxPro for Windows. What should I 
  713.     do?
  714. 11  Can I put a common WIN.INI file up on the server?
  715. 12  What is the best way to edit the WIN.INI file?
  716. 13  If I modify my WIN.INI file, is it advisable to 
  717.     restart Windows?
  718. 14  Can I delete the ~MSSTFQF.T directory?
  719. 15  I get the error message "Insufficient memory" when
  720.     trying to load FoxPro for Windows. What setting needs
  721.     to be modified?
  722. 16  My computer is running with 4 MB of RAM. How large a
  723.     swap file do I need?
  724. 17  When using my LANtastic network card, why do I always
  725.     get a memory conflict when loading FoxPro for Windows?
  726. 18  When using a Paradise driver, I get a memory conflict
  727.     when trying to load FoxPro for Windows. What should I
  728.     do?
  729. 19  When I use QEMM386 memory manager with FoxPro for
  730.     Windows, I get a memory conflict. What should I do?
  731. 20  When I use the Mach32 video card with my Gateway 2000,
  732.     I get a General Protection Fault in module MACH32.DRV
  733.     at 0003:0E22. What should I do?
  734. 21  I understand that a number of video drivers don't work
  735.     properly with FoxPro for Windows. Why is this and what
  736.     steps should I take to resolve the situation?
  737. 22  I occasionally experience problems when trying to open
  738.     more than 15 tables at one time. What could be wrong?
  739. 23  I'm running Windows for Workgroups. Do I need to load
  740.     the MS-DOS SHARE program?
  741. 24  Where does FoxPro create temporary files?
  742. 25  I frequently use the RUN command to change drives and
  743.     directories within an application. Why isn't this
  744.     working in FoxPro for Windows?
  745. 26  Why isn't FoxPro registered in REG.DAT within Windows?
  746. 27  Why doesn't the value returned by SYS(2010) match the
  747.     FILES setting in the CONFIG.SYS file?
  748. 28  What memory allocation options are available with the
  749.     Windows PIF Editor settings?
  750. ----------------------------------------------------------
  751.  
  752. Question 1
  753.  
  754. What is the easiest way to install FoxPro on a network?
  755.  
  756. Answer 1
  757.  
  758. In a network environment you must first install FoxPro on
  759. the server and then set up each workstation. Installation
  760. on the server is called an Administrative Setup, for which
  761. you use the /A installation switch. This option
  762. decompresses all FoxPro for Windows files and Setup
  763. files. FoxPro for Windows files will be read-only on the
  764. network drive.
  765.  
  766. To perform an Administrative Setup, choose Run... from the
  767. Windows Program Manager File menu. When the Run dialog 
  768. appears, type A:\SETUP /A or B:\SETUP /A (depending on the
  769. floppy drive you are using) in the Command Line box. Press
  770. Enter and proceed with the installation. You will be
  771. prompted for your user information and an installation
  772. directory, default drive, path name, and do on. For more 
  773. detailed information refer to "Instructions for 
  774. Administrative Setup" in the FoxPro for Windows
  775. Installation and Configuration manual.
  776.  
  777. Installation on individual workstations is called
  778. Workstation Setup, for which you use the /N installation
  779. switch. Workstation Setup requires a previous 
  780. Administrative Setup. The Workstation Setup copies FoxPro 
  781. initialization files, updates some common .DLL files, and 
  782. creates a Program Manager group and an icon on each 
  783. workstation to run a shared network version of FoxPro 
  784. for Windows.
  785.  
  786. You can perform the workstation setup in two ways: from 
  787. the network or from disk. To install from a network drive, open
  788. the Windows File Manager and then open a window with the
  789. correct network path for FoxPro for Windows and double-
  790. click SETUP.EXE. Choose the Workstation Installation 
  791. button in the Installation Type dialog box. To install 
  792. from disk, type A:\SETUP /N or B:\SETUP /N in the Run 
  793. dialog Command Line box, then press Enter. For more 
  794. detailed information refer to "Instructions for 
  795. Workstation Setup" in the FoxPro for Windows
  796. Installation and Configuration manual.
  797. ----------------------------------------------------------
  798.  
  799. Question 2
  800.  
  801. What kind of user rights do I need to install FoxPro on 
  802. the network?
  803.  
  804. Answer 2
  805.  
  806. You need full system rights to install on the network.
  807. Contact your system administrator for further information
  808. about your specific installation.
  809. ----------------------------------------------------------
  810.  
  811. Question 3
  812.  
  813. Why are workstation users on our network unable to use the
  814. graphing and spell checker features in FoxPro?
  815.  
  816. Answer 3
  817.  
  818. Workstation users need access to the MSGRAPH and PROOF
  819. subdirectories in order to use these features. Contact
  820. your system administrator regarding user access to these
  821. subdirectories.
  822. ----------------------------------------------------------
  823.  
  824. Question 4
  825.  
  826. During installation I was asked to select either DOS-style
  827. keystrokes or Windows-style keystrokes. Which should I
  828. choose?
  829.  
  830. Answer 4
  831.  
  832. If you aren't sure which style to use, select Windows-
  833. style keystrokes. Windows-style keystrokes correspond to 
  834. standard Windows keystrokes. MS-DOS-style keystrokes cause 
  835. FoxPro for Windows to behave like FoxPro for MS-DOS. 
  836. Later, if you want to use MS-DOS-style keystrokes, add the 
  837. line KEYCOMP = DOS to your CONFIG.FPW file. For more 
  838. information about the styles of keystrokes, see the SET 
  839. KEYCOMP command in the FoxPro Language Reference manual 
  840. or Help.
  841. ----------------------------------------------------------
  842.  
  843. Question 5
  844.  
  845. What is the minimum DOS files setting for FoxPro for 
  846. Windows?
  847.  
  848. Answer 5
  849.  
  850. The DOS FILES command should be set to 40 or higher. 
  851. Buffers should be set to at least 25, or to 10 if you are 
  852. using a disk cache. During installation, Setup checks your 
  853. CONFIG.SYS file. If your FILES setting is less than 40, a 
  854. dialog gives you three choices: have Setup make the 
  855. modifications for you, have Setup make the 
  856. modifications after you have reviewed and edited the 
  857. changes, or allow you to make the modifications later. 
  858. If you allow Setup to modify your CONFIG.SYS file, your 
  859. old file is saved as CONFIG.OLD or as CONFIG.001 if 
  860. CONFIG.OLD already exists. For more information, see 
  861. "Customizing FoxPro" in the Installation and Configuration 
  862. manual.
  863. ----------------------------------------------------------
  864.  
  865. Question 6
  866.  
  867. Does FoxPro for Windows update any Dynamic Link Libraries
  868. (DLL files) in the Windows subdirectory where system files 
  869. are kept?
  870.  
  871. Answer 6
  872.  
  873. Yes. The following DLL files are updated: COMMDLG.DLL,
  874. DDEML.DLL, OLECLI.DLL, OLESVR.DLL, SHELL.DLL, TOOLHELP.DLL
  875. and VER.DLL.
  876.  
  877. The FoxPro graphing capabilities require that GRAPH.EXE
  878. and GRAPH.HLP be stored in the Windows subdirectory
  879. \MSAPPS\MSGRAPH.
  880.  
  881. FoxPro spell checking capabilities require that
  882. MSSPELL.DLL, MSSP_AM.LEX, and MSSP_BR.LEX be
  883. stored in the Windows subdirectory \MSAPPS\PROOF.
  884. ----------------------------------------------------------
  885.  
  886. Question 7
  887.  
  888. I accidentally deleted some of the FoxPro sample files.
  889. Can I reinstall these files without reinstalling FoxPro?
  890.  
  891. Answer 7
  892.  
  893. Yes. Run Setup again and select the Custom Installation
  894. option from the Installation Type dialog. With this option
  895. box, you choose which components to install.
  896. ----------------------------------------------------------
  897.  
  898. Question 8
  899.  
  900. My computer is having difficulty reading the FoxPro disks
  901. because of an alignment problem with the floppy drives. 
  902. Is there another option for installation?
  903.  
  904. Answer 8
  905.  
  906. Try copying all the files to a directory on your hard disk
  907. and then install from the hard disk.
  908. ----------------------------------------------------------
  909.  
  910. Question 9
  911.  
  912. I'm trying to install FoxPro for Windows under Windows 3.0
  913. and I'm getting the message "Cannot write VER.DLL." Any
  914. suggestions?
  915.  
  916. Answer 9
  917.  
  918. Rename the VER.DLL file in the Windows System subdirectory.
  919. ----------------------------------------------------------
  920.  
  921. Question 10
  922.  
  923. I'm having difficulty installing FoxPro. I've tried
  924. streamlining both my CONFIG.SYS and AUTOEXEC.BAT and I
  925. still can't install FoxPro for Windows. What should I do?
  926.  
  927. Answer 10
  928.  
  929. First of all, don't try to install from within a third-
  930. party replacement shell, such as Norton Desktop. Make 
  931. sure you use the Windows Program Manager shell. To specify 
  932. the Program Manager shell, change the SYSTEM.INI line
  933.  
  934. SHELL = <some other shell> 
  935.  
  936. to 
  937.  
  938. SHELL = PROGMAN.EXE
  939.  
  940. Next, make certain you have disabled all TSRs, including
  941. anti-virus software. Check the WIN.INI file for the
  942. LOAD = and RUN = lines. Comment these lines out using a
  943. semicolon (;).
  944. ----------------------------------------------------------
  945.  
  946. Question 11
  947.  
  948. Can I put a common WIN.INI file up on the server?
  949.  
  950. Answer 11
  951.  
  952. No. Each workstation has its own WIN.INI file.
  953. ----------------------------------------------------------
  954.  
  955. Question 12
  956.  
  957. What is the best way to edit the WIN.INI file?
  958.  
  959. Answer 12
  960.  
  961. You can edit the WIN.INI file with Notepad or EDIT.EXE in
  962. MS-DOS 5.0.
  963. ----------------------------------------------------------
  964.  
  965. Question 13
  966.  
  967. If I modify my WIN.INI file, is it advisable to restart
  968. Windows?
  969.  
  970. Answer 13
  971.  
  972. Yes. As a general rule, always restart Windows when you
  973. have modified the WIN.INI file. There are some
  974. exceptions, but if you are trouble-shooting you want to
  975. be certain that all changes are reflected in the current
  976. environment.
  977. ----------------------------------------------------------
  978.  
  979. Question 14
  980.  
  981. Can I delete the ~MSSTFQF.T directory?
  982.  
  983. Answer 14
  984.  
  985. Yes. The ~MSSTFQF.T directory is created during setup.
  986. Ordinarily this directory is deleted at the end of the
  987. installation process.
  988. ----------------------------------------------------------
  989.  
  990. Question 15
  991.  
  992. I get the error message "Insufficient memory" when trying
  993. to load FoxPro for Windows. What setting needs to be
  994. modified?
  995.  
  996. Answer 15
  997.  
  998. Add a MEMLIMIT statement to your CONFIG.FPW file. The
  999. syntax for this statement is:
  1000.  
  1001. MEMLIMIT = %, min, max
  1002.  
  1003. The % argument is a calculated amount based on available
  1004. memory and min and max represent actual minimum and maximum
  1005. allocations.
  1006.  
  1007. For example, the following statement allocates 80 percent
  1008. of your system's available memory to FoxPro with a minimum
  1009. allocation of 1024K and a maximum of 4096K:
  1010.  
  1011. MEMLIMIT = 80, 1024, 4096.
  1012.  
  1013. ----------------------------------------------------------
  1014.  
  1015. Question 16
  1016.  
  1017. My computer is running with 4 MB of RAM. How large a swap
  1018. file do I need?
  1019.  
  1020. Answer 16
  1021.  
  1022. Use a 2 MB permanent swap file for virtual memory and
  1023. don't include a MEMLIMIT setting in the CONFIG.FPW file.
  1024. If you are running multiple programs simultaneously, it
  1025. may be necessary to specify a swap file larger than 2 MB.
  1026. Let FoxPro run with the default setting. In addition, do
  1027. not use a RAM drive or an expanded memory manager.
  1028. Expanded memory isn't used by FoxPro for Windows. A disk
  1029. cache should be no larger than 256K.
  1030. ----------------------------------------------------------
  1031.  
  1032. Question 17
  1033.  
  1034. When using my LANtastic network card, I always get a 
  1035. memory conflict when loading FoxPro for Windows. What 
  1036. should I do?
  1037.  
  1038. Answer 17
  1039.  
  1040. Try using the following line in the SYSTEM.INI file in
  1041. the Windows directory:
  1042.  
  1043. EMMExclude = D800-DFFF
  1044.  
  1045. ----------------------------------------------------------
  1046.  
  1047. Question 18
  1048.  
  1049. When using a Paradise driver, I get a memory conflict when
  1050. trying to load FoxPro for Windows. What should I do?
  1051.  
  1052. Answer 18
  1053.  
  1054. Try using the following line in the SYSTEM.INI file in
  1055. the Windows directory:
  1056.  
  1057. EMMExclude = C600-C800
  1058.  
  1059. ----------------------------------------------------------
  1060.  
  1061. Question 19
  1062.  
  1063. When I use QEMM386 memory manager with FoxPro for Windows,
  1064. I get a memory conflict. What should I do?
  1065.  
  1066. Answer 19
  1067.  
  1068. Try using the following line in the SYSTEM.INI file in
  1069. the Windows directory:
  1070.  
  1071. EMMExclude = C0FF-C7FF
  1072.  
  1073. ----------------------------------------------------------
  1074.  
  1075. Question 20
  1076.  
  1077. When I use the Mach32 video card with my Gateway 2000, I
  1078. get a General Protection Fault in module MACH32.DRV at
  1079. 0003:0E22. What should I do?
  1080.  
  1081. Answer 20
  1082.  
  1083. You are experiencing a problem with your video driver.
  1084. Contact your video card vendor for the most recent version
  1085. of the driver. In the meantime, you can use the VGA.DRV
  1086. or the SUPERVGA.DRV drivers that come with Windows.
  1087. ----------------------------------------------------------
  1088.  
  1089. Question 21
  1090.  
  1091. I understand that a number of video drivers don't work
  1092. properly with FoxPro for Windows. Why is this and what
  1093. steps should I take to resolve the situation?
  1094.  
  1095. Answer 21
  1096.  
  1097. FoxPro for Windows makes intensive use of screen I/O. If 
  1098. you are experiencing General Protection Faults (GPFs) or 
  1099. display problems (borders, status bar, fonts, unusual 
  1100. alignment when previewing reports) you may be experiencing 
  1101. a problem with your video driver. To test this situation, 
  1102. load either the VGA or VGA version 3.0 drivers and go 
  1103. through the steps to reproduce the earlier problem. If the 
  1104. problem no longer exists when you are using a standard 
  1105. Windows driver, it's very likely that the old driver was 
  1106. the cause of the problem. Contact the vendor for an 
  1107. updated version of the driver or download the Windows 
  1108. Driver Library (WDL) on the Microsoft Download Service 
  1109. (MSDL). Complete instructions for obtaining the Windows 
  1110. Driver Library is contained in the Product Support section 
  1111. of this file.
  1112.  
  1113. We have identified problems with the following video 
  1114. cards:
  1115.  
  1116.    ATI Ultra Graphics Pro (local bus) -- caused GPF, fixed
  1117.      with update
  1118.    AST Power Premium 486 w/VGA on Motherboard -- fixed
  1119.      with update
  1120.    Genoa 7900 MM card
  1121.    Dell 486/20 with VGA on Motherboard
  1122.    Compaq QVision
  1123.    Speed Star 24x
  1124.    Trident 8900C
  1125.    TIGA 1024 x 768 x 256 small fonts
  1126.    NEC 2A
  1127.    MACH32
  1128.  
  1129. Contact your video card vendor for the most recent version
  1130. of the driver for your card. In the meantime, you can use
  1131. the VGA.DRV or the SUPERVGA.DRV drivers that come with
  1132. Windows.
  1133. ----------------------------------------------------------
  1134.  
  1135. Question 22
  1136.  
  1137. I occasionally experience problems when trying to open
  1138. more than 15 tables at one time. What could be wrong?
  1139.  
  1140. Answer 22
  1141.  
  1142. Make certain you have the correct SHARE statement in your
  1143. AUTOEXEC.BAT file:
  1144.  
  1145.    SHARE /F:4096 /L:500
  1146. ----------------------------------------------------------
  1147.  
  1148. Question 23
  1149.  
  1150. I'm running Windows for Workgroups. Do I need to load the
  1151. MS-DOS SHARE program?
  1152.  
  1153. Answer 23
  1154.  
  1155. No. Windows for Workgroups automatically loads VSHARE,
  1156. which takes the place of SHARE.
  1157. ----------------------------------------------------------
  1158.  
  1159. Question 24
  1160.  
  1161. Where does FoxPro create its temporary files?
  1162.  
  1163. Answer 24
  1164.  
  1165. FoxPro creates its temporary files in the same directory
  1166. where Windows stores its temporary files, unless you
  1167. specifically designate an alternate location by including
  1168. one or more of the EDITWORK, SORTWORK, PROGWORK and/or
  1169. TMPFILES statements in the CONFIG.FPW file. The location
  1170. of Windows .TMP files is specified with the MS-DOS set
  1171. variable TEMP. In most cases, you should let FoxPro write
  1172. .TMP files to the same location. However, if this
  1173. location is a RAM drive, make sure that enough space is
  1174. available for both FoxPro and Windows .TMP files.
  1175. ----------------------------------------------------------
  1176.  
  1177. Question 25
  1178.  
  1179. I frequently use the RUN command to change drives and
  1180. directories within an application. Why isn't this working
  1181. in FoxPro for Windows?
  1182.  
  1183. Answer 25
  1184.  
  1185. Each time you issue the RUN command to change drives and
  1186. directories, Windows opens a new session of MS-DOS,
  1187. otherwise known as a virtual machine, and executes the
  1188. command within the newly created session. When you exit
  1189. from this session or shut down the virtual machine, you
  1190. are right back where you started without having changed
  1191. drives. You should use FoxPro's own drive and directory
  1192. commands instead of using the RUN command. For example,
  1193. using SET DEFAULT TO C:\NEWDIR will actually issue the
  1194. MS-DOS command CHDIR.
  1195. ----------------------------------------------------------
  1196.  
  1197. Question 26
  1198.  
  1199. Why isn't FoxPro registered in REG.DAT within Windows?
  1200.  
  1201. Answer 26
  1202.  
  1203. Only OLE servers are registered in REG.DAT. FoxPro is
  1204. not an OLE server. It is an OLE client.
  1205. ----------------------------------------------------------
  1206.  
  1207. Question 27
  1208.  
  1209. Why doesn't the value returned by SYS(2010) match the
  1210. FILES setting in the CONFIG.SYS file?
  1211.  
  1212. Answer 27
  1213.  
  1214. Windows interacts with the MS-DOS open file tables in such
  1215. a way that the value reported in the MS-DOS box and in
  1216. Windows may be different.
  1217. ----------------------------------------------------------
  1218.  
  1219. Question 28
  1220.  
  1221. What memory allocation options are available with the
  1222. Windows PIF Editor settings?
  1223.  
  1224. Answer 28
  1225.  
  1226. In the PIF Editor "memory requirements" section the
  1227. "KB Required" and "KB Desired" may both be set to "-1".
  1228. This tells Windows to give all the available memory it
  1229. can to an MS-DOS application. This doesn't mean that the
  1230. MS-DOS application will have more than 600K, but it will
  1231. get about as much conventional memory as you had available
  1232. before starting Windows (minus some conventional memory
  1233. that Windows itself occupies).
  1234.  
  1235. Changing the "EMS Memory" and "XMS Memory" sections
  1236. tells Windows to provide or not provide the MS-DOS
  1237. application and EMS (Expanded Memory Services) or XMS
  1238. (Extended Memory Services). This won't, however, allow
  1239. an application that doesn't support accessing EMS or 
  1240. XMS to do so. Only applications that have the capability
  1241. will be able to access the additional memory provided. It
  1242. is important to note that once you tell Windows to create
  1243. EMS or XMS for an application, it does so whether the
  1244. application can use it or not.
  1245.  
  1246. In the "Execution" section, if Exclusive is selected, no
  1247. other application, be it Windows or MS-DOS, will run while
  1248. the application with Exclusive is the current application.
  1249.  
  1250. In the "Advanced Options" there is a "Multitasking 
  1251. Options" section. This section is very important when you 
  1252. are trying to get an MS-DOS application to run in the
  1253. background. If the MS-DOS application is very I/O
  1254. intensive (reads and writes to disk, asynchronous
  1255. communication, and do on) it will be necessary to increase 
  1256. the "Background Priority." Unfortunately there is no rule 
  1257. of thumb when it comes to the exact number that should be 
  1258. used. It's important to note that the larger the number 
  1259. for "Background Priority" the slower other applications 
  1260. will run while the MS-DOS application with the high 
  1261. priority is running in the background.
  1262.  
  1263. ----------------------------------------------------------
  1264.                    =================
  1265.                    End of README.TXT
  1266.                    =================