home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / BASIC / POWBASIC / LIBRARY1 / EXAMP2.ZIP / PB061190 < prev    next >
Text File  |  1990-06-11  |  7KB  |  192 lines

  1. all
  2. H#: 50710 S12/SPECTRA Publishing
  3.     07-Jun-90  09:49:36
  4. Sb: #50667-#PBPLUS96
  5. Fm: Bob Zale: PowerBASIC R&D 76304,1303
  6. To: Eric Pearson 71641,717 (X)
  7.  
  8. Yes, you could plug an ega or vga card into the Prospeed docking station, and
  9. PBPLUS96 will use it, instead.  I'd suggest you do that, for now. You know, the
  10. internal NEC video is not 100% vga compatible (almost, but . . .). We're
  11. looking at an alternative mode, but for now, your ega should work ok. Let me
  12. know what happens.  Thanks!\
  13.   Bob
  14.  
  15. There is 1 Reply.
  16.  
  17. Press <CR> for next or type CHOICES !
  18. H#: 50842 S12/SPECTRA Publishing
  19.     08-Jun-90  04:14:47
  20. Sb: #50710-PBPLUS96
  21. Fm: Eric Pearson 71641,717
  22. To: Bob Zale: PowerBASIC R&D 76304,1303 (X)
  23.  
  24.  I'll try it this weekend.  I'm not surprised that the NEC VGA card is not 100%
  25. compatible... the proprietary-slot modem isn't 100% Hayes-compatible, and the
  26. ProSpeed is 12K short of base memory (in spite of having EMS available) because
  27. of the "unusual" bios they use.
  28.  
  29.  -- Eric P.
  30.  
  31. Press <CR> for next or type CHOICES !
  32. H#: 50738 S12/SPECTRA Publishing
  33.     07-Jun-90  14:12:42
  34. Sb: #PB .EXE Files
  35. Fm: Bob Zale: PowerBASIC R&D 76304,1303
  36. To: Harry McDonald 74776,1017 (X)
  37.  
  38. PowerBASIC .EXE are identical in structure to any other .EXE files.  If not,
  39. DOS could not load and execute them.  They are a bit more compact than those
  40. created by the more popular linkers on the market, but they meet all the
  41. standard criteria as defined by MS-DOS/PC-DOS.
  42.   Bob Zale (PowerBASIC R&D)
  43.  
  44. There is 1 Reply.
  45.  
  46. Press <CR> for next or type CHOICES !
  47. H#: 50758 S12/SPECTRA Publishing
  48.     07-Jun-90  17:17:22
  49. Sb: #50738-PB .EXE Files
  50. Fm: Harry McDonald 74776,1017
  51. To: Bob Zale: PowerBASIC R&D 76304,1303 (X)
  52.  
  53. Thank you very much.  Harry
  54.  
  55. Press <CR> for next or type CHOICES !
  56. H#: 50859 S12/SPECTRA Publishing
  57.     08-Jun-90  06:07:44
  58. Sb: #PB HELP
  59. Fm: DOUG MILLER 73757,1300
  60. To:  76304,1303 (X)
  61.  
  62. BOB - I AM TRYING TO GET A SYSTEM OF PROGRAMS RUNNING WITH ONE SYSTEM SETUP
  63. PROGRAM AAND THEN CHAINING TO OTHER PROGRAMS ALSO INCLUDED IN THE PROGRAMS ARE
  64. DBLOW.BOX AND PW200.INC MY PROBLEM WAS GETTING ERROR 242 WHEN GOING TO THE
  65. CHAINED PROGRAMS I RECEIVED FROM RICK FOTHERGILL UPDATES 033090.PAT &
  66. 042090.PAT AND INSTALLED THOSE.  NOW RUNNING THE SAME PROGRAMS THAT ARE ALL
  67. COMPILED WITH THE UPDATED PB I AM NOW GETTING AN ERROR 203 WHICH REFERS TO THE
  68. COMMON STATEMENTS. THEY ARE ALL EXACTLY THE SAME BUT THE PROGRAM DOES HAVE A
  69. $SEGMENT IN IT DO I HAVE TO PUT ANOTHER COMMON STATEMENT AFTER THE SEGMENT IN
  70. THE SAME PROGRAM HELP ... DOUG
  71.  
  72. There is 1 Reply.
  73.  
  74. Press <CR> for next or type CHOICES !
  75. H#: 50874 S12/SPECTRA Publishing
  76.     08-Jun-90  07:20:49
  77. Sb: #50859-PB HELP
  78. Fm: Bob Zale: PowerBASIC R&D 76304,1303
  79. To: DOUG MILLER 73757,1300 (X)
  80.  
  81. Doug-
  82.   Sorry to hear you're still having a problem.  The $SEGMENT shouldn't have any
  83. effect at all.  PB creates a "checksum" based upon the sequence and types of
  84. the variables declared COMMON, and compares it to the same checksum when it
  85. CHAINS to a new program segment.  If they don't match --> error 203. That is
  86. the only way in which an error 203 should be generated. My first reaction would
  87. be that you have a "typo" in one of your COMMON statements, or that they have
  88. some very minor difference.  You might try removing all of your COMMONS from
  89. all programs, and put them into one separate file which you then $INCLUDE from
  90. each program.  That will guarantee no mismatch. You don't have a
  91. DEFINT/DEFLNG/etc. preceding any of the COMMONS do you?  That could cause a
  92. problem, too.
  93.   We have verified a possible problem with CHAIN in the current version. It
  94. seems that in larger CHAINED programs, execution may be incorrectly halted when
  95. there are a large number of non-COMMON string variables.  Although that isn't
  96. the symptom you're seeing, I would suggest you watch for and install the next
  97. "PATCH" program.  It should be available within a few days.
  98.   Why don't you try the $INCLUDE technique I mentioned, and let us know the
  99. results?  If that doesn't do it, we'll find some other way to help get you
  100. running.  Thanks!
  101.    Bob Zale (PowerBASIC R&D)
  102.  
  103. Press <CR> for next or type CHOICES !
  104. H#: 51149 S12/SPECTRA Publishing
  105.     10-Jun-90  01:19:23
  106. Sb: #EXECUTE
  107. Fm: B Jones 76166,2542
  108. To: All
  109.  
  110. Just thought I'd mention something I found when I first recieved PB (and isn't
  111. in the documentation).  The new 'EXECUTE' statement allows a command line to be
  112. passed to the program that you want to execute.  All you have to do is enter it
  113. the same as you would at the DOS prompt ..... i.e.  EXECUTE "myprog.exe stuff1
  114. stuff2 stuff3...".  It was something I was sort of hoping would be in PB, so I
  115. checked right away. (I hate having to use data files and/or common statements
  116. to pass a couple of variables, and although I do have a def fn to do it in TB
  117. this is MUCH nicer).
  118.  
  119. There is 1 Reply.
  120.  
  121. Press <CR> for next or type CHOICES !
  122. H#: 51172 S12/SPECTRA Publishing
  123.     10-Jun-90  08:28:53
  124. Sb: #51149-EXECUTE
  125. Fm: Barry Erick for Spectra 75300,214
  126. To: B Jones 76166,2542 (X)
  127.  
  128. Well, any EXECUTE statement should be expected to do that. Glad you're glad
  129. with that!
  130.    --Barry
  131.  
  132.  
  133.  
  134. Press <CR> for next or type CHOICES !
  135. H#: 51170 S12/SPECTRA Publishing
  136.     10-Jun-90  07:57:00
  137. Sb: Exiting Loops
  138. Fm: William McMullan 72040,3344
  139. To: Barry Erick for Spectra 75300,214 (X)
  140.  
  141. Hello Barry,
  142.        Thanks much for the info. I was afraid that I might be digging myself a
  143. deep hole, one that I might not be able to climb out of. It looks like Bob has
  144. created a forgiving program......Thanks, Willy
  145.  
  146.  
  147.  
  148.  
  149.  
  150. Press <CR> for next or type CHOICES !
  151. H#: 51265 S12/SPECTRA Publishing
  152.     10-Jun-90  20:56:07
  153. Sb: #Latest PB version
  154. Fm: richard haendel 72657,3036
  155. To: bob zale
  156.  
  157. What is the latest Power Basic version? Did the first release have problems?
  158.  
  159. There is 1 Reply.
  160.  
  161. Press <CR> for next or type CHOICES !
  162. H#: 51314 S12/SPECTRA Publishing
  163.     11-Jun-90  07:22:48
  164. Sb: #51265-Latest PB version
  165. Fm: Bob Zale: PowerBASIC R&D 76304,1303
  166. To: richard haendel 72657,3036
  167.  
  168. Richard--
  169.   The current revision of PowerBASIC is #2.00b.  If you are using #2.00a, the
  170. upgrade is yours for the asking.  Just contact Spectra Tech Support and ask for
  171. it.  Also, there are two revisions to improve #2.00b.  Just download the files
  172. PATCH1 and PATCH2 here in our library, and follow the very simple instructions.
  173. If this is inconvenient, they are also available from Spectra Tech Support. 
  174. You mi wish to also download the file PBNEWS regularly.  It will keep you up to
  175. date on all the latest PowerBASIC information.  Thanks!
  176.   Bob Zale (PowerBASIC R&D)
  177.  
  178. Press <CR> for next or type CHOICES !
  179. HPC Vendor B ForumHSections Menu
  180.  
  181. Section names (#subjs/# msgs)
  182.  1 Quarterdeck  (72/193)
  183.  2 Primavera Systems  (1/2)
  184.  3 Korenthal Assocs.  (3/9)
  185.  4 Personics Corp.  (21/86)
  186.  5 Quicksoft  (2/4)
  187.  6 TurboPower Software  (45/165)
  188.  8 DacEasy  (8/14)
  189. 10 J.P. Software  (27/117)
  190. 11 PDC Prolog  (11/26)
  191. 12 SPECTRA Publishing  (6/11)
  192. HEnter choice(s) or ALL !