home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / BASIC / POWBASIC / LIBRARY1 / EXAMP2.ZIP / PB052190 < prev    next >
Text File  |  1990-05-21  |  9KB  |  268 lines

  1. all
  2. H#: 46415 S12/SPECTRA Publishing
  3.     18-May-90  15:36:00
  4. Sb: #45866-Compiler out of memory
  5. Fm: Mason Landstreet 71220,1547
  6. To: Barry Erick for Spectra 75300,214 (X)
  7.  
  8. Thanks Barry,
  9.  
  10. The graphics question was jus a curiosity. I realize that the apps won't run
  11. without an 8087 if I use the FP87 library but since I do not let them in the
  12. door without a co-processor that doesn't matter. (Like I said in the first
  13. message 80x87 is not an OPTION.) I use 43 line mode most of the time (even in
  14. DOS) but I can probably live without it to get a compile and link.
  15.  
  16. Mason.
  17.  
  18. Press <CR> for next or type CHOICES !
  19. H#: 46779 S12/SPECTRA Publishing
  20.     20-May-90  14:09:03
  21. Sb: #46197-#PBPLUS96
  22. Fm: AL MUSELLA 76114,637
  23. To: Barry Erick for Spectra 75300,214 (X)
  24.  
  25. Barry,
  26.     I'll try anything - I would really like to get PBPLUS working.
  27.                                     Al
  28.  
  29. There is 1 Reply.
  30.  
  31. Press <CR> for next or type CHOICES !
  32. H#: 46851 S12/SPECTRA Publishing
  33.     21-May-90  03:37:44
  34. Sb: #46779-PBPLUS96
  35. Fm: Barry Erick for Spectra 75300,214
  36. To: AL MUSELLA 76114,637 (X)
  37.  
  38. Ok. I really do not know whay it will not work on your machine. Bob --- can you
  39. come up with a simple test for Al?
  40.  --- Barry
  41.  
  42.  
  43.  
  44. Press <CR> for next or type CHOICES !
  45. H#: 46348 S12/SPECTRA Publishing
  46.     18-May-90  09:05:51
  47. Sb: #46315-PW200D & DBLOW.BOX
  48. Fm: Tim McFarland 71530,2640
  49. To: DOUG MILLER 73757,1300 (X)
  50.  
  51. Doug, If you could send me the code thats causeing you grief, I would like to
  52. take a look at it.  Just E-mail directly to me, and will get you up and running
  53. as soon as possible. Tim.
  54.  
  55. Press <CR> for next or type CHOICES !
  56. H#: 46364 S12/SPECTRA Publishing
  57.     18-May-90  10:57:50
  58. Sb: #Comm. with COM2:
  59. Fm: Harry Whitehouse 71611,1122
  60. To: [F] Spectra Support 75300,214 (X)
  61.  
  62. I think this is more of a system problem rather than a PB problem.  I am
  63. ttrying to write a PB routine to dial a phone number on an internal modem card.
  64. I use the card configured as COM2: all the time with PROCOMM. However when I
  65. try to open COM2: from PB I get an error 68 - device un available.  When I open
  66. COM1: I get a device timeout (which I would expect as there is nothing on that
  67. port).
  68.  
  69. Maybe this problem is unique to my 80386 machine.   However, I don't under
  70. sstand why PROCOMM can "see" COM2: and PB can't.
  71.  
  72. Anybody have any ideas?
  73.  
  74. There is 1 Reply.
  75.  
  76. Press <CR> for next or type CHOICES !
  77. H#: 46408 S12/SPECTRA Publishing
  78.     18-May-90  15:01:56
  79. Sb: #46364-Comm. with COM2:
  80. Fm: Barry Erick for Spectra 75300,214
  81. To: Harry Whitehouse 71611,1122 (X)
  82.  
  83. Harry,
  84.  you don't have a NEC machine, do you? Reason I ask is I found that it has a
  85. non true com port.
  86.  The device timeout can be gotten around with
  87.   Open "Com1:9600,N,7,1,rs,cs0,ds0,cd0" as #32 len 1
  88.  Then, there is not need for a on error for the com port.
  89.  As far as your com port 2 goes... using procom, select Alt-S and ComPort. Then
  90. Port Addresses... Tell us what the address for port 2 is..It should be 2F8
  91.   --- Barry
  92.  
  93.  
  94.  
  95. Press <CR> for next or type CHOICES !
  96. H#: 46464 S12/SPECTRA Publishing
  97.     18-May-90  21:36:21
  98. Sb: #.asm --> PB
  99. Fm: B Jones 76166,2542
  100. To:  76304,1303 (X)
  101.  
  102. Bob,
  103.  
  104.  Can you give me a little more info on returning values that require use of the
  105. 80x87 top of stack register from an .asm program when no 80x87 is present?  Can
  106. it currently be done?  Will we be able to do it sometime in the future?  Will I
  107. win the lottery?
  108.  
  109.  Thanks,
  110.  
  111.  
  112.  Brett Jones
  113.  
  114. There is 1 Reply.
  115.  
  116. Press <CR> for next or type CHOICES !
  117. H#: 46530 S12/SPECTRA Publishing
  118.     19-May-90  07:24:14
  119. Sb: #46464-.asm --> PB
  120. Fm: Bob Zale: PowerBASIC R&D 76304,1303
  121. To: B Jones 76166,2542 (X)
  122.  
  123. Brett--
  124.   If you are compiling for an 8087, it poses no problem at all.  However,
  125. without one, it's much tougher.  While PowerBASIC will recognize and execute
  126. emulated 8087 opcodes just fine, the linker does not supply the "fixup"
  127. constants required to "fixup" the emulation codes expected by some assemblers
  128. (notably TASM/MASM).  For now, there are two possibilities: 1. Hard code the
  129. emulation opcodes in your assembler code (using db's) or 2. return the floating
  130. point value in a parameter to the SUB/FUNCTION. We will be adding these fixup
  131. constants in the next version of PowerBASIC. As to the lottery, I've heard it's
  132. a sure thing when you promise to share the winnings with the folks around here
  133. ! ! <g>
  134.   Bob Zale (PowerBASIC R&D)
  135.  
  136. Press <CR> for next or type CHOICES !
  137. H#: 46621 S12/SPECTRA Publishing
  138.     19-May-90  15:26:50
  139. Sb: #Comm. with COM2:
  140. Fm: Harry Whitehouse 71611,1122
  141. To: [F] Spectra Support 75300,214 (X)
  142.  
  143. Barry, Thanks for the reply.  I don't have a NEC machine-- I have a Micronics
  144. motherboard in a clone-like machine.
  145.  
  146. Procomm indeed shows that COM2: is at base address 0x2F8 with IRQ3. COM1: is
  147. shown at 0x3F8 with IRQ4.
  148.  
  149. I use PROCOMM on COM2: to communicate with this BB.   I've tried my code with
  150. various permutations but always get an error 68 when attempting to open COM2:
  151.  
  152. If no one else has seen this, I'll try my modem card in another machine.
  153.  
  154. Thanks again, Harry
  155.  
  156. There is 1 Reply.
  157.  
  158. Press <CR> for next or type CHOICES !
  159. H#: 46850 S12/SPECTRA Publishing
  160.     21-May-90  03:37:40
  161. Sb: #46621-Comm. with COM2:
  162. Fm: Barry Erick for Spectra 75300,214
  163. To: Harry Whitehouse 71611,1122
  164.  
  165. Harry,
  166.  Com2 should not be a problem for you since 2f8 and irq3 are the standards and
  167. that is exactuly what mine is. I do a Open "Com2:9600,n,8,1,rs,cs0,ds0,cd0" as
  168. ComNum Len = 1" I two program I use.
  169.  Could you double check this again... you are using 2.00b, aren't you?
  170.       --- Barry
  171.  
  172.  
  173.  
  174. Press <CR> for next or type CHOICES !
  175. H#: 46848 S12/SPECTRA Publishing
  176.     21-May-90  02:24:59
  177. Sb: #DELKEY problem
  178. Fm: George Green 70565,276
  179. To: Sysop/all (X)
  180.  
  181. Barry, Bob, Tim, Anyone...
  182.  
  183.  Here's a liitle problem I can't seem to get past involving Barry's
  184.  FINDFILE/FINDNEXT unit and DELKEY.BOX from the TBASIC database toolkit:
  185.  
  186.  I originally wrote a program in TB that reads-in all files with a certain
  187.  extension to upgrade a large data-base. Barry's Find...Next routine is
  188.  used to fetch the source files. Sometimes the source files are
  189.  ment to delete the data they contain from within the data-base. This
  190.  option is selected at run-time. The delete option works fine in its
  191.  original TURBO BASIC form but crashes in DELKEY.BOX, Sub Deletekey at
  192.  line 132 (below)...
  193.  
  194.   dbCurBf(DataSet) = dbCurBf
  195.  
  196.  
  197.  ...with error 9, subscript out of range.
  198.  
  199.  The only difference between the TB and PV versions is I've converted
  200.  the findfile/findnext functions that were in the TB sig to the unit
  201.  version that is in this sig. I've used Barry's unit file in other programs
  202.  with no problems ('tho none use the delete key sub).
  203.  
  204.  If I'm not deleting something from the data-base, such as adding or
  205.  checking for files, there's no problem. I've applied the toolkit
  206.  patches from Tim, and both the fix files for the compiler.
  207.  
  208.  Any ideas?...George Green
  209.  
  210.  
  211.  
  212. There is 1 Reply.
  213.  
  214. Press <CR> for next or type CHOICES !
  215. H#: 46854 S12/SPECTRA Publishing
  216.     21-May-90  04:25:14
  217. Sb: #46848-DELKEY problem
  218. Fm: Barry Erick for Spectra 75300,214
  219. To: George Green 70565,276
  220.  
  221. George,
  222.  Is DBCurBf DIMmed AND Either Shared (if not passed between units) or PUBLIC(in
  223. the main) AND EXTERNAL (in a unit) if used within a Unit? That should be the
  224. only readon for this and also check for the right type... dbCurBf%(dataSet%)
  225. should be used IF you do not have a DEFINT a-z statement in there. If you do
  226. have a Defint a-z, make sure it is before anything else that may need it.
  227.  --- Barry
  228.  
  229.  
  230.  
  231. Press <CR> for next or type CHOICES !
  232. H#: 46871 S12/SPECTRA Publishing
  233.     21-May-90  07:50:42
  234. Sb: #DBLOW.BOX PW200D.INC
  235. Fm: DOUG MILLER 73757,1300
  236. To: Steven Snyder 76357,1574
  237.  
  238. TIM THERE IS RIGHT MUCH TO UPLOAD IF YOU GIVE ME YOUR ADDRESS I MAIL THE
  239. PROGRAM AND THE FILES TO YOU  --- DOUG
  240.  
  241. There is 1 Reply.
  242.  
  243. Press <CR> for next or type CHOICES !
  244. H#: 46881 S12/SPECTRA Publishing
  245.     21-May-90  08:46:50
  246. Sb: #46871-DBLOW.BOX PW200D.INC
  247. Fm: Tim McFarland 71530,2640
  248. To: DOUG MILLER 73757,1300
  249.  
  250. Here you go Doug.  Send your code to: Technical Support Spectra Publishing
  251. 1030D East Duane Ave. Sunnyvale, CA  94086 Thanks, Tim.
  252.  
  253. Press <CR> for next or type CHOICES !
  254. HPC Vendor B ForumHSections Menu
  255.  
  256. Section names (#subjs/# msgs)
  257.  1 Quarterdeck  (82/137)
  258.  3 Korenthal Assocs.  (4/16)
  259.  4 Personics Corp.  (20/50)
  260.  5 Quicksoft  (2/2)
  261.  6 TurboPower Software  (28/117)
  262.  7 ChipSoft, Inc.  (3/4)
  263.  8 DacEasy  (16/26)
  264.  9 Vestronix  (1/1)
  265. 10 J.P. Software  (32/130)
  266. 11 PDC Prolog  (7/16)
  267. 12 SPECTRA Publishing  (8/14)
  268. HEnter choice(s) or ALL !