home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / BASIC / POWBASIC / LIBRARY1 / EXAMP2.ZIP / PB092190 < prev   
Text File  |  1990-09-21  |  7KB  |  202 lines

  1. all
  2. H#: 66697 S12/SPECTRA Publishing
  3.     20-Sep-90  17:15:44
  4. Sb: #66663-PB Update
  5. Fm: Bob Zale: PowerBASIC R&D 76304,1303
  6. To: AL MUSELLA 76114,637 (X)
  7.  
  8. The PowerBASIC #2.10 upgrade includes disks, and a small "update" manual,
  9. labeled PowerBASIC "PowerPak".  In about twelve pages, it summarizes all of the
  10. differences from #2.00, which are also enumerated in the help system. If you
  11. didn't get this book, you're certainly missing something.  Of course, it
  12. appears you got another set of reference manuals instead.  They should not have
  13. been included in the $19 upgrade, but you'll now have extras.  If the small
  14. book is missing, please send an e-mail message to Tim at 71530,2640 and he'll
  15. see you get one.  My apologies!
  16.   Bob Zale (PowerBASIC R&D)
  17.  
  18. Press <CR> for next or type CHOICES !
  19. H#: 66712 S12/SPECTRA Publishing
  20.     20-Sep-90  18:54:14
  21. Sb: #wildcards for pbc
  22. Fm: AL MUSELLA 76114,637
  23. To: Mike Burns 71551,1353 (X)
  24.  
  25. Mike,
  26.    That should work, but if you use the SHELL command, you will not have enough
  27. memory to compile larger files.  My MAKE utility creates a batch file, which is
  28. run at the end of the program with the statement: EXECUTE "x.bat".
  29.    If you have only that 1 project to worry about, with constant filename, but
  30. occasionally update them, you may want to just create a plain batch file to
  31. compile them.  If they use units, use the MAKE utility in a batch file to
  32. insure that you only use up to date .pbu files.  If you just compilie them at
  33. random, you might compile an .exe file first, using an old .pbu file.
  34.                         Al 
  35.  
  36. There is 1 Reply.
  37.  
  38. Press <CR> for next or type CHOICES !
  39. H#: 66714 S12/SPECTRA Publishing
  40.     20-Sep-90  19:12:05
  41. Sb: #66712-wildcards for pbc
  42. Fm: Mike Burns 71551,1353
  43. To: AL MUSELLA 76114,637 (X)
  44.  
  45. Al,
  46.    Thanks for the reply. The system I was trying to compile
  47.  has about a dozen units and 20 .exe modules. I was looking for
  48.  a way to recompile all the .exes when a unit changed. SInce
  49.  I use pbplus96 , I rarely run out of space. I will be
  50.  downloading the MAKE pgm to test over the weekend. It sounds
  51.  like a prettyr good program.
  52.  
  53.       Thanks ---   Mike
  54.  
  55. ps.  I shelled to mapmem to see how much memory is lost and shelling
  56.      to pbc loses 74K. There must be a way to make it smaller...
  57.      Anyone..
  58.  
  59.  
  60.  
  61. Press <CR> for next or type CHOICES !
  62. H#: 66715 S12/SPECTRA Publishing
  63.     20-Sep-90  19:29:25
  64. Sb: #NET Lib
  65. Fm: Dan Robins 70007,3264
  66. To: Bob Zale 76304,1303 (X)
  67.  
  68. Bob,
  69.    I also have ordered the new 2.10 update....but in addition, got something in
  70. the mail that includes a "library?" which will allow network compatible
  71. programs to be developed.
  72.    Now.....the questions......the new upgrade include lock/unlock, etc. network
  73. type calls.....what does this new package offer that the new upgrade does not?
  74. And, can one get by without the $40 manual (although I know you guys need the
  75. money).
  76.    Dan
  77.  
  78. There is 1 Reply.
  79.  
  80. Press <CR> for next or type CHOICES !
  81. H#: 66781 S12/SPECTRA Publishing
  82.     21-Sep-90  07:27:14
  83. Sb: #66715-NET Lib
  84. Fm: Bob Zale: PowerBASIC R&D 76304,1303
  85. To: Dan Robins 70007,3264
  86.  
  87. Stop the presses!  I hope it wasn't too confusing, but it's all one and the
  88. same thing!  There is only ONE upgrade:  PowerBASIC #2.10.  It includes network
  89. support, and all of the other "goodies" we've mentioned before. If you are
  90. currently a PowerBASIC #2.00 user, the upgrade is $19.00.  In that case, you
  91. DON'T need a new doc set, so please don't pay for it!  The mailing you received
  92. went to Turbo Basic customers, as well as PowerBASIC users.  An upgrade from
  93. Turbo Basic (at $59.00) would require a new doc set, but certainly not you. 
  94. I'm very sorry if we didn't make this as clear as we should have.  Just to set
  95. the record straight:  If anyone orders the wrong upgrade by mistake, and pays
  96. $59.00 by mistake, just let us know and we'll arrange a prompt refund.
  97.   Bob Zale (PowerBASIC R&D)
  98.  
  99. Press <CR> for next or type CHOICES !
  100. H#: 66747 S12/SPECTRA Publishing
  101.     21-Sep-90  01:07:58
  102. Sb: #ARRAY SORT QUESTION
  103. Fm: George Green 70565,276
  104. To: [F] Bob Zale 76304,1303 (X)
  105.  
  106. Bob, etc..
  107.  This problem came up while trying to rder a large flexstring array, but the
  108. code below shows the same thing. Shouldn't the output sort the final element?
  109. When I run this the order is BCDEFGA. However if I add 1 to the variable PARS
  110. in the ARRAY SORT command, it works fine.
  111.  -George Green
  112.  ___________________________________________________________________
  113.  
  114.  DEFINT A-Z
  115.  CLS
  116.  
  117.  DIM PAR$(10)
  118.  
  119.    FOR X=71 TO 65 STEP -1     'PUT "G" -> "A" IN ARRAY
  120.                  INCR PARS
  121.                  PAR$(PARS)= CHR$(X)
  122.          NEXT X
  123.  
  124.  ARRAY SORT PAR$() FOR PARS
  125.  
  126.  FOR X= 1 TO PARS         'THIS LEAVES THE "A" ON BOTTOM, SEEMS LIKE IT
  127.    PRINT X;PAR$(X)        'SHOULD BE PLACED ON TOP
  128.  NEXT X                   'ADDING 1 TO PARS GET IT THO
  129.  
  130.  
  131.  
  132.  
  133. There are 2 Replies.
  134.  
  135. Press <CR> for next or type CHOICES !
  136. H#: 66780 S12/SPECTRA Publishing
  137.     21-Sep-90  07:18:20
  138. Sb: #66747-ARRAY SORT QUESTION
  139. Fm: Mike Burns 71551,1353
  140. To: George Green 70565,276
  141.  
  142. George,
  143.   You DIM'd the array as 10. This actually gives elements
  144.   0 thru 11. When you created the array you you assigned
  145.   values to elments 1 thru 7 (but not element zero). Later
  146.   you sorted PARS elements (7 elements). The computer sorted the
  147.   first 7 elements which happen to be elements 0 thru 6.
  148.   (NOT elements 1 thru 7).
  149.  
  150.   To make your example work correctly change the dim to
  151.   DIM PAR$(1:10)
  152.  
  153.   This will eliminate the zero element.
  154.  
  155.   Hope this helps --- Mike
  156.  
  157.  
  158. Press <CR> for next or type CHOICES !
  159. H#: 66787 S12/SPECTRA Publishing
  160.     21-Sep-90  07:36:38
  161. Sb: #66747-ARRAY SORT QUESTION
  162. Fm: Bob Zale: PowerBASIC R&D 76304,1303
  163. To: George Green 70565,276
  164.  
  165. I think Mike already answered your question correctly, George, but let me
  166. clarify it  a bit further.  When you DIM VAR(10), you create an array of eleven
  167. elements, starting with VAR(0), through VAR(10).  If you just alter the lower
  168. bound to one, as Mike suggested, [DIM VAR(1:10)], your program should run as
  169. you expect.
  170.   Bob Zale (PowerBASIC R&D)
  171.  
  172. Press <CR> for next or type CHOICES !
  173. H#: 66782 S12/SPECTRA Publishing
  174.     21-Sep-90  07:29:41
  175. Sb: Turbo DataBase Problem
  176. Fm: ken pon 71307,1171
  177. To:  76304,1303 (X)
  178.  
  179. Has anyone experienced the following problem with PowerBasic and the Turbo
  180. Database Toolboxes:
  181.  
  182.      I have a program that uses the Turbo Database Toolbox to add, edit
  183.      delete and search an information database, however whenver I use the
  184.      dbDelete routine, the program hangs after closing all files. It works
  185.      correctly if I don't leave it or don't use the delete function.
  186.  
  187. If you've seen this problem, I would appeciate your comments.
  188.  
  189. Press <CR> for next or type CHOICES !
  190. HPC Vendor B ForumHSections Menu
  191.  
  192. Section names (#subjs/# msgs)
  193.  1 Quarterdeck  (21/26)
  194.  3 Korenthal Assocs.  (1/2)
  195.  4 Personics Corp.  (10/16)
  196.  5 Quicksoft  (1/1)
  197.  6 TurboPower Software  (9/18)
  198.  8 DacEasy  (1/2)
  199. 10 J.P. Software  (9/11)
  200. 11 PDC Prolog  (2/3)
  201. 12 SPECTRA Publishing  (5/9)
  202. HEnter choice(s) or ALL !