home *** CD-ROM | disk | FTP | other *** search
/ 8bitfiles.net/archives / archives.tar / archives / genie-commodore-file-library / Information / BB.MSGS.940206 < prev    next >
Encoding:
Text File  |  2019-04-13  |  121.8 KB  |  3,271 lines

  1. text1
  2. text2
  3. text3
  4. text4
  5. text5
  6. text6
  7. text7
  8. text8
  9.  ************
  10. Topic 5         Tue Sep 21, 1993
  11. G.CORREA [RAMRunner]         at 23:22 EDT
  12. Sub: The >>>NEW<<< Commodore!               
  13.  
  14. C'mon, has NO-ONE seen the ad for the NEW 8-bit Commodore computer...?!? The
  15. machine no-one thought would see the light of day...?  The 64 with a built-in
  16. 1581...?  The COMMODORE 65!
  17. 110 message(s) total.
  18.  ************
  19.  ------------
  20. Category 2,  Topic 5
  21. Message 105       Thu Jan 27, 1994
  22. C128.JBEE                    at 03:38 EST
  23.  
  24.  Colors could probably be done like they are on the +4/128
  25.  
  26.  COLOR #,#
  27.  
  28.  First number is the mode, second is the color.  I would just try
  29.  color 1,1
  30.  color 2,1
  31.  color 3,1
  32.  
  33.  etc and see what changed.
  34.  
  35.  Throw it in an FOR/NEXT loop with either a SLEEP or GETKEY command.
  36.  ------------
  37. Category 2,  Topic 5
  38. Message 106       Wed Feb 02, 1994
  39. C128.JBEE                    at 06:24 EST
  40.  
  41.  >L.MCCLURE
  42.  >BTW...do you know if Fred Bowen is still at Commodore?
  43.  
  44.  Yes, he is.  He should be online shortly under his old name
  45.  FREDBOWEN
  46.  ------------
  47. Category 2,  Topic 5
  48. Message 107       Wed Feb 02, 1994
  49. GEOS-TIM                     at 20:48 EST
  50.  
  51. In fact, he will be in the RTC on February 22 at 10 pm. EST.  He will be there
  52. as my "guest speaker", and I'm sure we will be covering a  variety of
  53. subjects. :)   -Tim
  54.  ------------
  55. Category 2,  Topic 5
  56. Message 108       Wed Feb 02, 1994
  57. G.CORREA [RAMRunner]         at 21:41 EST
  58.  
  59. Ooooh- that should be good.  Makes me wish I had stuck with the C65 order
  60. instead of cancelling it when I found out it was PAL.  Ah well.
  61.   Grapevine is ticking me off too.  They *still* haven't delivered my 
  62. printer, mouse, and programs I ordered in place of the 65- I call every so
  63. often, and it's a different excuse each time.  First it was waiting on
  64. ribbons.  Then they were waiting for them (printers) to come from their
  65. warehouse (?- snow too heavy for someone to go over?!?).  Last I heard they
  66. were waiting on paper guides.  ***NEVER*** again shall I order from Grapevine.
  67. I'll consider myself fortunate ***IF*** I get this order, never mind the $20
  68. difference they'll owe me from what I sent for the  65.  I'm wondering what
  69. horrors I will have to go thru to retrieve that.
  70.  
  71.   -K
  72.  ------------
  73. Category 2,  Topic 5
  74. Message 109       Wed Feb 02, 1994
  75. L.MCCLURE                    at 23:36 EST
  76.  
  77. Some interesting info from comp.sys.cbm:
  78.  
  79.  
  80. c65 - graphics info...
  81.     From: Simon Laule <c900cade@w255zrz.zrz.tu-berlin.de>
  82.     Date: 31 Jan 1994 11:45:35 GMT    (5 screens)
  83.  
  84.  
  85. Hi!
  86.  
  87. In addition to the infos that were posted last week from the c65 manual, here
  88. are some _REAL_ infos, tested on my c65 . ROM version was 0.09.910111.
  89.  
  90. Ok.
  91.  
  92. For displaying graphics the following commands are necessary:
  93.  
  94. screen def screen#,width,heigth,depth  - define screen# and resolution..
  95. screen open screen#  - allocate memory for screen#... screen set
  96. drawscreen#,viewscreen# (normally the same..)
  97.           -  display screen...
  98.  
  99. ... now all normal (basic 3.5/7.0) drawing cmds are allowed,
  100.     line, etc. etc.
  101.  
  102. screen close screen#   - give memory free, and display text screen...
  103.  
  104. If, because of RESTORE-NMI, the text screen reappears without screen close,
  105. all commands normally fail, because of lost memory.
  106.  
  107. Possible Resolutions are:
  108.  
  109. Resolution      screen def      Memory allocated 1280*400*1      2 1 1 - ok   
  110. 64k 1280*200*1      2 0 1 - ok      32k 1280*200*2      2 0 2 - ok      64k
  111. 640*400*1       1 1 1 - ok      32k 640*400*2       1 1 2 - ok      64k
  112. 640*200*1       1 0 1 - ok      16k 640*200*2       1 0 2 - ok      32k
  113. 640*200*4       1 0 4 - ok      64k 320*400*1       0 1 1 - ok      16k
  114. 320*400*2       0 1 2 - ok      32k 320*400*4       0 1 4 - failed  64k
  115. 320*200*1       0 0 1 - ok      8k 320*200*2       0 0 2 - failed  16k
  116. 320*200*4       0 0 4 X failed  32k 320*200*8       0 0 8 X failed  64k
  117.  
  118.  
  119. - failed means display ok, but screen clr palette# crashes system - RESET X
  120. failed means screen set crashes with blank screen - RESET
  121.  
  122. I don`t know, why the last three modes crash, they need the same amount of
  123. memory as the others, 320*200*2 needs only 16k, but crashes... Any ideas??????
  124.  
  125. Also I don't know where the memory is allocated, a print fre during HiRes
  126. brings the same as without....
  127.  
  128. I think the 128k Modes (320*400*8) will only available with RAM Expansion. Any
  129. suggestion, for this expansion????
  130.  
  131. The MOUSE command mentioned in the last weeks c65 article, is not available in
  132. 0.09.91011, also RMOUSE. GRAPHIC command# [,args] brings sytax error.
  133.  
  134. The screen modes use the color palette PALETTE screen#,color#,R(0-15),G(0-
  135. 15),B(0-15)
  136.  
  137. Changing the palette when displaying a screen crashes the system...
  138.  
  139. I don`t know how the 1-7 bitplane graphics point to their palette color, just
  140. because i have only a green monitor.
  141.  
  142. Ok, thats enough for now. Any comments, hints etc. please directly to me, i
  143. will post corrections/additions....
  144.  
  145. Oh, and Im still curious about all the ROM versions out there. Until now i
  146. have mine (0.09.910111) and ralpheys (something like 0.0b.910429). Are other
  147. versions?? Im still looking for version 0.0b.910429 on disk, ralphey owns no
  148. eprommer, so he cannot get the image...??? Any hints???
  149.  
  150.  
  151.  ------------
  152. Category 2,  Topic 5
  153. Message 110       Wed Feb 02, 1994
  154. L.MCCLURE                    at 23:39 EST
  155.  
  156. M.MATTING:
  157.  
  158. Can you give us the RAM expansion (bellyboard 30-position connector)  and main
  159. expansion (50-position) connector pinouts from your C65  manual?
  160.  
  161. BTW, have arrangements been made for anyone in the U.S. yet to  recieve a copy
  162. of that manual, and make it available to others?
  163.  
  164.  ------------
  165.  ************
  166. Topic 21        Thu Jul 08, 1993
  167. HOWIE-CBM                    at 17:32 EDT
  168. Sub: I am HOT!!!                            
  169.  
  170. I'm melting...
  171. 14 message(s) total.
  172.  ************
  173.  ------------
  174. Category 2,  Topic 21
  175. Message 14        Thu Jan 27, 1994
  176. CBM-MARK                     at 10:38 EST
  177.  
  178.  Gee, and Ithought only Wisconsin had erratic weather like that ;D
  179.  ------------
  180.  ************
  181. Topic 25        Fri Feb 04, 1994
  182. MRABOY                       at 21:57 EST
  183. Sub: Grapevine                              
  184.  
  185.  
  186.  
  187. 2 message(s) total.
  188.  ************
  189.  ------------
  190. Category 2,  Topic 25
  191. Message 1         Fri Feb 04, 1994
  192. MRABOY                       at 22:01 EST
  193.  
  194. I have a computer at Grapevine for repair and its been there for over amonth .
  195. are these people reputable.  When i call they say they will have it in ad ay
  196. or two.  Any suggestions.
  197.                                     Thanks
  198.                                       Mike :)
  199.  ------------
  200. Category 2,  Topic 25
  201. Message 2         Sat Feb 05, 1994
  202. C128.JBEE                    at 04:17 EST
  203.  
  204.  If they have had it for a month, I think it is time to ask for it back
  205.  and send it to someone else.
  206.  ------------
  207.  ************
  208. Topic 26        Fri May 15, 1992
  209. M.KERN1                      (Forwarded) 
  210. Sub: C128/C64 mail-order, magazine sources  
  211.  
  212.  This topic is for information regarding existing mail-order firms and
  213.  magazines that support the C= 8-bit machines.  This topic is also for
  214.  the notification of which companies are no longer with us.
  215. 61 message(s) total.
  216.  ************
  217.  ------------
  218. Category 2,  Topic 26
  219. Message 60        Sun Jan 30, 1994
  220. G.NOGGLE [Greg]              at 22:10 EST
  221.  
  222.                           MICROBYTES
  223.                        By: Greg Noggle
  224.  
  225. To: Present and Future Subcribers
  226.  
  227.         Hello,this is to let you know that I haven't decided not to produce
  228. MicroBytes and let you know that that status of the next issue of MicroBytes.
  229.         vol 2,issue #2 of MicroBytes is going to be a double size or better
  230. sized issue. Its at 45 pages right now without pictures and some editing to be
  231. done.
  232.         I am very sorry about the hold ups of this issue. So far I have had to
  233. stop using Bank Street Writer for it because of issue size. I had a brand new
  234. 240 meg Hard drive go belly up on me. Now my brand new word processor costing
  235. me more money then I care to think about refuses to work on my hardware
  236. although the box said it would work on my equipment. I was trying to get wp
  237. 6.0 running on my 286 bridgeboard in my amiga 2000.(grrr). The issue is over
  238. 1/2 meg in size right now without pictures and I got to have pictures :).
  239.         So much for excuses(I got more) but the bottom line is this I should
  240. be shipping to current mailing list anytime,I wanted to do it last week but
  241. between job hunting and school I had to make priorities. I fully expect to be
  242. finsished and ship this week.
  243.         To paid subcribers I have not spent your money yet and untill I ship I
  244. will not. I am sorry for the delay but I will ship soon and try very hard to
  245. be on scedule afterwards.
  246.         Now for the reason I am boring you the flagship customer with this.   
  247. MicroBytes
  248.                    A Newsletter for the 64/128 and Amiga
  249.                    Focusing on the past,present and future of
  250.                                MicroComputing
  251.  
  252. Coming soon to a mailbox near you. I will be posting subcription,submission
  253. info after the volume 2,issue 2 is mailed
  254.  
  255. Publishing history Volume 1-editor/publisher Paul Mclear Volume 2-
  256. editor/publisher Greg Noggle
  257.  
  258. Happy Computing to one and all,may the the C64/128 live forever.
  259.  
  260.                                Greg Noggle
  261.                                Publisher Microbytes Newsletter
  262.  
  263.  ------------
  264. Category 2,  Topic 26
  265. Message 61        Mon Jan 31, 1994
  266. L.SCHONDER [Lou]             at 04:55 EST
  267.  
  268. Will subscriber's of Volume #1 have their subscriptions carried over? I'm not
  269. sure of my status.
  270.  ------------
  271.  ************
  272. Topic 39        Fri Jan 07, 1994
  273. R.HARRIS1 [Randysx]          at 01:46 EST
  274. Sub: Chicago area C= users!                 
  275.  
  276. Maurice Randall, author of geoShell, will be at 1/16/94 SWRAP C= user group
  277. meeting for demos of software.
  278. 4 message(s) total.
  279.  ************
  280.  ------------
  281. Category 2,  Topic 39
  282. Message 4         Thu Jan 27, 1994
  283. R.SNYDER2                    at 03:32 EST
  284.  
  285. Can any of your members give me an address or phone number to get in touch
  286. with Elizabeth Deal or CBUG (Chicago B Users Group) or if they have bit the
  287. dust, an ex-member. I have a few of their library disks and would like to get
  288. the rest.
  289.  ------------
  290.  ************
  291. Topic 40        Thu Feb 03, 1994
  292. C128.JBEE                    at 22:54 EST
  293. Sub: place holder                           
  294.  
  295.  place holder
  296. 1 message(s) total.
  297.  ************
  298.  ------------
  299. Category 2,  Topic 40
  300. Message 1         Thu Feb 03, 1994
  301. C128.JBEE                    at 22:55 EST
  302.  
  303.  
  304.  ------------
  305.  ************
  306. Topic 12        Wed Jul 28, 1993
  307. B.GANN1                      (Forwarded) 
  308. Sub: GEnie Library files                    
  309.  
  310. For questions regarding GEnie downloadable files
  311. 16 message(s) total.
  312.  ************
  313.  ------------
  314. Category 3,  Topic 12
  315. Message 15        Sat Feb 05, 1994
  316. W.HARD                       at 16:17 EST
  317.  
  318. Can anyone here recommend a RAMDos type of program I could download from the
  319. libraries which would let me use the 1700 REU as a drive? Please note that I
  320. have the 1700, not the 1750.  Thanks.
  321.  
  322.                                                    Walter
  323.  ------------
  324. Category 3,  Topic 12
  325. Message 16        Sat Feb 05, 1994
  326. CBM-ED [e.g.bell]            at 19:57 EST
  327.  
  328.  WH:
  329.   WH> recommend a RAMDos type of program I could download from the
  330.   WH> libraries which would let me use the 1700 REU as a drive
  331.  
  332.  
  333.   >>>  9238 RAMDOSII.SFX             X R.KNOP1      911107   17408   
  334.   >>>       Desc: RAM disk on CBM REU up to 2 Megs
  335.   >>>  5125 RAMDOS128.BIN4.3         X SPARROW.J    871117    7560   
  336.   >>>       Desc: Updated Binary file for RAMDOS 128
  337.   >>>  5124 RAMDOS128V4.3.LBR        X SPARROW.J    871117   22680   
  338.   >>>       Desc: RAMDOS 128 v4.3a 11/17/87
  339.  
  340.  I don't know how 5125 got in there because the original stipulation on
  341.  the RAMDOS files was that they be in the collection as uploaded I 
  342.  thought.  And 5124 is a LBR file, meaning you must have the library 
  343.  utility to dissolve it.  File 9238 will do for you though, and it is a
  344.  self dissolving file.  All of them have a routine called 'sniff' that
  345.  determines the size of your REU, so you don't have to worry about what
  346.  modely you have.  Your 1700 will work just fine.  :)
  347.  
  348.  ------------
  349.  ************
  350. Topic 18        Sat Jun 22, 1991
  351. C128.JBEE [* Sysop *]        (Forwarded) 
  352. Sub: CS-DOS & REU C1750 & LHA & Autoexec    
  353.  
  354.  One of the most often asked questions is how to set up the C128/C1750/
  355.  LHA/Autoexec file to make SFX archives.  The autoexec file follows...
  356. 56 message(s) total.
  357.  ************
  358.  ------------
  359. Category 3,  Topic 18
  360. Message 56        Wed Feb 02, 1994
  361. C128.JBEE                    at 06:23 EST
  362.  
  363.  >D.TUOMI
  364.  
  365.  Can I send you a disk with my setup to try?
  366.  ------------
  367.  ************
  368. Topic 27        Sat Sep 04, 1993
  369. MRABOY                       at 08:27 EDT
  370. Sub: superbase and geocable                 
  371.  
  372. user port,parallel cables and software
  373. 12 message(s) total.
  374.  ************
  375.  ------------
  376. Category 3,  Topic 27
  377. Message 12        Sat Feb 05, 1994
  378. J.KARN                       at 09:43 EST
  379.  
  380. Superbase's print routine is, indeed, not too fast.  If you have a buffer,
  381. e.g. I have a 64K Centronics buffer (Supra) between my Supergrafix interface
  382. and the printer, I think you can speed things slightly by taking the printer
  383. offline while you fill the buffer. That, at least, will eliminate handshaking
  384. between the buffer and the printer while the buffer is being filled, and free
  385. up the computer faster.
  386.  
  387. To B.Gann and MRaboy: just to be sure, you're not using Cntrl-P to print from
  388. Superbase, I hope.  That function is only a screen dump intended for
  389. occasional use.  The way to print a series of records from Superbase is to
  390. create a keylist with the FIND function and then output from the list to the
  391. printer.
  392.  ------------
  393.  ************
  394. Topic 37        Sun Nov 21, 1993
  395. AMFORD                       at 11:02 EST
  396. Sub: COMAL                                  
  397.  
  398.  COMAL, the replacement language for BASIC that many C64 owners used  years
  399. ago.  Is there anyone out there still writing in COMOL and  generating new
  400. procedures and programs?
  401. 5 message(s) total.
  402.  ************
  403.  ------------
  404. Category 3,  Topic 37
  405. Message 5         Sat Feb 05, 1994
  406. W.HARD                       at 16:12 EST
  407.  
  408. COMAL is an excellent language, superior in several ways to the latest IBM
  409. Basics.  I have the CP/M version, but back when COMAL(relatively) available
  410. for the C128, the price was rediculous -- close to that of the 128 itself.  It
  411. never had a chance.
  412.  
  413.                                              Walter
  414.  ------------
  415.  ************
  416. Topic 43        Sat Jan 29, 1994
  417. I.MCKINNEY [TheBigMac]       at 21:54 EST
  418. Sub: Bank Street Writer transfers           
  419.  
  420. A question about how to send a Bank Street Writer created file to a BBS.
  421. 4 message(s) total.
  422.  ************
  423.  ------------
  424. Category 3,  Topic 43
  425. Message 1         Sat Jan 29, 1994
  426. I.MCKINNEY [TheBigMac]       at 22:02 EST
  427.  
  428. I have a friend who is using Bank Street Writer to create text files. He wants
  429. to upload these files to a local BBS. He is using a 128 with a  Volksmodem and
  430. the AutoComm program that came with it. He is trying to  upload the files
  431. using X-Modem but his program can't seem to find the files even after
  432. validating the disk. He wants to know if it is something in the software that
  433. is preventing him from finding the file on disk or is there something I'm
  434. missing in deciphering his problem? I have never used BSW to create files so I
  435. have never come across this type of problem before.
  436.  ------------
  437. Category 3,  Topic 43
  438. Message 2         Sun Jan 30, 1994
  439. M.RANDALL2 [Maurice]         at 19:37 EST
  440.  
  441. I've never used BSW myself, but I might guess that the problem is that Bank
  442. Street Writer saves it's text files with a certain character added somewhere
  443. within the filename. If so, you will need to rename the files. Then the term
  444. program should be able to find the files on the disk. The DOS in a Commodore
  445. drive does not handle lowercase ASCII characters well. Just try to delete a
  446. GEOS file that uses lowercase characters in it's filename (from GEOS- in BASIC
  447. they will look like uppercase), it will report 'file not found'. This is one
  448. undocumented way to write-protect a file. I know that GEOS has nothing to do
  449. with Bank Street Writer, but the concept is the same. See if this is the
  450. problem.
  451.  ------------
  452. Category 3,  Topic 43
  453. Message 3         Sun Jan 30, 1994
  454. G.NOGGLE [Greg]              at 22:10 EST
  455.  
  456. In my limited experience with bank street writter I had to due the same thing.
  457. I found that bank street writter added I believe 7 spacces to file name. also
  458. for what I was doing at the time I had to switch the file type. I think I had
  459. to change them to seq. files. The info in the files is also in pet-ascii and
  460. not ascii.
  461.                                 Greg
  462.  
  463.  ------------
  464. Category 3,  Topic 43
  465. Message 4         Mon Jan 31, 1994
  466. I.MCKINNEY [TheBigMac]       at 03:27 EST
  467.  
  468. I'll relay the info to my friend and see if it works for him. Thanks.
  469.  ------------
  470.  ************
  471. Topic 44        Thu Feb 03, 1994
  472. H.HERMAN1                    at 20:26 EST
  473. Sub: ZED-128                                
  474.  
  475. The *BIG* editor for the 128.
  476. 1 message(s) total.
  477.  ************
  478.  ------------
  479. Category 3,  Topic 44
  480. Message 1         Thu Feb 03, 1994
  481. H.HERMAN1                    at 20:28 EST
  482.  
  483.  Here's one I thought I could solve, but now realize it is beyond my 
  484.  capabilities....     <<sigh>>
  485.  
  486.  90% of the time I use my regular ZED-128, and things are fine.  Great, in 
  487.  fact.
  488.  
  489.  The other 10% of the time I need to use my BIG-ZED-128, the one that is 
  490.  preconfigured to use the 1750.  And, here is where the problem shows up.
  491.  
  492.  After quitting ZED, and then trying to run Pocket Writer3, PW3 goes through 
  493.  its boot, but not entirely.  It locks up before completing the boot.  A 
  494.  _total_ lockup.
  495.  
  496.  I can use the RESET on either the RAMLink or the 128D to get things going 
  497.  again.  However, attempting to boot into PW3 will again lock up the 128D at 
  498.  the exact same point in the boot.
  499.  
  500.  I can repeat this RESET and BOOT again and again, and always lock up.
  501.  
  502.  And, worse:  If I turn off the 128D, and leave it off for a few minutes, 
  503.  and then try to BOOT PW3 it again locks up at that same point in the boot.  
  504.  This is repeatable, so that turning off the computer a lot of times does 
  505.  not improve things.
  506.  
  507.  The thing that does allow me to once again boot into PW3 is running the 
  508.  disk2reu image that is a part of the boot procedure for starting CS/DOS.  
  509.  This is putting an image back into the 1750 REU that includes a CS/DOS 
  510.  ramdisk, *and* PW3 overlay files, and Pocket Filer2 overlay files, and some 
  511.  other things used by the Pocket programs into lower ram of the REU.  After 
  512.  this is done, that is, after booting into CS/DOS this way, then quitting 
  513.  CS/DOS, Pocket Writer 3 will successfully boot and run.
  514.  
  515.  So my question is:  what is ZED (when configured to use the REU) doing to 
  516.  my REU that prevents PW3 from booting afterwards?  And why are resets, and 
  517.  turning off the computer doing nothing to fix this?
  518.  
  519.  More to the point:  Is there a routine that I can run, after exiting from 
  520.  BIG-ZED, that will give me back my REU and let me boot PW3?
  521.  
  522.  As stated, the only way now is to boot into CS/DOS with a REU image, and 
  523.  this is becoming tiring......
  524.  
  525.  The computer setup here is a 128D with 1750 REU plugged into a RAMLink.
  526.  
  527.  Did I describe my problem okey?
  528.  
  529.  Is there a solution to the prob?
  530.  
  531.  Howie
  532.  
  533.  P.S.  Although running disk2reu puts back things into the REU that Pocket 
  534.  Writer uses, I do not think that this is what lets Pocket Writer 3 boot.  
  535.  Often, I will boot into PW3 with a completely empty REU successfully.  The 
  536.  only thing PW3 needs to complete its boot are its overlay files, and 
  537.  duplicates of these are kept on drive 8 for easy access.  I suspect that 
  538.  restoring a REU image is cancelling something that ZED has done to the REU 
  539.  making it usable, once again?  Not sure what this is though....
  540.  ------------
  541.  ************
  542. Topic 4         Sat Aug 28, 1993
  543. G.HILL15                     (Forwarded) 
  544. Sub: 1581 Disk Drive                        
  545.  
  546. Questions and info about the Commodore 1581 disk drive.
  547. 46 message(s) total.
  548.  ************
  549.  ------------
  550. Category 4,  Topic 4
  551. Message 42        Thu Jan 27, 1994
  552. B.CHADWICK                   at 23:52 EST
  553.  
  554.                               Is there any way to reconstruct a corrupted and
  555. un-readable directory on a 1581?  Most or all of the files are presumable
  556. still on the few disks I have had this happen to.  I have heard of a feature
  557. of "Maverick" (version 4 or 5 I think) that can rebuild a directory.  Will it
  558. work on the 1581 and do what I need done (rebuild a directory from tracing
  559. files on a disk)?  If so, where is Maverick available now?  If not, is there
  560. other software that will re-construct directories from files on disks? Any
  561. help on this would be much appreciated.  I have many files on these disks that
  562. I would like to save.
  563.  ------------
  564. Category 4,  Topic 4
  565. Message 43        Fri Jan 28, 1994
  566. CBM-ED [e.g.bell]            at 08:28 EST
  567.  
  568.   BC> Is there any way to reconstruct a corrupted and un-readable
  569.   BC> directory on a 1581?  Most or all of the files are presumable
  570.   BC> still on the few disks
  571.  
  572.  It is possible, depending on the extent of the damage to the disk, your
  573.  abilities, and if the files are actually still intact.  I don't know
  574.  if Maverick will do what you want, but I know any sector editor can get
  575.  you through the job, or in the worst case, a block by block copy.
  576.  Before you do any of that though, what is the error you are receiving?
  577.  THere are a couple firstline fixes you should try if it is something on
  578.  the directory track (40) that is sending an error 23 or something like
  579.  that.  First, try spinning the disk in the plastic by using your finger
  580.  or a pen in the metal hub on the back of the disk.  Then try to re-read
  581.  the disk.  If that does not work (try it a couple of times) get the
  582.  file called FIX 1581 from the libraries (don't know the number) and run
  583.  it, specifying track 40 sector 0.  (This assumes your problem is the e
  584.  one common to the 1581).  Try this at least twice if the 1st attempt 
  585.  does not work.  If none of this works, if Maverick does not do the job,
  586.  you will have to copy each sector to a new disk and recreate the 
  587.  directory...
  588.  ------------
  589. Category 4,  Topic 4
  590. Message 44        Fri Jan 28, 1994
  591. C128.JBEE                    at 09:24 EST
  592.  
  593.  Here is how I have fixed disks that could not be fixed any other way.
  594.  
  595.  I formatted another 1581 with the same ID.  Then I nibbled every track
  596.  to the disk except for the directory track (18 on a 1541/71 - 40 on a 1581).
  597.  
  598.  With a sector editor I stepped through every directory track until I
  599.  got a read error (example 40,0 40,1 40,2 40,3 etc).  I noted the bad
  600.  directory sectors (usually only the Bam at 40,0 is nuked).
  601.  
  602.  Then I nibbled the good directory sectors to the disk and allocated
  603.  the whole BAM (think you have to write 255 to each byte at 40,0 - been
  604.  a while since i did this).
  605.  
  606.  Usually, you will lose the first 8 files that had their directory pointers
  607.  at 40,1.  So, if needed, skip over this sector or any other bad sectors
  608.  and link all the good sectors together.
  609.  
  610.  Then validate the disk.
  611.  
  612.  Then file copy all the files that remain to a good disk.
  613.  
  614.  If the disk is of vital importance, you can make a little graph chart and
  615.  walk through the Track and Sectors of the found files and mark off all
  616.  the validated sectors.  This leaves the unvalidated sectors where information
  617.  might be.  Going by the unused sectors, start at 1,0 or the lowest
  618.  available T/S and follow the file links.  Note their positions on your
  619.  chart.  Now go to 40,1, make a directory entry, and point the link to that
  620.  files (t/s) you just traced.  Now load and check that file.  If it is good,
  621.  file copy it to another disk. Mark off all its sectors.  Take the next
  622.  sector following the previous file's last t/s and assume that is where
  623.  the second file started.  Trace that and just keep doing this routine
  624.  until you have accounted for every T/S.  Will take awhile, but as long
  625.  as only 40,0 or 40,1 are corrupted, you can save the whole disk with
  626.  some detective work.
  627.  
  628.  What makes this somewhat bearable on the 1581 is that the 1581
  629.  writes the T/S one after another without an interleaf for files,
  630.  unlike the 1571.
  631.  ------------
  632. Category 4,  Topic 4
  633. Message 45        Sun Jan 30, 1994
  634. R.ROSENLOF [Wizardry]        at 03:54 EST
  635.  
  636.  
  637.  Maverick's Directory Repair will only work on a 1541, or a 1571 in
  638.  '41 mode... And besides that, the program will *not* work miracles!
  639.  It just finds every track and sector pointer that are common to one
  640.  "link" and enters it into a new directory as "PGM 1", "PGM 2", etc...
  641.  Then YOU have to go through and figure out what they really are. If
  642.  your disk contains lots of little ML, font, or sprite data files, this
  643.  could get rather extensive. The method JBEE outlined is far faster,
  644.  and much more practical. But in the end, both methods require you to
  645.  have a fair amount of knowledge of how the DOS stores information on
  646.  the diskette. Your best weapon is a 1581 drive manual. Good luck!
  647.  
  648.  Ron :)
  649.  ------------
  650. Category 4,  Topic 4
  651. Message 46        Sun Jan 30, 1994
  652. F.OGLE [Color BBS]           at 12:24 EST
  653.  
  654. That reminds me of the days when we were developing Color 64 strictly on
  655. 1581's ... It seemed that no matter how careful we were, we had problem after
  656. problem ... It is fair to say that the 1581 can be a tad bit flaky at times,
  657. especially when you APPEND files on it.  The rule of thumb is ALWAYS to make
  658. B/U copies of any 1581 format disk that's important to you.
  659.  
  660. Take it from two dudes who have spent an entire weekend RECOVERING much of our
  661. entire work to date.
  662.  
  663. Good Luck :)
  664.  ------------
  665.  ************
  666. Topic 13        Sat Nov 30, 1991
  667. VANDENELSEN                  (Forwarded) 
  668. Sub: printer problems ?                     
  669.  
  670. This is a place for your questions about printer problems. Maybe someone has a
  671. solution!!!!!   with fingers crossed
  672. 56 message(s) total.
  673.  ************
  674.  ------------
  675. Category 4,  Topic 13
  676. Message 52        Tue Feb 01, 1994
  677. A.BAUGHER                    at 23:43 EST
  678.  
  679.         Does anyone have experience with the new Star Micronics SJ144?  I've
  680. been thinking of buying one since it was first  advertised in Tenex a few
  681. months ago, but I have some questions about it.  First of all, what type of
  682. printing does it use?  The ad doesn't specify whether it's laser or bubble
  683. jet.  Are there Geos color drivers that will work with it?  And if anyone owns
  684. one, what do you think of it in general?  I'd appreciate any info I can get,
  685. as this is a pretty new product.  Thanks,
  686.  
  687.                                                 Aaron
  688.  
  689.                                                 A.BAUGHER
  690.  ------------
  691. Category 4,  Topic 13
  692. Message 53        Wed Feb 02, 1994
  693. C128.JBEE                    at 06:26 EST
  694.  
  695.  >A.BAUGHER
  696.  > Does anyone have experience with the new Star Micronics SJ144?  The ad
  697.  > doesn't specify whether it's laser or bubble jet.
  698.  
  699.  Because they do not want to tell you it uses a ribbon type cartridge.
  700.  I read a review (in Computer Shopper?) that said that the ribbon
  701.  cartridge was only good for 20 or so pictures giving it a high page
  702.  cost of $1 per page! ->  OUCH  <-.
  703.  
  704.  Though for picture quality, it is suppose to be superior to the inkjet
  705.  because of the way to prints (the wax ribbon?) to the paper.
  706.  
  707.  > Are there Geos color drivers that will work with it?
  708.  
  709.  Anyone's guess if you do not know what other printers it emulates.
  710.  
  711.  I think the Deskjet 500 or Cannon BJ-600 might be much better deals,
  712.  unless page cost does not matter.
  713.  ------------
  714. Category 4,  Topic 13
  715. Message 54        Thu Feb 03, 1994
  716. E.WHITAKER2 [Scormus]        at 04:18 EST
  717.  
  718. Back again.  The 8 pin 3 pass geos driver online here seems to be about the
  719. best.  It does an extremely nice job of smoothing the 80 dpi output. After
  720. that, the LQ 1500 driver works about as well in 24 pin mode as the  original
  721. fx quad print driver.  The HP laser driver on line gives good output but only
  722. at 50% or 25% reduction.  That gives you 12 point and 6 point fonts, from 24
  723. point originals, and they look very nice, but you do not get a whole page.  I
  724. haven't checked into cmd's perfect print drivers, but they may have potential.
  725. Doug, if you're reading this, how about it? Would PP give me perfect print on
  726. a 300 dpi laser printer?  Anyway, that's all I have to report at this time. 
  727. The laser driver for superscript isn't quite ready.
  728.  
  729. Scormus
  730.  ------------
  731. Category 4,  Topic 13
  732. Message 55        Fri Feb 04, 1994
  733. R.STANSBERR1                 at 22:39 EST
  734.  
  735. I'm looking for help with a Gemini II printer which quit the other day. It's
  736. in the hands of a novice friend in Tracy Calif., so if anyone in that area
  737. knows of a good source of parts or service please reply. I believe it probably
  738. needs a new rom. Remote diagnosis is never easy :(
  739.  ------------
  740. Category 4,  Topic 13
  741. Message 56        Sat Feb 05, 1994
  742. A.BAUGHER                    at 09:53 EST
  743.  
  744. re: Comparing new printers
  745.  
  746.  Now I understand why they sell ribbons for the Star SJ144 in packs of three!! 
  747. $1/page is WAY too expensive, as I'm trying to start a resume and term paper
  748. word processing service.  So now I have another couple  questions:
  749.  If the Star 24-pin printers print 360dpi, why pay $300+ more for a  laser or
  750. bubble jet printer?  There must be a reason, right?  I realize that the
  751. Deskjet is much faster at 3ppm, but it only prints 300dpi. Would 300dpi be
  752. good enough for letter quality printing?  The Canon BJC-600 prints 360dpi but
  753. is not listed as much faster than the Star NX-2480R, and the Canon is $330
  754. dollars more!  Besides quieter printing, what advantage does the Canon bubble
  755. jet have over a 24-pin like the Star?  Thanks,
  756.     Aaron
  757.  ------------
  758.  ************
  759. Topic 17        Wed Oct 06, 1993
  760. B.KIRKLAND                   (Forwarded) 
  761. Sub: 1581 Problem                           
  762.  
  763. Would it be possible to replace my 1581 drive mech. with that of an "IBM" type
  764. DD 3.5" drive and keeping the original board?
  765.  
  766. 5 message(s) total.
  767.  ************
  768.  ------------
  769. Category 4,  Topic 17
  770. Message 3         Thu Feb 03, 1994
  771. R.KIRK7 [Dick]               at 19:40 EST
  772.  
  773. I recently purchased two 1581 drives both of which indicate WD1770 chips with
  774. J1 open by the 1581 Checker program. Both drives appear to work Ok and have
  775. previously been worked on a BBS without any problem.
  776.  
  777. Is there any test I can run which will demonstrate the supposed problem with
  778. these chips? I am trying to decide if I should go ahead and replace them.
  779.  
  780.  ------------
  781. Category 4,  Topic 17
  782. Message 4         Fri Feb 04, 1994
  783. F.OGLE [Color BBS]           at 01:12 EST
  784.  
  785. If you run a BBS and want to try and produce a problem, I suggest keeping e-
  786. mail and any other seq files that are regularly appended.
  787.  
  788. I have had 81's that worked fine, but in my mind at least, if there's a recipe
  789. for disaster cooking, try to avoid eating ;)
  790.  ------------
  791. Category 4,  Topic 17
  792. Message 5         Fri Feb 04, 1994
  793. CBM-ED [e.g.bell]            at 09:12 EST
  794.  
  795.  Dick:
  796.   RK> WD1770 chips with J1 open by the 1581 Checker program. Both
  797.   RK> drives appear to work Ok and have previously been worked on a
  798.   RK> BBS without any problem.
  799.  
  800.   RK> Is there any test I can run which will demonstrate the
  801.   RK> supposed problem with these chips
  802.  
  803.  The word I have always heard about this is that if 'it ain't broke, don't
  804.  fix it'.  It was said that only some of the chips were bad of the wd1770s,
  805.  and if you haven't had a problem, you probably won't.  They are not that
  806.  expensive, I don't think, so it probably wouldn't hurt, but I have no
  807.  idea where you would get them.
  808.  
  809.  Seems to me that GEOS-TIM said Fred Bowen is going to be in a conference
  810.  real soon right here in the Commodore$ area.  He would be the ideal person
  811.  to ask.  It was him that wrote the program that tells what chip is in the
  812.  drive.
  813.  ------------
  814.  ************
  815. Topic 29        Mon Jan 17, 1994
  816. E.RAFANAN                    at 01:20 EST
  817. Sub: Programming trajectory...              
  818.  
  819. Need help figuring out how to figure out trajectory.
  820. 12 message(s) total.
  821.  ************
  822.  ------------
  823. Category 5,  Topic 29
  824. Message 10        Wed Feb 02, 1994
  825. C128.JBEE                    at 06:24 EST
  826.  
  827.  > E.RAFANAN
  828.  
  829.  > So here's an example: If I start with an angle of 45, and a force of 100
  830.  
  831.  Actually, force is measured (in simple terms) Mass X Velocity.  I think you
  832.  mean velocity?
  833.  
  834.  > H.HERMAN1                    at 02:12 EST
  835.  > How in the world would you know something like that?  :)
  836.  
  837.  When I was in high school I wanted to be a college history professor, so
  838.  one qtr I combined my Fortran, History, and Physics class all into one
  839.  project.  I wanted to determine, without air power, how much U.S. sea power
  840.  it would have taken to sink the Japanese Yamato Battleship.  Because I had
  841.  to figure the maximum range, effective range, and firing rate of the guns and
  842.  torpedos, ship speed and turning radius, time of the shell in the air, etc I
  843.  had to know these same formulas :)
  844.  
  845.  I see from an earlier post he already has the formula from a book.  But
  846.  since I already dug out my text books I think I will post some books I have
  847.  used in case someone else wants to look them up in their local library.
  848.  
  849.  New Intelligent Man's Guide to Science (two volume set)
  850.  by Isaac Asimov (1965)
  851.  
  852.  The volume on Physical Science is the one you need for a basic
  853.  understanding of how rockets and shells work. (no ISBN)
  854.  
  855.  Calculus by Flanders, Korthage, Price
  856.  ISBN #0-12-259640-4
  857.  ------------
  858. Category 5,  Topic 29
  859. Message 11        Wed Feb 02, 1994
  860. CBM-ED [e.g.bell]            at 08:39 EST
  861.  
  862.   JB> volume on Physical Science is the one you need for a basic 
  863.   JB> understanding of how rockets and shells work
  864.  
  865.  I peeked at the end of this one....  you drop them on something and they
  866.  explode.  :)
  867.  ------------
  868. Category 5,  Topic 29
  869. Message 12        Wed Feb 02, 1994
  870. C128.JBEE                    at 15:06 EST
  871.  
  872.  lol!
  873.  ------------
  874.  ************
  875. Topic 32        Sun Jan 30, 1994
  876. J.SERAFINO                   at 22:30 EST
  877. Sub: file copier help                       
  878.  
  879. Help needed on ML file copier program
  880. 2 message(s) total.
  881.  ************
  882.  ------------
  883. Category 5,  Topic 32
  884. Message 1         Sun Jan 30, 1994
  885. J.SERAFINO                   at 22:31 EST
  886.  
  887.  I am attempting to write a file copy module for menuette, which I can't seem
  888. to get working.
  889.  I don't have reference material on this subject, outside of the 'commodore
  890. reference guide'.
  891.  I could use either a text file explaning the necessary kernal routines, or a
  892. documented source file to examine.
  893.  
  894.  ------------
  895. Category 5,  Topic 32
  896. Message 2         Mon Jan 31, 1994
  897. CBM-ED [e.g.bell]            at 06:42 EST
  898.  
  899.  JS:
  900.   JS>  I could use either a text file explaning the necessary kernal
  901.   JS> routines
  902.  
  903.  setnam   $ffbd  - .a=length, .x=address of name low .y = address of name hi
  904.  setlfs   $ffba  - .a=file #  .x=device #  .a=secondary address
  905.  setbnk   $ff68  - .a=bank of data         .x=bank of file name
  906.  open     $ffc0  - open file - no parameters passed.
  907.  
  908.  ex:
  909.  name   .byte "Demo File Name":.byte 0
  910.  ;
  911.  open.file = *
  912.  lda #14:ldx #<name:ldy #>name:jsr setnam
  913.  lda #0:tax:jsr setbnk
  914.  lda #6:ldx #8:tay:jsr setlfs:jsr open
  915.  
  916.  To access the data in the file, the routines you need are:
  917.  
  918.  clrchn    $ffcc     Clear all currently opened channels
  919.  chkout    $ffc9     Connect channel to file
  920.  chrout    $ffd2     Send character in .a to file
  921.            $90       status byte - non-zero if eof or file error
  922.                        Bit 6 set for end of file.
  923.  
  924.  ex:
  925.  write.bytes = *
  926.  ldx #6:jsr chkout;  load .x w/file number from  'setlfs' above
  927.  ldy #0
  928.  !01 lda ($fb),y:jsr chrout
  929.  lda $90:bne !02
  930.  iny:bne !01
  931.  beq !03
  932.  ;
  933.  !02 and %01000000:bne !03
  934.  jsr error.handler
  935.  !03 jmp clrchn;     disconnect channel and exit
  936.  ;
  937.  To read from the file, you need:
  938.  
  939.  chkin    = $ffc6
  940.  getin    = $ffe4
  941.  
  942.  ex:
  943.  read.file = *
  944.  jsr clrchn
  945.  ldx #6:jsr chkin;        .x=file # from 'setlfs' above
  946.  !01 jsr getin:ldx $90;   getin gets char in .a
  947.  jsr store.char;          store char somewhere
  948.  cpx #0:beq !01;          is status=0 - yes then loop
  949.  jsr error.handler
  950.  jmp clrchn;              exit w/channels clear
  951.  ;
  952.  To close the file:
  953.  close.file = *
  954.  lda #6:jsr close;        .a=file # from 'setlfs' above
  955.  jmp clrchn
  956.  
  957.  That is pretty much it.  The routines above are the 'higher-level'
  958.  kernal routines, and are somewhat easier to use than the lower level
  959.  ones.  :)
  960.  
  961.  ------------
  962.  ************
  963. Topic 6         Sun Dec 19, 1993
  964. CMD-DOUG                     at 12:03 EST
  965. Sub: Text File Converters and Utilities     
  966.  
  967. An area for discussion of utilities for working with and converting text.
  968. 19 message(s) total.
  969.  ************
  970.  ------------
  971. Category 6,  Topic 6
  972. Message 13        Thu Jan 27, 1994
  973. J.ROBBINS16 [JBUS]           at 02:13 EST
  974.  
  975. Wheww. Twas the right address so all is well. :) 20 mins., do you guys have as
  976. much ice and snow as us? ;]
  977.  ------------
  978. Category 6,  Topic 6
  979. Message 14        Thu Jan 27, 1994
  980. C128.JBEE                    at 03:40 EST
  981.  
  982.  Yes, I had a solid 6 inches of ice around my house and about 10-15
  983.  inches of snow.  Just like last year, it damaged the phone lines and
  984.  blew underground transformers from the phone company.
  985.  ------------
  986. Category 6,  Topic 6
  987. Message 15        Wed Feb 02, 1994
  988. C128.JBEE                    at 06:25 EST
  989.  
  990.  > D.BOBER [RENTaLASER]
  991.  > How do you convert PETASC seq. files to GEOS without all of the carriage
  992.  > returns at the end of each line.
  993.  
  994.  Some word processors allow you to unformat text, one of my favorite
  995.  features of PCiii :)
  996.  
  997.  I believe "velvetta 64" or "velvetta128" will do the job too.
  998.  ------------
  999. Category 6,  Topic 6
  1000. Message 16        Thu Feb 03, 1994
  1001. J.ROBBINS16 [JBUS]           at 03:12 EST
  1002.  
  1003. Oh yeah, those are nice converters. :] I think they're in the toolkit libs.,
  1004. but  you spelled them wrong.
  1005.  Velveeta 64, and (don't quote me) Velveeta128. They both do a nice job of
  1006. converting text files and stripping (or inserting) formatting codes in them.
  1007.  ------------
  1008. Category 6,  Topic 6
  1009. Message 17        Thu Feb 03, 1994
  1010. J.ROBBINS16 [JBUS]           at 03:14 EST
  1011.  
  1012. Opps, almost forgot to say they don't convert GEOS files, but they do a better
  1013. job of prepping them, then you can use one of the Geos text file converters to
  1014. finish up the job.
  1015.  ------------
  1016. Category 6,  Topic 6
  1017. Message 18        Thu Feb 03, 1994
  1018. C128.JBEE                    at 09:41 EST
  1019.  
  1020.  Good thing I did not have to spell potato ;)
  1021.  ------------
  1022. Category 6,  Topic 6
  1023. Message 19        Fri Feb 04, 1994
  1024. J.ROBBINS16 [JBUS]           at 03:33 EST
  1025.  
  1026. No prob.. :D (everybody thinks of the cheese first)(darn thing even uses the
  1027. same color as the cheese box)  ;)
  1028.  ------------
  1029.  ************
  1030. Topic 14        Sun Dec 19, 1993
  1031. CMD-DOUG                     at 12:09 EST
  1032. Sub: Ink-Jet Printers                       
  1033.  
  1034. An area for discussion of ink-jet printers.
  1035. 25 message(s) total.
  1036.  ************
  1037.  ------------
  1038. Category 6,  Topic 14
  1039. Message 22        Wed Feb 02, 1994
  1040. C128.JBEE                    at 06:22 EST
  1041.  
  1042.  > D.WADLEIGH [Don]
  1043.  > The messsages here suggest that people are using Ink Jet and Laser
  1044.  > printers with C128's.  I wish that someone could give some detail
  1045.  > about how they do this.  (like write a book).
  1046.  
  1047.  I print books of 120-150 pages on my laser using my C-128 :)   I do have
  1048.  a series of articles about using your word processors with scaleable fonts
  1049.  and such.  I am just waiting to purchase a HP4 duplex with PCL5 before
  1050.  finishing the series of articles so it is not obsolete too fast.  Already
  1051.  worked it out for the Epson dot matrix printers too (Example 3250 etc)
  1052.  Will post more in Cat #11 when the time comes.
  1053.  
  1054.  The PSRT is also a good place for learning the basics on using
  1055.  Postscript to print documents.
  1056.  ------------
  1057. Category 6,  Topic 14
  1058. Message 23        Wed Feb 02, 1994
  1059. C128.JBEE                    at 06:25 EST
  1060.  
  1061.  >R.WAGNER4
  1062.  >I have a cannon bjc-600 color inkjet that prints in black & white
  1063.  
  1064.  There is a recently uploaded color 24 pin driver for GEOS that might work
  1065.  with this printer.  Does 16 colors.
  1066.  
  1067.  Even if it does not, would you mind sending a sample copy of the color
  1068.  print out from one of the demo tests?  I am very interesting in buying
  1069.  this printer but I am not quite sure about the color quality.
  1070.  
  1071.  Thank you,
  1072.  JBEE
  1073.  (:
  1074.  set 6
  1075.  ------------
  1076. Category 6,  Topic 14
  1077. Message 24        Thu Feb 03, 1994
  1078. R.WAGNER4                    at 22:33 EST
  1079.  
  1080. To JBEE Send me E-mail and   or mail me your address so I can send you a
  1081. sample of Black  & White PRe  erfect Print out with Geocable driver           
  1082. sample and a color printout of the various drivers ive   I've     I've used on
  1083. my Cannon BJC-600 color bubblejet printer. I'm having trouble getting       
  1084. getting a color driver to work proberly.      perly, It prints out nice with
  1085. G.h.w   H.W.S 'S SHELL PRINTER DRIVER 9 24pin90gcvc   & 8pin color            
  1086. epson 90gc & epson 8pin  color driver combinere  d put the printer       
  1087. printer skips to the next page when it gets to the bottom of a GEo  eopaint
  1088. document. SENd to
  1089.  Richard H. Wagner
  1090.  10615 W. 97th Terrace
  1091.  Overland Park, Ks 66214 or call (  (913) 888-2465
  1092.  ------------
  1093. Category 6,  Topic 14
  1094. Message 25        Fri Feb 04, 1994
  1095. CBM-ED [e.g.bell]            at 09:14 EST
  1096.  
  1097.  RW:
  1098.  
  1099.  You might want to go to the settings page here on GEnie, at page 900,
  1100.  and change your setting for the delete character that GEnie recognizes
  1101.  from you.  Appears your setting is not deleting.  :)
  1102.  ------------
  1103.  ************
  1104. Topic 24        Sun Dec 19, 1993
  1105. CMD-DOUG                     at 12:12 EST
  1106. Sub: GEOFILE                                
  1107.  
  1108. An area for discussion of GEOFILE 64 and 128.
  1109. 8 message(s) total.
  1110.  ************
  1111.  ------------
  1112. Category 6,  Topic 24
  1113. Message 4         Thu Jan 27, 1994
  1114. W.WILEY2                     at 22:26 EST
  1115.  
  1116. How about multiple sorts in geofile?
  1117.  ------------
  1118. Category 6,  Topic 24
  1119. Message 5         Thu Jan 27, 1994
  1120. W.WILEY2                     at 22:33 EST
  1121.  
  1122. OK, Doug, I'll give it a try... Now for my next attempt to stump you:
  1123.   I want to sort records by date AND by another number field, so I tried to
  1124. first sort by date, then sort by the other 'number' field.  But I cant seem to
  1125. keep records in chronological order when I resort.  I must mention that when I
  1126. entered the data, they were not entered in chronological order; rather, by
  1127. random order. When changing sort fields, is the program default- ing back to
  1128. the order I entered the records in before performing the sort? That is the
  1129. only reason I can see for the problem... Do you follow me?
  1130.  ------------
  1131. Category 6,  Topic 24
  1132. Message 6         Fri Jan 28, 1994
  1133. W.WILEY2                     at 03:39 EST
  1134.  
  1135. Doug, I followed your advice re: leaving enough space for temp. swap of inf o
  1136. on the disk.  On my 1750 REU I had only Geofile 128 and my data file
  1137.  (74k), and nothing else.  The same error keeps showing up.  After 3  tries,
  1138. it aborts to desktop, as manual states.  I try printing both from the options
  1139. menu and the file menu--same response.  I cant even get to the point where you
  1140. define the printout- 'fieldnames printed-y/n', etc. .... I'm getting nervous
  1141. about losing all my data entry time....any other ideas for me?  --Thanks 
  1142.  ------------
  1143. Category 6,  Topic 24
  1144. Message 7         Fri Jan 28, 1994
  1145. CMD-DOUG                     at 07:51 EST
  1146.  
  1147. RE: Sorting by two fields - I think you're right about what geoFile is doing;
  1148. starting the sort in the order of when the records were entered. There's no
  1149. way that I know of to sort by two fields, other than to add a sort field and
  1150. manually combine data from the two fields into it. A lot of work, but perhaps
  1151. worthwhile if this is the way you want your data sorted all the time.
  1152.  
  1153. RE: Error Swapping GeoFile - The only other reason I can think of for this to
  1154. show up would be a corrupt copy of GEOFILE itself (I wouldn't think that a
  1155. corrupt data file would generate that specific error). Have you tried to re-
  1156. copy from your original? Also, try making another data file using the same
  1157. copy on the same drive to see if the size of the data file is what is
  1158. effecting this. Having just inherited all of these programs, we're probably
  1159. going to run into things we don't know much about yet - and Geoworks hasn't
  1160. supplied us with any 'problem data' at all - so we're going to have to get up
  1161. to speed on these things on our own, and without benefit of source code or
  1162. help from the authors.
  1163.  ------------
  1164. Category 6,  Topic 24
  1165. Message 8         Sun Jan 30, 1994
  1166. W.WILEY2                     at 13:30 EST
  1167.  
  1168. Doug:  The solutions outlined above worked like a charm!  Since I used BOTH
  1169. ideas at once, I cant say which was the true solution, but suffice it to say
  1170. that I am now able to use my file, i.e., print it out in the formats  I had
  1171. hoped.  Though I must say I am a bit disappointed that I cant accomplish the
  1172. kind of sortin   g I need-  I need to be able to have one sort rearrange the
  1173. records in a permanent fashion, so that my 2nd sort will effectively keep my
  1174. first sort in some kind of prioritized sequence. Now it simply un-does the
  1175. first sort when I try the 2nd... ... Oh, well...  Thanks for getting me to
  1176. THIS point- I can use the  file, just not quite ideally.   -Will  :)
  1177.  ------------
  1178.  ************
  1179. Topic 41        Thu Jan 13, 1994
  1180. M.RANDALL2 [Maurice]         at 20:45 EST
  1181. Sub: geoSHELL                               
  1182.  
  1183. Any possible question concerning geoSHELL may be directed at this topic. I
  1184. will be available to answer any questions about it's use.
  1185. 4 message(s) total.
  1186.  ************
  1187.  ------------
  1188. Category 6,  Topic 41
  1189. Message 2         Sun Jan 30, 1994
  1190. M.RANDALL2 [Maurice]         at 17:22 EST
  1191.  
  1192.  If you own a XETEC Super Graphics Gold printer interface, you may
  1193.  know that it can print banners. I have one and just recently 
  1194.  discovered that I can print banners right from geoSHELL with this
  1195.  interface. I accomplish it with the following exec file:
  1196.  
  1197.  pconf 415np
  1198.  pcode 83 65 55 13^
  1199.  pconf 414np
  1200.  @p
  1201.  echo Commodore^
  1202.  @p
  1203.  pconf 47np
  1204.  
  1205.  The first line instructs the pcode command to send control codes
  1206.  to secondary address 15, the command channel of the interface. The
  1207.  second line sends the same thing as PRINT#15,"SA7". This tells the
  1208.  banner routines to use the uppercase/lowercase character set. The
  1209.  third line tells geoSHELL to send any printer output to channel 14,
  1210.  which is the Gold interface's banner channel. Then line 4 turns 
  1211.  on geoSHELL's printer output. Line 5 uses the echo command to send
  1212.  a string of characters to the interface. In this example, it is sending
  1213.  'Commodore' and this is what will be printed on the banner. Then line
  1214.  6 toggles the printer output back off. Line 7 finishes up by 
  1215.  resetting my normal pconf settings. This is handy for doing any
  1216.  quick banner. The interface lets you choose the font you want to use
  1217.  also. I haven't tried all the different modes, but I know it won't
  1218.  work if the interface is in transparent mode. I have mine set to
  1219.  'GOLD' mode.
  1220.  ------------
  1221. Category 6,  Topic 41
  1222. Message 3         Fri Feb 04, 1994
  1223. J.PACKARD [CAPRI]            at 21:08 EST
  1224.  
  1225. How do you do a Validate from within geoshell? And also is there a way to
  1226. delete more than one file at a time without creating an execute file to do
  1227. this? Thanks in advance
  1228.  ------------
  1229. Category 6,  Topic 41
  1230. Message 4         Sat Feb 05, 1994
  1231. M.RANDALL2 [Maurice]         at 01:33 EST
  1232.  
  1233. I'm currently working on a validate command and will upload it  here as soon
  1234. as it is finished. It will be able to validate any kind of disk, including
  1235. ramdisks and native partitions. As for deleting multiple files, the easiest
  1236. way is to make use of the 'insert' command followed by 'del' in a function
  1237. key. Then use 'cdir' to display the files you wish to select from. Just click
  1238. once on the desired file, hit the function key and then return. It's not quite
  1239. the same as deleting multiple files in one fell swoop, but even if you could,
  1240. you would still at one time have to select each file one at a time from a
  1241. list. I've just finished a new filecopy command to replace the existing 
  1242. 'fcopy'. This is capable of copying multiple files. You can select files
  1243. according to filetype, date of creation, or with wildcards. It  will also
  1244. interact with you to a certain degree. As soon as beta testing is finished, I
  1245. will upload it here also. It looks good, as I've been using this copy command
  1246. entirely for the last week now as well as two other people. Some other new
  1247. commands include: ifont, sfont, and pwrite. 'ifont' will install a new font
  1248. into your copy of geoSHELL if you are tired of looking at the existing one.
  1249. 'sfont' is for programmers and will create source code for any existing GEOS
  1250. font so that it may be assembled directly into a program. 'pwrite' will print
  1251. a GeoWrite document using your printer's own built-in font. Oh and there is
  1252. also the 'mem' command that can do what BASIC's peek and poke commands can do.
  1253. One more command that I'm creating right now is called 'maxpatch'. This is a
  1254. command that you would usually include in your boot startup file. This will
  1255. patch the various disk drivers that are being used so that you can copy more
  1256. than 144 files to a 1581 disk or RAM1581. It will also increase the maximum
  1257. allowed on a native partition instead of the existing 192 that the drivers are
  1258. currently limiting you to. Remember, geoSHELL does not care how big a
  1259. directory is, you are only limited by the what the disk drive allows, or in
  1260. this case, the disk driver.
  1261.  ------------
  1262.  ************
  1263. Topic 42        Sun Jan 16, 1994
  1264. J.BARBER9 [dan barber]       at 16:14 EST
  1265. Sub: geospell help!!!!                      
  1266.  
  1267. I am having problems with geospell.  Can anyone help me? Thanks in advance.
  1268.  
  1269. 6 message(s) total.
  1270.  ************
  1271.  ------------
  1272. Category 6,  Topic 42
  1273. Message 5         Sat Jan 29, 1994
  1274. J.BARBER9 [dan barber]       at 12:50 EST
  1275.  
  1276. Thanks for the info.  I am useing a 1581, a 1541, and a 1750 ram.  But I think
  1277. I fixed the problem. I read a geohelp colum in RUN and it mentioned that
  1278. haveing somthing in the header might cause problems.  And come to find out I
  1279. had a number PAGE comand in it! So I think that this was my problem.  Although
  1280. I am not certain.  One more thing, has anyone else had problems spell checking
  1281. a document longer than 9 pages?  I can advoid the problem (before dleating the
  1282. header) by just spell checking 1-9.  And then just page 10 by itself.  Thanks
  1283. again for all the info.
  1284.  
  1285. Dan
  1286.  ------------
  1287. Category 6,  Topic 42
  1288. Message 6         Tue Feb 01, 1994
  1289. R.ROBBINS7 [GOBUSTER]        at 04:50 EST
  1290.  
  1291. Son-of-a-Gun, I forgot all about that problem. :Z P.S. that same progblem will
  1292. happen if you put DATE in the footer or header I never had the 9 page spell
  1293. checking problem, but I did find that if I use "replace ALL" too many times it
  1294. will do strange things and take ten years to finish up checking a document.
  1295. BTW  are you using the 64 or 128 version of geoSpell? the 64 version islower
  1296. than the 128 version, and has some weird bugs the 128 version doesn't have.
  1297.  ------------
  1298.  ************
  1299. Topic 50        Wed Nov 03, 1993
  1300. GEOS-TIM                     at 01:43 EST
  1301. Sub: CHATROOM GUESTS ON TUESDAY NIGHTS      
  1302.  
  1303. Dates and times of "Guest speakers" in GEOS DEN.  These will be informal  chat
  1304. formats  with formal "speaking" threads throughout the visit. This will be on
  1305. Tuesday nights in GEOS-TIM's (that's me) RTC. SEE YOU THERE!
  1306. 29 message(s) total.
  1307.  ************
  1308.  ------------
  1309. Category 6,  Topic 50
  1310. Message 23        Tue Feb 01, 1994
  1311. H.HERMAN1                    at 07:15 EST
  1312.  
  1313.  Tim!
  1314.  
  1315.  oh Tim!!!
  1316.  
  1317.  uh.   um....    file number 14879?????    :/
  1318.  
  1319.  Howie
  1320.  ------------
  1321. Category 6,  Topic 50
  1322. Message 25        Thu Feb 03, 1994
  1323. GEOS-TIM                     at 23:39 EST
  1324.  
  1325. I have confirmation that Nick Rossi will be a guest in my RTC on February
  1326. 15th. at 10 pm. EST.  He will be talking about his new 9.5 version of 
  1327. Novaterm.  So mark the 15th on your calendar, and I'll be seeing you there.   
  1328. :) -Tim
  1329.  ------------
  1330. Category 6,  Topic 50
  1331. Message 27        Fri Feb 04, 1994
  1332. H.HERMAN1                    at 01:18 EST
  1333.  
  1334. gee Tim....
  1335.  
  1336. Now you want me to do a search for file number 138799?
  1337.  
  1338. LOL!!!
  1339.  
  1340. Howie
  1341.  ------------
  1342. Category 6,  Topic 50
  1343. Message 29        Sat Feb 05, 1994
  1344. GEOS-TIM                     at 21:47 EST
  1345.  
  1346.  =========================================
  1347.    CONFERENCE TRANSCRIPTS (take three <g>)
  1348.  =========================================
  1349.    I am writing this announcement for the
  1350.  third time, and hopefully I will get it 
  1351.  right this time.LOL
  1352.    If you missed the three conferences 
  1353.  that were held in my RTC the last few 
  1354.  months, Do Not Despair!!!  They have
  1355.  been uploaded in the form of lightly
  1356.  edited transcripts.  They are as follows:
  1357.  
  1358.   Guest      Inof                file#
  1359.  Maurice   Programmer of geoShell
  1360.  Randall   Invoice writerII,
  1361.            geoMorph, etc.       #13879
  1362.  
  1363.  Tom     Editor of Compute's
  1364.  Netsel  Gazette.               #13909
  1365.  
  1366.  Jim     Author of geoWizard
  1367.  Collette  Font Editor,Minidesk
  1368.           Laser applications,etc.
  1369.                                #14163
  1370.  
  1371.  Tony    Author of Color64 bbs
  1372.  Tolle                         to be
  1373.                              uploaded
  1374.                              in the 
  1375.                          near future.
  1376.  ------------
  1377.  ************
  1378. Topic 2         Thu Mar 07, 1991
  1379. WHOLE.NOTE [Bruce]           (Forwarded) 
  1380. Sub: What is SID Music?                     
  1381.  
  1382. This topic contains information about SID music files, the most common  music
  1383. files for the 64 and 128, how to order the program to make them, and how to
  1384. order the SID Symphony cartridge allowing 6 voice stereo.
  1385. 8 message(s) total.
  1386.  ************
  1387.  ------------
  1388. Category 7,  Topic 2
  1389. Message 7         Mon Jan 31, 1994
  1390. LLOYD                        at 03:24 EST
  1391.  
  1392. Somewhere, I have some programs, dloaded from Q- which will print the notes,
  1393. but not on a music score. I know that I have it for the C128. I think that I
  1394. have it for the C64.
  1395.   I'll upload if I find it.
  1396.  ------------
  1397. Category 7,  Topic 2
  1398. Message 8         Wed Feb 02, 1994
  1399. LLOYD                        at 02:31 EST
  1400.  
  1401. Change that. I think that it cam with the SID cartridge so you'll have to talk
  1402. to JBee.
  1403.   Lloyd
  1404.  ------------
  1405.  ************
  1406. Topic 3         Thu Mar 07, 1991
  1407. WHOLE.NOTE [Bruce]           (Forwarded) 
  1408. Sub: BRAVO!!!!  Comments on Music Files     
  1409.  
  1410. This topis is provided as a place to tell other folks the filenames of the
  1411. files you really enjoyed!  A place to let the music artists know that their
  1412. countless hours of arranging and programming are appreciated!
  1413. 13 message(s) total.
  1414.  ************
  1415.  ------------
  1416. Category 7,  Topic 3
  1417. Message 13        Mon Jan 31, 1994
  1418. LLOYD                        at 03:25 EST
  1419.  
  1420.   Grandma/Reindeer is a classic!
  1421.  ------------
  1422.  ************
  1423. Topic 17        Mon Jan 18, 1993
  1424. R.PATERNOST2 [Ray]           at 22:01 EST
  1425. Sub: Viewers for Geos                       
  1426.  
  1427. Info on displaying graphics screens from other software packages under Geos.
  1428. 3 message(s) total.
  1429.  ************
  1430.  ------------
  1431. Category 7,  Topic 17
  1432. Message 3         Mon Jan 31, 1994
  1433. LLOYD                        at 03:31 EST
  1434.  
  1435. Graphic Storm was from Joe.
  1436.   ScrapIt will also convert Koala's to GeoPaint.
  1437.  ------------
  1438.  ************
  1439. Topic 20        Mon Mar 22, 1993
  1440. T.RUTTER2 [Troy Rutter]      at 00:10 EST
  1441. Sub: SID Artists Check In                   
  1442.  
  1443. This topic is for all the SID artists using Craig Chamberlain's COMPUTE!
  1444. editor to announce themselves and chat about what files they are working on. 
  1445. Drift welcome. >;D
  1446. 21 message(s) total.
  1447.  ************
  1448.  ------------
  1449. Category 7,  Topic 20
  1450. Message 18        Mon Jan 31, 1994
  1451. LLOYD                        at 03:37 EST
  1452.  
  1453. I also agree!
  1454.   But, when you've been a member as long as I have been, well, I had my
  1455. choice. (I joined GEnie 4 months after she started.)
  1456.                                                              Lloyd
  1457.  ------------
  1458. Category 7,  Topic 20
  1459. Message 19        Tue Feb 01, 1994
  1460. F.OGLE [Color BBS]           at 01:07 EST
  1461.  
  1462. Shucks, that's what I call loyalty :)
  1463.  ------------
  1464. Category 7,  Topic 20
  1465. Message 20        Wed Feb 02, 1994
  1466. LLOYD                        at 02:03 EST
  1467.  
  1468. You should see my grey hair....
  1469.  ------------
  1470. Category 7,  Topic 20
  1471. Message 21        Wed Feb 02, 1994
  1472. H.HERMAN1                    at 07:00 EST
  1473.  
  1474. Hey Lloyd?
  1475.  
  1476. You got hair?    :)
  1477.  
  1478. Howie
  1479.  ------------
  1480.  ************
  1481. Topic 23        Mon Jul 26, 1993
  1482. S.CRAIK [Steve]              at 03:05 EDT
  1483. Sub: looking 4 amiga iff pic 2 basic 8 conv 
  1484.  
  1485.  I'm looking "ACBMB8" by Loren Lovhaug.  I'd noticed in GEOWORLD iss.
  1486.  #23 an article by Paul A. Hughes "Inter-Computer Graphics Interchange"
  1487.  I searched for it here.. but, couldn't find. Article mentions Q-link
  1488. 5 message(s) total.
  1489.  ************
  1490.  ------------
  1491. Category 7,  Topic 23
  1492. Message 1         Mon Jan 31, 1994
  1493. LLOYD                        at 03:40 EST
  1494.  
  1495. I should have that program. I'll upload it when I find it.
  1496.  ------------
  1497. Category 7,  Topic 23
  1498. Message 2         Mon Jan 31, 1994
  1499. L.SCHONDER [Lou]             at 04:59 EST
  1500.  
  1501. That sounds interesting!
  1502.  ------------
  1503. Category 7,  Topic 23
  1504. Message 3         Mon Jan 31, 1994
  1505. C128.JBEE                    at 12:12 EST
  1506.  
  1507.  I believe it was removed from Qlink, GEnie, and CIS when I took over
  1508.  TC-128/64 because it was a TC-128/64 program and was not properly
  1509.  credited to the magazine in the program REMs.
  1510.  ------------
  1511. Category 7,  Topic 23
  1512. Message 4         Wed Feb 02, 1994
  1513. LLOYD                        at 02:08 EST
  1514.  
  1515. Ooops....
  1516.   I re-up'd it the other night. JBee, you may want to grab it.
  1517.  
  1518.   Lloyd
  1519.  ------------
  1520. Category 7,  Topic 23
  1521. Message 5         Wed Feb 02, 1994
  1522. C128.JBEE                    at 15:08 EST
  1523.  
  1524.  BTW, the file is live in Lib#29.
  1525.  ------------
  1526.  ************
  1527. Topic 39        Thu Dec 23, 1993
  1528. D.BOBER [RENTaLASER]         at 01:41 EST
  1529. Sub: VDC interlace mode                     
  1530. 20 message(s) total.
  1531.  ************
  1532.  ------------
  1533. Category 7,  Topic 39
  1534. Message 20        Wed Feb 02, 1994
  1535. C128.JBEE                    at 06:25 EST
  1536.  
  1537.  > D.BOBER [RENTaLASER]
  1538.  > Any other Ideas?      :/
  1539.  
  1540.  No, I am all out of them :P   All I can say at this point is to contact
  1541.  the author "r.kane" and see if he can whip up some sort of fix.
  1542.  ------------
  1543.  ************
  1544. Topic 40        Sun Jan 09, 1994
  1545. C.YOUNG36 [Charlie]          at 14:33 EST
  1546. Sub: legal problems with SIDS on GEnie      
  1547.  
  1548. All SIDs that might be copyrighted have been deleted from GEnie. Let's talk
  1549. about it.
  1550. 14 message(s) total.
  1551.  ************
  1552.  ------------
  1553. Category 7,  Topic 40
  1554. Message 10        Sun Jan 30, 1994
  1555. C.YOUNG36 [Charlie]          at 22:20 EST
  1556.  
  1557. I too would like to know who is suing CS.
  1558.  
  1559. I figured out that, yes, I was dreaming.  There is no longer any catagory 
  1560. where I can upload my original (uncopyrighted) work.  The only SID  catagories
  1561. left are for classical SIDs which could not possibly be  copyrighted.
  1562.  
  1563. The more I think about this, the madder I get.  GEnie seems to have  tucked
  1564. tail and run on this issue -- they can dish out legal grief,  but they can't
  1565. take it.  GEnie threatens those who would dare upload  their own stuff to any
  1566. other system.  That could be misinterpretted,  so here is an example.
  1567.  
  1568. Let's say I write a nifty program and upload it to GEnie.   GEnie prohibits me
  1569. from also uploading it to any other system.   I may not like it, but that is
  1570. the policy.  That is also why some  stuff does not get uploaded to GEnie.
  1571.  
  1572. If GEnie can be so tough about that, why is GEnie so quick to wipe out  all
  1573. recent SIDs just because there is a slight possibility of some  trouble to
  1574. them?  GEnie is a big company with the resources to go to  court to protect
  1575. themselves.  Instead they just delete all  threatened files.
  1576.  
  1577. Why hasn't GEnie deleted all the MIDI files?  Could it be that they  value
  1578. MIDI people more than SID people?  Is this discrimination?
  1579.  
  1580. Will GEnie delete all GIFs if someone sues regarding a copyrighted  picture
  1581. being available on a BBS?  Where will it end?  
  1582.  
  1583. Will all software files be deleted one day because a file similar to a 
  1584. copyrighted program was on the system and someone filed a law suit?
  1585.  
  1586. Am I the only one disappointed in GEnie for throwing out our SIDs?
  1587.  
  1588.    Charlie
  1589.  ------------
  1590. Category 7,  Topic 40
  1591. Message 11        Mon Jan 31, 1994
  1592. H.HERMAN1                    at 03:35 EST
  1593.  
  1594. Charlie,
  1595.  
  1596. Are you sure that CIS is being sued?  I have heard nothing about this.
  1597.  
  1598. Last time I looked, a few days ago, there were still lots of SID files there.
  1599.  
  1600. Howie
  1601.  ------------
  1602. Category 7,  Topic 40
  1603. Message 12        Mon Jan 31, 1994
  1604. LLOYD                        at 04:05 EST
  1605.  
  1606. JBee
  1607.    I agree with Howie. CIS has all kinds of SID files. None have been deleted.
  1608.    Most of the SIDs are songs which are older then 1978 or 1979. This is the
  1609. year that the copyright law was change from 15 or 17 years to the author's
  1610. lifetime plus 50 years.
  1611.    So, the copyright should have run out on anything copyrighted before 1976.
  1612.    Same with art and photos.
  1613.    Also, today you can collectivily copyright a whole series of things.
  1614.    Back then, each item had to have a seperate copyright. The laws were 
  1615. tougher on the artist then. But, we got them the way we like them now.
  1616.    But, there shouldn't be any problems with something written prior to 1976.
  1617.    They're still writing the laws on altering artwork with a computer. But, it
  1618. used to be that you could re-create artwork with artistic license, making
  1619. obvious changes, and call it original. Most people who write SIDs do this.
  1620.    (Humm... I'm getting longwinded again.)
  1621.                                                              Later
  1622.                                                                 Lloyd
  1623.  ------------
  1624. Category 7,  Topic 40
  1625. Message 13        Mon Jan 31, 1994
  1626. L.SCHONDER [Lou]             at 05:03 EST
  1627.  
  1628. SID chips can make some beautiful sounds, but can the sounds REALLY be
  1629. considered THAT close to the original? Hmmmmm...
  1630.  ------------
  1631. Category 7,  Topic 40
  1632. Message 14        Mon Jan 31, 1994
  1633. CBM-ED [e.g.bell]            at 06:53 EST
  1634.  
  1635.  Charlie:  I can't address the issue with the SIDS, but I have never 
  1636.  heard it said that GEnie does not allow you to upload a file you have
  1637.  uploaded here to another system.  Logic would argue against them trying
  1638.  that for the very reason the problem with the SIDS has come up...
  1639.  copyright.  For GEnie to recognize this in terms of the SIDS, they would
  1640.  likewise have to recognize it in terms of anything you would write and
  1641.  upload here... namely that you have the copyright.... the right to do with
  1642.  it as you please.
  1643.  
  1644.  As for being mad, I am not a SID person, but I would not be upset with
  1645.  GEnie over this.  Why not get mad at the lawyers who have decided to
  1646.  enforce the laws as they exist... or the artists who did the original
  1647.  song for being nit-picky enough to press the issue regarding the songs
  1648.  made into SID format.  This is a CRAZY world, and it seems even moreso
  1649.  in the law courts.  THAT makes me mad, but push comes to shove, I would
  1650.  cover my fanny as fast as anyone else, and the bigger corporations also
  1651.  have more to lose.... bigger  plums for people inclined toward litigation.
  1652.  I get very frustrated the way the courts are deciding things these days,
  1653.  but the message is not lost on me, and I'm not even one of GEnie's legal
  1654.  department.  I understand your frustration, but I understand GEnie's
  1655.  position too.  I suspect you are going to see the pool of SID's dry up 
  1656.  on legitimate local BBS's too eventually.
  1657.  ------------
  1658.  ************
  1659. Topic 3         Fri Oct 26, 1990
  1660. D.RAY1                       at 01:41 EDT
  1661. Sub: Aprotek Minimodem C24                  
  1662.  
  1663. Enter your experiences with this Commodore compatible 2400 baud modem here.
  1664. 52 message(s) total.
  1665.  ************
  1666.  ------------
  1667. Category 8,  Topic 3
  1668. Message 51        Sat Feb 05, 1994
  1669. S.MERZON [Steve]             at 18:52 EST
  1670.  
  1671. i have just purchased a mim   minimodem c24 and I can't get it to work in 2400
  1672. bu\  aud mode.  When I try to connect to Genie using wizard128, desterm2.00 or
  1673. proterm128v16.1,  I get a connect 2400 mee ssage, but instead of the U# promo
  1674. pt,
  1675.  i I get "ff" instead of          !  I was able to connect at 1200 baud only
  1676. through Desterm.  Neither WNi  ia zard o nore  Proterm would connect at       
  1677. get   allow me to get past  the connect message.  My 1670 modem works fine
  1678. with all three programs Could the modem be defective or am I doing something
  1679. wrong? Any suggestions?
  1680.                    Stef ve e *e
  1681.  ------------
  1682. Category 8,  Topic 3
  1683. Message 52        Sat Feb 05, 1994
  1684. CBM-ED [e.g.bell]            at 19:49 EST
  1685.  
  1686.  It sounds like the modem is connecting but you are not telling GEnie you
  1687.  are online fast enough, or at all.  When you get the 'CONNECT 2400' 
  1688.  message, type 'hhhhh'.  You don't have to press RETURN.  I thought Wizard
  1689.  did that automatically.  I know I uploaded a DesTerm script for GEnie tho.
  1690.  But the f'f is definitely a sign that GEnie is not getting the 'hhhhh'
  1691.  soon enough, and by that time, all you can do is hang up and try again.
  1692.  If you are getting the CONNECT message, there is probably nothing at all
  1693.  wrong with your modem.  
  1694.  
  1695.  When I first saw your message, I thought perhaps you had the carrier 
  1696.  test set wrong.  It is opposite on the minimodem, but if that had been the
  1697.  case, you would probably have see a message telling you you were already
  1698.  online.  (Wizard does tell you that, right Mark?  :)  If Wizard does not
  1699.  tell you that, then that could also be the problem.  O, and does Wizard
  1700.  send the &c1 command to tell the modem to follow the carrier instead of
  1701.  being 'on' all the time???
  1702.  ------------
  1703.  ************
  1704. Topic 23        Thu Feb 11, 1993
  1705. CBM-MARK                     at 01:55 EST
  1706. Sub: RTC Master ->  Looking for help!       
  1707.  
  1708. A place to ask for help with RTC Master.
  1709. 127 message(s) total.
  1710.  ************
  1711.  ------------
  1712. Category 8,  Topic 23
  1713. Message 120       Thu Jan 27, 1994
  1714. C128.JBEE                    at 03:43 EST
  1715.  
  1716.  V2.02 is being re-released as shareware, which once registered gets you
  1717.  V2.04 the commercial version.  Please note that V2.02 will be fully
  1718.  functional, V2.04 just has more goodies like an editor etc.
  1719.  
  1720.  I expect both will be ready for prime time before the end of Feb.
  1721.  ------------
  1722. Category 8,  Topic 23
  1723. Message 121       Sun Jan 30, 1994
  1724. R.KIRK7 [Dick]               at 18:35 EST
  1725.  
  1726. Ok E.G. Bell I uploaded my RTCM script for your review. It is file 14230 and
  1727. titled scrp.rkirk.7
  1728.  
  1729. thanks for the trouble. Any help will be appreciated.
  1730.  ------------
  1731. Category 8,  Topic 23
  1732. Message 122       Sun Jan 30, 1994
  1733. CBM-ED [e.g.bell]            at 20:43 EST
  1734.  
  1735.  Richard:  I assume you read my email to you so I won't go into that
  1736.  subject here.  I got your script and changed it for me, then tried it
  1737.  out.  I got all the way through, but there are no marked cats for me in
  1738.  any of the BB's you attend so obviously I didn't see any mail.  However
  1739.  I kind of suspect the trouble may be in slow response time from GEnie.
  1740.  Sometimes I call around 11 or 11:20 at night and end up forcing my modem
  1741.  to hang up because it gets so slow.  You will know this is the problem
  1742.  if you get timeout messages from the script.  If that is not the problem,
  1743.  can you describe what happens when the script stops working.  From what
  1744.  I can see, your script is not only nicely thought out, there are no
  1745.  problems I can see, and indeed, it covers more situations than most of
  1746.  the ones I use.  :)  I don't have any scripts that cover that many RT's,
  1747.  but as I said, using yours, I got through every one of them, altho w/o
  1748.  any mail.
  1749.  
  1750.  I haven't looked very close at the actual script text... do you have a
  1751.  'save' command in there, or do you just go back and read them after the
  1752.  script is finished.
  1753.  
  1754.  I will probably go into a couple of those BB's and mark some things when
  1755.  I get time to see if I can make the script stop, but let me know just
  1756.  how the stops are occurring....  Thanks, and the script you have is very
  1757.  well done!
  1758.  ------------
  1759. Category 8,  Topic 23
  1760. Message 123       Wed Feb 02, 1994
  1761. R.KIRK7 [Dick]               at 22:17 EST
  1762.  
  1763. CBM-ED
  1764.  
  1765. The script messes up by sending me a SCRIPT TERMINATED SUCCESSFULLY  +  f]B! 
  1766. wU+  M9    m ;  _ )$  o?* Y y {   message or something similiar in the middle
  1767. of capturing messages.
  1768.  
  1769. the problem appears to be in not having anough time allocated to wait for the
  1770. next prompt. Changing the time at the end of the script doesn't seem to make
  1771. any difference. Take a look at that and tell me how long it should stay on a
  1772. BB before going to the next one.
  1773.  
  1774. Thanks for the trouble. Looks like a little noise crept in in line 4. If I
  1775. knew how to change it I  would. Sorry about that.
  1776.  ------------
  1777. Category 8,  Topic 23
  1778. Message 124       Wed Feb 02, 1994
  1779. CBM-ED [e.g.bell]            at 23:27 EST
  1780.  
  1781.  Dick:
  1782.   RK> messes up by sending me a SCRIPT TERMINATED SUCCESSFULLY
  1783.   RK> message or something
  1784.  
  1785.  
  1786.  It really sounds to me, from this, like the script is finishing what it is
  1787.  told to do.  I thought it was terminating unsuccessfully.  I'll have to
  1788.  take a closer look at your script, but as I said already, it got me through
  1789.  all of the RT's and back to page 1, as it should have from what I saw of
  1790.  it.
  1791.  
  1792.   RK> in not having anough time allocated to wait for the next
  1793.   RK> prompt. Changing the time at the end of the script doesn't
  1794.   RK> seem to make any difference
  1795.  
  1796.  I don't think that is the problem.  If it were, you would get a message
  1797.  that the script timed out, and you would be asked to make an entry at the
  1798.  keyboard to resume.  I see you are set up for 80 seconds, which is 20
  1799.  seconds more than I use in any of mine.  If you are getting all the way to
  1800.  the successful message w/o seeing a timeout message or being asked to press
  1801.  a key, timing is not a problem.
  1802.  
  1803.  As for how long you should stay in a BB, the time setting only comes into
  1804.  play for periods of 'silence' from the modem.  As long as it gets info
  1805.  it won't time out ever.  It will stay in a BB until it gets the expect 
  1806.  string you have set that tells it it is finished.  In your case, the
  1807.  prompt is '1 ?' as I saw it.  My problem testing this is getting marked
  1808.  messages in all of those categories.  w/o messages, your script sailed me
  1809.  through all of them.  Does this happen on the same BB every time?  Does it
  1810.  happen on the last one every time?  Are there messages in the buffer that
  1811.  contain the expect string.  That gets me sometimes too...  someone quotes
  1812.  exactly the expect string I am looking for and it fools the script.  The
  1813.  only way to beat that is to change to Wizard's settings, tho Mark is the
  1814.  one who can tell you more about that IF that is what is happening.  I
  1815.  doubt it would be happening every time tho.
  1816.  ------------
  1817. Category 8,  Topic 23
  1818. Message 125       Thu Feb 03, 1994
  1819. CBM-MARK                     at 09:21 EST
  1820.  
  1821.     >  contain the expect string.  That gets me sometimes too... 
  1822.     > someone quotes  exactly the expect string I am looking for and
  1823.     > it fools the script.  The 
  1824.  
  1825.  The chr$(31) prompt I have GEnie send me works great for preventing
  1826.  this from happening.  The prompt character can be changed by going
  1827.  to page 900 (SETTINGS).  In RTCM I run the DEFAULTS overlay and at
  1828.  the "Kill the Wizard" default setting I use a value of 169 which
  1829.  has RTCM display 'smiley' for a prompt instead of the question mark.
  1830.  ------------
  1831. Category 8,  Topic 23
  1832. Message 126       Fri Feb 04, 1994
  1833. CBM-ED [e.g.bell]            at 09:17 EST
  1834.  
  1835.  Dick:
  1836.   MD> In RTCM I run the DEFAULTS overlay and at  the "Kill the
  1837.   MD> Wizard" default setting I use a value of 169 which  has RTCM
  1838.   MD> display 'smiley' for a prompt instead of the question mark
  1839.  
  1840.  Mark's method *is* foolproof as far as the problem I mentioned in my
  1841.  previous post.  However, what Mark did not say was that if you do this,
  1842.  you must also make sure your script expects chr$(31) in the proper position
  1843.  instead of the question mark or whatever you use.  Just making the change
  1844.  at page 900 is not going to work unless your script is set up for that.
  1845.  (Correct me if I'm wrong on that Mark.  :)
  1846.  ------------
  1847. Category 8,  Topic 23
  1848. Message 127       Sat Feb 05, 1994
  1849. CBM-MARK                     at 13:50 EST
  1850.  
  1851.   EB>  (Correct me if I'm wrong on that Mark.  :)
  1852.  
  1853.  You're absolutely right Ed!  You caught me ;)  I did forget to mention
  1854.  the change that need be made to a script and the expected prompt
  1855.  character.
  1856.  ------------
  1857.  ************
  1858. Topic 40        Wed Jan 26, 1994
  1859. T.FARRELL5 [12Paws]          at 21:19 EST
  1860. Sub: Omnitronix and Bocamodem 2400e         
  1861.  
  1862.  
  1863. 7 message(s) total.
  1864.  ************
  1865.  ------------
  1866. Category 8,  Topic 40
  1867. Message 3         Thu Jan 27, 1994
  1868. C128.JBEE                    at 03:45 EST
  1869.  
  1870.  That interface has several settings does it not?  I think that maybe the
  1871.  lines are inverted.  I think it has a three position switch?  RS232,
  1872.  inverted rs232, and serial printer port, or something like that?
  1873.  ------------
  1874. Category 8,  Topic 40
  1875. Message 4         Thu Jan 27, 1994
  1876. T.FARRELL5 [12Paws]          at 19:05 EST
  1877.  
  1878. I have tried several term progams with the interface. The one I use  most is
  1879. CCGMS. I thought that no matter what term I used, if I am in terminal mode I
  1880. could address the modem with "AT" commands, which I cannot.  Also, yes JBEE it
  1881. has a two posi- tion switch, "printer" and "modem". I tried both positions.
  1882.  ------------
  1883. Category 8,  Topic 40
  1884. Message 5         Fri Jan 28, 1994
  1885. CBM-ED [e.g.bell]            at 08:30 EST
  1886.  
  1887.  Did anyone suggest using upper case letters.  I don't think it  should
  1888.  matter but it seems to me I have heard cases of that.  Also, did you 
  1889.  change the baud rate and modem setting, seeing as how you upgraded from
  1890.  a 1670.  (Didn't you?  :)  This might cause the problem of the modem not
  1891.  recognizing the AT commands even from term mode.
  1892.  ------------
  1893. Category 8,  Topic 40
  1894. Message 6         Wed Feb 02, 1994
  1895. C128.JBEE                    at 06:22 EST
  1896.  
  1897.  > T.FARRELL5 [12Paws]
  1898.  > has a two posi- tion switch, "printer" and "modem". I tried both positions.
  1899.  
  1900.  What are the modem dip switches for and what are they set to?  In thinking
  1901.  this over and looking through my own modem manual, I see my modem dip
  1902.  switches can be set to ignore terminal commands.  I wonder if one of the
  1903.  dip switches on your modem is set incorrectly.
  1904.  ------------
  1905. Category 8,  Topic 40
  1906. Message 7         Thu Feb 03, 1994
  1907. T.FARRELL5 [12Paws]          at 19:02 EST
  1908.  
  1909. There are NO DIP SWITCHES on or  inside this modem,JBEE. I think I have a bad
  1910. interface, as a  co-worker tested the modem at home on his IBM and it worked
  1911. fine. Thanks for trying to help.
  1912.  ------------
  1913.  ************
  1914. Topic 41        Thu Jan 27, 1994
  1915. S.ADAMS17                    at 21:43 EST
  1916. Sub: Dilogue128-Internet-off line           
  1917.  
  1918. Can I prepare off line message load buffer and send over Internet I am using
  1919. Dialog 128, I can send OK if type message on line So my address is OK.  Thanks
  1920. for any help.   Sam
  1921. 2 message(s) total.
  1922.  ************
  1923.  ------------
  1924. Category 8,  Topic 41
  1925. Message 1         Thu Jan 27, 1994
  1926. S.ADAMS17                    at 21:49 EST
  1927.  
  1928. Can I send to Internet from buffer prepared off line  I am using Dialogue 128,
  1929. I can send OK if I type message on line so I am using the correct address. 
  1930. Thanks for any help.
  1931.                                      Sam
  1932.  ------------
  1933. Category 8,  Topic 41
  1934. Message 2         Fri Jan 28, 1994
  1935. C128.JBEE                    at 09:30 EST
  1936.  
  1937.  As long as the address is not too long, you can use regular e-mail
  1938.  command mode (see Cat 1 Topic 15).  If the address is over 35 (?)
  1939.  characters I believe you will have to use the mail item on the
  1940.  INTERNET page.
  1941.  
  1942.  I use TBATCH all the time with Dialogue 128, just fix all your mail
  1943.  offline, enter the tbatch command and type C=T
  1944.  ------------
  1945.  ************
  1946. Topic 2         Mon Oct 18, 1993
  1947. H.HERMAN1                    at 01:53 EDT
  1948. Sub: A fan for a C-128D                     
  1949.  
  1950. You too can have a fan in your C-128D that is exactly the same as the fan
  1951. which our very own YLR.ROSE has in hers.  I have one extra.  Also one other 12
  1952. VDC fan that is the same height and width, but too fat to fit.
  1953. 20 message(s) total.
  1954.  ************
  1955.  ------------
  1956. Category 10,  Topic 2
  1957. Message 17        Fri Jan 28, 1994
  1958. B.EVANS3 [Iceman]            at 21:44 EST
  1959.  
  1960. I would be interested in on of these fans. D.PFAFF, please E-mail me with  all
  1961. the info(how much, where to get it, ect.) Thanks!
  1962.                                The Iceman
  1963.  ------------
  1964. Category 10,  Topic 2
  1965. Message 18        Thu Feb 03, 1994
  1966. D.PFAFF [Beowulf]            at 23:05 EST
  1967.  
  1968. The fans are about $6.95, and simply bolt into place in the C-128D's built-in
  1969. fan mount. Then it's simply a matter of wiring into the  12 Volt side of the
  1970. computer's power supply. Make sure you exhaust the air out of the back of the
  1971. computer, and place some furnace filter material behind the C-128D's bottom
  1972. front grille. Failure to do this will result in a lot of dust collecting
  1973. inside the computer. You could reverse the flow of air by mounting the fan
  1974. backwards, but you want to draw cool air across the disk drive and power
  1975. supply... I'll grab the model number and address for the fans here in
  1976. Sacramento and put them here...
  1977.  ------------
  1978. Category 10,  Topic 2
  1979. Message 19        Fri Feb 04, 1994
  1980. H.HERMAN1                    at 01:18 EST
  1981.  
  1982. Folks!
  1983.  
  1984. Please don't forget that I still have one fat fan that is looking for a nice
  1985. home.
  1986.  
  1987. It's too fat for the 128, but may be useful somewhere else.
  1988.  
  1989. Howie
  1990.  ------------
  1991. Category 10,  Topic 2
  1992. Message 20        Sat Feb 05, 1994
  1993. B.EVANS3 [Iceman]            at 20:21 EST
  1994.  
  1995. D.PFAFF, I'll be looking for the info on the fans, I'll need 2 of them as I
  1996. have 2  128D'S. Thanks for your help,
  1997.                               ICEMAN
  1998.  ------------
  1999.  ************
  2000. Topic 5         Fri Feb 04, 1994
  2001. E.TOLBERT                    at 09:12 EST
  2002. Sub: Commodore Equipment Cheap!             
  2003.  
  2004. See first message.
  2005. 1 message(s) total.
  2006.  ************
  2007.  ------------
  2008. Category 10,  Topic 5
  2009. Message 1         Fri Feb 04, 1994
  2010. E.TOLBERT                    at 09:13 EST
  2011.  
  2012. I have the following items for sale all of which is in excellent  condition. 
  2013. All prices includes shipping and COD.
  2014.  
  2015. Qty      Name                         Price
  2016.  
  2017. 1        Accelarator Plus Drive
  2018.          with JiffyDOS 5.0            $60
  2019.  
  2020. 1        1902A 40/80 col monitor      $115
  2021.  
  2022. 1        Aprotek 2400 Baud Modem      $30
  2023.          with modem extender
  2024.  
  2025. 1        C128D w/JiffyDOS 6.0         $240
  2026.          drive 8/9/10/11 switches
  2027.  
  2028. 1        Super Expander 64            $15
  2029.  
  2030.  
  2031. 1        1750 Ram Expansion Unit      $75         
  2032.  
  2033.  
  2034. 2        Super Pascal 64              $15 each
  2035.  
  2036. 1        Epyx Programmers BASIC       $15
  2037.          Toolkit
  2038.  
  2039. 2        Mach 128 Cartridge           $25ea
  2040.  
  2041. 1        PPI(Parallel Printer
  2042.              Interface)               $25
  2043.  
  2044.  
  2045. Books for sale:
  2046.  
  2047. Digital Research CP/M Plus Prog User Gde  $15
  2048.  
  2049. Inside The Commodore 64 by John French      # 1541 Users Guide                
  2050. # Programming The 6502                        # Compute's First Book of
  2051. Commodore 64 Sound and Graphics  # Commodore 64 & 128 Simons' Basic           
  2052. # Commodore 64 MicroComputer User manual      # Sprites and Sound on the C64  
  2053. #
  2054.  
  2055. #Make offer on one are all.
  2056.  
  2057. ?????????????????????????????????????????????????????????????
  2058.  
  2059.  
  2060. &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& This equipment
  2061. belongs to Don Messer.  Email if and I will contact him for you.
  2062.  
  2063. &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& C64          
  2064. $45
  2065.  
  2066. Commodore 1702 monitor  $75
  2067.  
  2068. 1541C drive             $60
  2069.  
  2070. C128                    $85
  2071.  
  2072. 300 Baud Modem          $12
  2073.  
  2074. Epyx Fast Load          $25
  2075.  
  2076. Super Graphics Interface $25
  2077.  
  2078. 1571                    $85
  2079.  
  2080. Magnavox Green Screen  $40
  2081.  
  2082.  
  2083. ??????????????????????????????????????????????????????????????????
  2084.  
  2085.  
  2086. &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& This
  2087. Equipment belongs to Bob Goldstein email me, and I will contact him for you.
  2088.  
  2089.  
  2090. 1 SX 64    $200
  2091. &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
  2092.  
  2093.  
  2094. &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& This
  2095. equipment belongs to Bill Asbaugh 216 936 2382 Call after 2pm on Sunday or
  2096. after 6pm on weekends
  2097.  
  2098. Amdek Color monitor
  2099. &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
  2100.  
  2101.  
  2102.  
  2103.  
  2104.  ------------
  2105.  ************
  2106. Topic 6         Wed Jan 12, 1994
  2107. G.STAGLIANO [C128Stag]       at 20:39 EST
  2108. Sub: Wanted broken plus 4's and accessories 
  2109.  
  2110. Hi its time to clean out your closet and get rid of that old plus four hard
  2111. ware you dont want any more.  I am looking for plus for for parts and will pay
  2112. shipping.
  2113. 1 message(s) total.
  2114.  ************
  2115.  ------------
  2116. Category 10,  Topic 6
  2117. Message 1         Sun Jan 30, 1994
  2118. W.OVE                        at 18:08 EST
  2119.  
  2120. I have 3 plus/4 computers all are working. I would part with one, but  hate to
  2121. just give it away for shipping.
  2122.  ------------
  2123.  ************
  2124. Topic 7         Fri Feb 04, 1994
  2125. J.PACKARD [CAPRI]            at 21:00 EST
  2126. Sub: WANTED RAMLINK                         
  2127.  
  2128. Am Looking for a ramlink of at least 3 Megs would prefer Battery back-up but
  2129. not nessasary. Please E-Mail If you have one to get rid of "cash or Trade"
  2130. 1 message(s) total.
  2131.  ************
  2132.  ------------
  2133. Category 10,  Topic 7
  2134. Message 1         Sat Feb 05, 1994
  2135. C128.JBEE                    at 04:20 EST
  2136.  
  2137.  Leave e-mail to R.KNOP1
  2138.  
  2139.  He has one with 4 megs and battery backup.
  2140.  ------------
  2141.  ************
  2142. Topic 9         Fri Feb 04, 1994
  2143. J.JACKMAN3                   at 22:39 EST
  2144. Sub: Okidata 120 Printer for sale           
  2145.  
  2146. Okidata 120 Printers for sale. Plug-in C-64 compatible, NLQ printing.
  2147. 1 message(s) total.
  2148.  ************
  2149.  ------------
  2150. Category 10,  Topic 9
  2151. Message 1         Fri Feb 04, 1994
  2152. J.JACKMAN3                   at 22:41 EST
  2153.  
  2154. I have two Okidata 120 printers for sale.  9-pin printing, near letter quality
  2155. mode, plug-in C-64 compatible, good condition.  $20 each obo. E-Mail or call
  2156. (610) 926-7051
  2157.  ------------
  2158.  ************
  2159. Topic 10        Thu Jan 27, 1994
  2160. C.GOLAB                      at 12:00 EST
  2161. Sub: C-128 for sale                         
  2162.  
  2163.  
  2164.  Great condition, has been in box for years while I used my Amiga.
  2165.  
  2166. 2 message(s) total.
  2167.  ************
  2168.  ------------
  2169. Category 10,  Topic 10
  2170. Message 1         Thu Jan 27, 1994
  2171. C.GOLAB                      at 12:01 EST
  2172.  
  2173.  
  2174.  Great condition, has been in box for years while I used my Amiga.
  2175.  
  2176.   *s
  2177.  
  2178.  ------------
  2179. Category 10,  Topic 10
  2180. Message 2         Sat Jan 29, 1994
  2181. R.PATERNOST2 [Ray]           at 02:57 EST
  2182.  
  2183. Any peripherals you are selling with it (like a 1571 & maybe an RGB monitor)?
  2184.  ------------
  2185.  ************
  2186. Topic 12        Thu Jan 13, 1994
  2187. F.OGLE [Color BBS]           at 17:39 EST
  2188. Sub: Looking for a Print head ...           
  2189.  
  2190. I am looking for a print head for a Star Micronics NX-1000 9 pin printer.
  2191.  
  2192. Any help and/or advice is appreciated.
  2193. 3 message(s) total.
  2194.  ************
  2195.  ------------
  2196. Category 10,  Topic 12
  2197. Message 3         Thu Jan 27, 1994
  2198. M.BARNETT4 [BUBBA]           at 19:02 EST
  2199.  
  2200. I have a Swiftlink (the standard one) that I don't use anymore.  If you make
  2201. me a reasonable offer, you can have it and the term software that came with
  2202. it.
  2203.  
  2204. It is 3 years old, has been sitting for 2 years, and cost me $50 new with
  2205. cable.
  2206.  
  2207. I don't monitor this BBS regularly so send me Email.
  2208.  
  2209. Thanks Bubba
  2210.  ------------
  2211.  ************
  2212. Topic 13        Sat Jan 29, 1994
  2213. MIKE2                        at 01:38 EST
  2214. Sub: For Sale: Complete 128D System         
  2215.  
  2216. 128D system for sale, complete with ALL manuals, disks, software, and
  2217. peripherals.
  2218. 6 message(s) total.
  2219.  ************
  2220.  ------------
  2221. Category 10,  Topic 13
  2222. Message 1         Sat Jan 29, 1994
  2223. MIKE2                        at 02:05 EST
  2224.  
  2225. I'm selling my complete 128D system, in whole or in parts. It's well taken
  2226. care of and in excellent condition, both working wise and in appearence. I
  2227. have:
  2228.  
  2229. 128D unit with cooling fan. 1084S sterio hi-res color monitor. 1581 external
  2230. drive. 1571 external drive. 1750 REU boosted to 1meg. Works great! Passes all
  2231. RAM tests. I
  2232.   configure it as a 1581 RAM-drive and use it with GEOS. Real fast! Okidata
  2233. Microline 182 printer, upgraded to emulate an IBM Graphics
  2234.   printer. It prints great graphics (like GEOS stuff). I still have
  2235.   the original ROM, plus the manuals for both the new ROM and the
  2236.   old one. Omnitronics Serial Interface adaptor (interface for printers or
  2237. other
  2238.   standard RS232 devices). Omnitronics Deluxe RS232 Interface adaptor (another
  2239. interface for
  2240.   printers and stuff). Peak Modem Interface adaptor (user port to RS232 modem
  2241. port. allows
  2242.   Hayes compatible modem usage)  Joystick
  2243.  
  2244. Plus I have ALL the manuals to ALL the above stuff as well as all the original
  2245. disks that come with Commodore stuff. I also have a 128D Programer's Reference
  2246. manual and the 128D complete maintaince manual.
  2247.  
  2248. Lots of soft ware, like Timeworks 128 Word Writer, GEOS 2.0 with lots of clip
  2249. art and over 100 fonts. (I have an excellent GEOS setup,  including the
  2250. official 1581 and 1581 RAM-disk desktop upgrade. I also have GEOS booting up
  2251. from my 1581 disk. Real fast.) I also have several telecommunications programs
  2252. including Desterm and Bob's Proterm. I have a spread sheet program and a dbase
  2253. program.  And I have lots of Commodore and disk/file utilities. And, of
  2254. course, I have a fairly large and varied assortment of games. (Email me for
  2255. details).
  2256.  
  2257. Everything I've posted here is in great working condition and in great
  2258. physical appearence (ie: not beat up or dirty).
  2259.  
  2260. I'm asking about $400 for it all, but will consider best offer. I just need to
  2261. sell it. I will also sell it in parts.
  2262.  
  2263. Email me for details or if you have any questions.
  2264.  
  2265.  ------------
  2266. Category 10,  Topic 13
  2267. Message 2         Sat Jan 29, 1994
  2268. R.PATERNOST2 [Ray]           at 03:01 EST
  2269.  
  2270. THE ENTIRE SYSTEM IS SOLD FOR YOUR ASKING PRICE!!!!!! Details in e-mail....
  2271.  ------------
  2272. Category 10,  Topic 13
  2273. Message 3         Sat Jan 29, 1994
  2274. C128.JBEE                    at 03:23 EST
  2275.  
  2276.  When I saw the price I knew this system would sell fast:
  2277.  Posted 2:05
  2278.    Sold 3:01
  2279.  
  2280.  56 minutes :D
  2281.  ------------
  2282. Category 10,  Topic 13
  2283. Message 4         Sun Jan 30, 1994
  2284. AMFORD                       at 10:19 EST
  2285.  
  2286.   Is Ray's script to call Genie hourly and note if there are any For Sale
  2287. messages really ethical?  :)
  2288.  ------------
  2289. Category 10,  Topic 13
  2290. Message 5         Sun Jan 30, 1994
  2291. R.PATERNOST2 [Ray]           at 17:23 EST
  2292.  
  2293. Hehehehe.... Well, I'm using Wizard 128, and as far as I know, it doesn't have
  2294. any scripting capabilities.... :)
  2295.  
  2296. Actually, I just rather lucked out at the timing...
  2297.  ------------
  2298. Category 10,  Topic 13
  2299. Message 6         Mon Jan 31, 1994
  2300. H.HERMAN1                    at 03:35 EST
  2301.  
  2302. Alan,
  2303.  
  2304. LOL!!!
  2305.  
  2306. Howie
  2307.  ------------
  2308.  ************
  2309. Topic 14        Fri Feb 04, 1994
  2310. J.JACKMAN3                   at 22:43 EST
  2311. Sub: ComputerEyes Digitizer for sale        
  2312.  
  2313. ComputerEyes digitizer for sale. C-64, C-128, GEOS compatible.
  2314. 1 message(s) total.
  2315.  ************
  2316.  ------------
  2317. Category 10,  Topic 14
  2318. Message 1         Fri Feb 04, 1994
  2319. J.JACKMAN3                   at 22:49 EST
  2320.  
  2321. I have a perfect condition ComputerEyes digitizer for the 64/128 for sale.
  2322. Works super, but seldom used since I have videograbbing handy.  Will  digitize
  2323. still video to a 40-column image (standard software) or a full GeoPaint page
  2324. (80 columns) using special GEOS driver which I will include.  Will digitize
  2325. fine from a good 4-head VCR if it has a solid picture in "pause" mode.  Won't
  2326. from a cheapo 2-head VCR.  Perfect results from regular camcorder signal.  All
  2327. docs  and software included, plus GEOS driver.  I haven't seen one of these
  2328. for sale for a while, so I'm not sure what a fair used price would be.  Try
  2329. $40; make me an offer if you think that's too high. E-MAIL me; I don't check
  2330. this BB often, or call (610)926-7051. :)
  2331.  ------------
  2332.  ************
  2333. Topic 16        Sat Jan 29, 1994
  2334. T.CRIPE1                     at 07:17 EST
  2335. Sub: 128D,RAMLINK,extras for sale           
  2336.  
  2337. 128D,RAMLINK,1764 w/1.25 megs,GEOS software, plus many extras. Must sell.
  2338.  
  2339.  
  2340. 1 message(s) total.
  2341.  ************
  2342.  ------------
  2343. Category 10,  Topic 16
  2344. Message 1         Sat Jan 29, 1994
  2345. T.CRIPE1                     at 07:23 EST
  2346.  
  2347. 128D has RAM banks 2 & 3 added, bringing total RAM to 256K. 128D also has 1581
  2348. built-in. Comes in original box with all software manuals. Includes lots of
  2349. GEOS stuff, GEOS Programmers Ref and Hitchhiker's Guide. 1764 Expander has
  2350. 1.25 megs. Will also include SAMS service manual and Commodore's 128
  2351. Programmer's Reference Manual. Asking $299. CALL 419-784-3478 and ask for
  2352. Terry.
  2353.  ------------
  2354.  ************
  2355. Topic 24        Sun Jan 16, 1994
  2356. R.MURPHY1 [MURPHY]           at 17:43 EST
  2357. Sub: HARDWARE FOR SALE!                     
  2358.  
  2359. Following is a list of hardware I'm selling...
  2360. 4 message(s) total.
  2361.  ************
  2362.  ------------
  2363. Category 10,  Topic 24
  2364. Message 3         Fri Jan 28, 1994
  2365. M.BARNETT4 [BUBBA]           at 20:27 EST
  2366.  
  2367. Hello
  2368.  
  2369. I have a Swiftlink RS=232 just gathering dust.  I bought it 3 years ago for
  2370. $50 with cable,  I haven't used it for about 2 years.  Make me a good offer
  2371. and it's yours.
  2372.  
  2373. Bubba
  2374.  
  2375.  ------------
  2376. Category 10,  Topic 24
  2377. Message 4         Sat Jan 29, 1994
  2378. J.LIASSE                     at 20:10 EST
  2379.  
  2380.   How's $20 for the Swiftlink?
  2381.  
  2382.  ------------
  2383.  ************
  2384. Topic 33        Thu Feb 03, 1994
  2385. B.EVANS3 [Iceman]            at 21:17 EST
  2386. Sub: C128 and other stuff for sale!         
  2387.  
  2388. I have a c128 for sale, with power supply, manuals, in original box.
  2389. asking90.00, will negotiate. This computer is in very good shape, used very
  2390. little.
  2391. 1 message(s) total.
  2392.  ************
  2393.  ------------
  2394. Category 10,  Topic 33
  2395. Message 1         Thu Feb 03, 1994
  2396. B.EVANS3 [Iceman]            at 21:21 EST
  2397.  
  2398. Please E-mail me if interested in a C128 in good condition, with manuals,  and
  2399. power supply, in original box. Asking $90.00, but will negotiate. Voice    
  2400. number; 317/289-1340.
  2401.  ------------
  2402.  ************
  2403. Topic 35        Sat Jan 29, 1994
  2404. J.JACKMAN3                   at 12:34 EST
  2405. Sub: 1581 drive for sale, cheap!            
  2406.  
  2407. 1581 drive for sale - $60 J.Jackman3 or call (215)926-7051
  2408. 2 message(s) total.
  2409.  ************
  2410.  ------------
  2411. Category 10,  Topic 35
  2412. Message 1         Sat Jan 29, 1994
  2413. J.JACKMAN3                   at 12:44 EST
  2414.  
  2415. sorry, I just noticed that there is already a topic for 1581 drives. Should
  2416. not have started this category.  SYSOP, please delete -- look for my message
  2417. under category 46!
  2418.  ------------
  2419. Category 10,  Topic 35
  2420. Message 2         Sat Jan 29, 1994
  2421. C128.JBEE                    at 18:30 EST
  2422.  
  2423.  Starting your own topic for an individual item is okay :)
  2424.  ------------
  2425.  ************
  2426. Topic 36        Sat Jan 29, 1994
  2427. J.JACKMAN3                   at 12:45 EST
  2428. Sub: OKIMATE 20 Printer for sale            
  2429.  
  2430. Okimate Printer for sale
  2431. 3 message(s) total.
  2432.  ************
  2433.  ------------
  2434. Category 10,  Topic 36
  2435. Message 1         Sat Jan 29, 1994
  2436. J.JACKMAN3                   at 12:49 EST
  2437.  
  2438. Okimate 20 printer for sale.  Have moved up to Amiga 4000 with Deskjet.
  2439. Okimate is in good condition, recently replaced print head.  Will
  2440.  include several black and color ribbons; have interfaces for  Commodore, IBM,
  2441. and the rare Amiga interface. You can do some phenomenal printing on this unit
  2442. with the right paper and with George Wells' interpolating driver for GEOS.  I
  2443. will include paper, several versions of George's great driver! I don't check
  2444. this BB often, so e-mail me at J.Jackman3 or call (215) 926-7051.  $45 obo.
  2445.  ------------
  2446. Category 10,  Topic 36
  2447. Message 2         Fri Feb 04, 1994
  2448. J.JACKMAN3                   at 22:35 EST
  2449.  
  2450. Hi, I have another Okimate 20 for sale.  This one has a c-64 interface only,
  2451. and there is something wrong with the head transport.  Everything else is OK,
  2452. and the head was replaced not too long ago.  Minor repair, or for parts.  $20
  2453. obo.  E_MAIL or call (610)923-7051.  :)
  2454.  ------------
  2455. Category 10,  Topic 36
  2456. Message 3         Fri Feb 04, 1994
  2457. J.JACKMAN3                   at 22:38 EST
  2458.  
  2459. Oops, wife says to sell her Okimate 10 too!  Boy, we have a lot of these, but
  2460. now have an A4000 with Deskjet and access to a Primera, so these aren't
  2461. needed!  Will include thermal paper, a black ribbon, and a color ribbon.  Docs
  2462. & software, too.  $20 obo.  E-MAIL or call (610) 923-7051.  :)
  2463.  ------------
  2464.  ************
  2465. Topic 38        Sun Jan 30, 1994
  2466. A.METTS [Allan]              at 11:03 EST
  2467. Sub: Commodore 64 MIDI Music System         
  2468.  
  2469. Commodore 64 Stuff with MIDI for sale cheap! Read on...
  2470. 1 message(s) total.
  2471.  ************
  2472.  ------------
  2473. Category 10,  Topic 38
  2474. Message 1         Sun Jan 30, 1994
  2475. A.METTS [Allan]              at 11:03 EST
  2476.  
  2477. -*- Commodore 64 computer
  2478.  -*- C64 MIDI interface
  2479.  -*- Command Development TX81Z editing software
  2480.  -*- Dr. T's KCS MIDI Sequencer software
  2481.  -*- Keyfrets Software (Play your keyboard like a guitar)
  2482.  -*- DX/TX MIDI libararian program
  2483.  -*- Public Domain and shareware disks
  2484.  -*- 1541 disk drive
  2485.  -*- modem, joystick, brand new heavy duty power supply, cables (C64)
  2486.  
  2487. Get everything above for $45 *including* C.O.D. shipping!  Manuals and
  2488. documentation included.
  2489.  
  2490. Send GEMail to A.METTS
  2491.  
  2492.  
  2493.  ------------
  2494.  ************
  2495. Topic 40        Mon Jan 31, 1994
  2496. E.TOLBERT                    at 09:19 EST
  2497. Sub: Commodore Equipment Cheap!(updated)    
  2498.  
  2499. See first message
  2500. 1 message(s) total.
  2501.  ************
  2502.  ------------
  2503. Category 10,  Topic 40
  2504. Message 1         Mon Jan 31, 1994
  2505. E.TOLBERT                    at 09:21 EST
  2506.  
  2507. I have the following items for sale all of which is in excellent  condition. 
  2508. All prices includes shipping and COD.
  2509.  
  2510. Qty      Name                         Price
  2511.  
  2512. 2        Super Pascal 64              $15 each
  2513.  
  2514. 1        Epyx Programmers BASIC       $15
  2515.          Toolkit
  2516.  
  2517. 2        Mach 128 Cartridge           $25ea
  2518.  
  2519. 1        Cartridge expander with      $25
  2520.          Extender 
  2521.  
  2522. 1        Star SL10C Printer           $40
  2523.          with upgrade chips
  2524.  
  2525. 1        PPI(Parallel Printer
  2526.              Interface)               $25
  2527.  
  2528. 1        1670 1200 baud modem         $25
  2529.  
  2530.  
  2531. Books for sale:
  2532.  
  2533. Digital Research CP/M Plus Prog User Gde  $15
  2534.  
  2535. Inside The Commodore 64 by John French      # 1541 Users Guide                
  2536. # Programming The 6502                        # Compute's First Book of
  2537. Commodore 64 Sound and Graphics  # Commodore 64 & 128 Simons' Basic           
  2538. # Commodore 64 MicroComputer User manual      # Sprites and Sound on the C64  
  2539. #
  2540.  
  2541. #Make offer on one are all.
  2542.  
  2543. ?????????????????????????????????????????????????????????????
  2544.  
  2545.  
  2546. &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& This equipment
  2547. belongs to Don Messer.  Email if and I will contact him for you.
  2548.  
  2549. &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& C64          
  2550. $45
  2551.  
  2552. 1541C drive    $60
  2553.  
  2554. C128           $85
  2555.  
  2556. 300 Baud Modem $12
  2557.  
  2558. Epyx Fast Load $25
  2559.  
  2560. Super Graphics Interface $25
  2561.  
  2562. 1571           $85
  2563.  
  2564. Magnavox Green Screen  $40
  2565.  
  2566.  
  2567. ??????????????????????????????????????????????????????????????????
  2568.  
  2569.  
  2570. &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& This
  2571. Equipment belongs to Bob Goldstein
  2572.  
  2573.  
  2574. 1 SX 64    $200
  2575. &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
  2576.  ------------
  2577.  ************
  2578. Topic 44        Thu Feb 03, 1994
  2579. B.EVANS3 [Iceman]            at 21:23 EST
  2580. Sub: 1200 baud Modems For Sale              
  2581.  
  2582. New 1200 Baud Modems For Sale
  2583. 1 message(s) total.
  2584.  ************
  2585.  ------------
  2586. Category 10,  Topic 44
  2587. Message 1         Fri Feb 04, 1994
  2588. B.EVANS3 [Iceman]            at 19:55 EST
  2589.  
  2590. See Topic # 49 for details, Thanks!!
  2591.  ------------
  2592.  ************
  2593. Topic 46        Sun Dec 05, 1993
  2594. J.PACKARD [CAPRI ON Q]       at 00:59 EST
  2595. Sub: 1581 for sale                          
  2596.  
  2597. I have a 1581 that I purscased NEW on 5/12/93 for sale. Just got a HD-40 and
  2598. feel no need for 2 81's any more. Looking for $100.00  , Shipping and COD if
  2599. you prefer
  2600. 4 message(s) total.
  2601.  ************
  2602.  ------------
  2603. Category 10,  Topic 46
  2604. Message 2         Sat Jan 29, 1994
  2605. J.JACKMAN3                   at 12:39 EST
  2606.  
  2607. 1581 drive for sale, cheap.  Good condition, used only occasionally. Complete
  2608. with manual, utilities disk.  E-Mail J.Jackman3 or  call (215) 926-7051. 
  2609. Please do not post response here, since I don't check this BB often.  $60 Or
  2610. Best Offer.
  2611.  ------------
  2612. Category 10,  Topic 46
  2613. Message 3         Thu Feb 03, 1994
  2614. J.JACKMAN3                   at 22:26 EST
  2615.  
  2616. 1581 drive has been sold.  Those looking - Software Support has a few new ones
  2617. for sale still.
  2618.  ------------
  2619. Category 10,  Topic 46
  2620. Message 4         Fri Feb 04, 1994
  2621. J.PACKARD [CAPRI]            at 20:58 EST
  2622.  
  2623. I Still have 1 1581 for sale or trade am looking for a ramlink or an  expanded
  2624. REU .  Please E-Mail If Interested
  2625.  ------------
  2626.  ************
  2627. Topic 49        Thu Feb 03, 1994
  2628. B.EVANS3 [Iceman]            at 21:41 EST
  2629. Sub: New Commodore 1200 Baud Modems For Sale
  2630.  
  2631. These are brand new in the box.
  2632. 2 message(s) total.
  2633.  ************
  2634.  ------------
  2635. Category 10,  Topic 49
  2636. Message 1         Thu Feb 03, 1994
  2637. B.EVANS3 [Iceman]            at 21:45 EST
  2638.  
  2639. New Commodore 1200 baud modems for sale; at EMS Computer Services, 4355    
  2640. Kinney Road, Ludington, MI 49431- Order phone #616-845-1540.
  2641.  ------------
  2642. Category 10,  Topic 49
  2643. Message 2         Thu Feb 03, 1994
  2644. B.EVANS3 [Iceman]            at 21:53 EST
  2645.  
  2646. These are going for $14.95 + $4.50, C.O.D. is $5.00 extra.
  2647.  ------------
  2648.  ************
  2649. Topic 2         Fri Dec 24, 1993
  2650. C128.JBEE                    (Forwarded) 
  2651. Sub: TWIN CITIES 128/64                     
  2652.  
  2653.  TWIN CITIES 128/64 - The Commodore Specific Computer Journal.
  2654.  Providing original articles and news since 1986.
  2655. 3 message(s) total.
  2656.  ************
  2657.  ------------
  2658. Category 11,  Topic 2
  2659. Message 2         Sun Jan 30, 1994
  2660. R.KIRK7 [Dick]               at 18:38 EST
  2661.  
  2662. Is the next issue about ready? My laast one was issue #34, Aug 93.
  2663.  ------------
  2664. Category 11,  Topic 2
  2665. Message 3         Sun Jan 30, 1994
  2666. C128.JBEE                    at 19:00 EST
  2667.  
  2668.  yes
  2669.  ------------
  2670.  ************
  2671. Topic 2         Thu Oct 24, 1991
  2672. C128.JBEE [* Sysop *]        at 04:36 EDT
  2673. Sub: Ram Link                               
  2674.  
  2675.  This topic is for comments, suggestions, and news about CMD's Ramlink.
  2676.  
  2677. 265 message(s) total.
  2678.  ************
  2679.  ------------
  2680. Category 12,  Topic 2
  2681. Message 253       Sun Jan 30, 1994
  2682. M.KIRBY2                     at 17:23 EST
  2683.  
  2684. Help!!  This is an urgent plea to anyone with a C128 and RAMLink.
  2685.  
  2686. I Was recently downloading some files from a BBS and when I finished a HUGE
  2687. chunk  of files was missing from my RAMLink.  The first eight files were still
  2688. there  along with the last file I DLed but every thing in between (and there
  2689. was a  lot in between) is gone.  None of the files in the other partition were
  2690. affected. I know I didn't accidently format it because some of the original
  2691. files are still there.   I have a program to retrieve scratched files but
  2692. don't know if it will work on RAMLink.  
  2693.  
  2694. I'm using a C128, a RAMLink with a one meg card, an REU expanded to 2 megs,
  2695. and  was using Dialogue 128.  I've had this setup for a while and never had a
  2696. problem  like this before.
  2697.  
  2698.  ------------
  2699. Category 12,  Topic 2
  2700. Message 254       Sun Jan 30, 1994
  2701. C128.JBEE                    at 19:06 EST
  2702.  
  2703.  Sometimes Dialogue messes up your disk (nukes the partition table?) like
  2704.  it NEWed the whole partition IF one of the files contains a "/" slash
  2705.  in the file name.  Also, there was a file called U-96 (the battleship
  2706.  game) that kept nuking my native mode partition, so I renamed it before
  2707.  it went live (of course).
  2708.  
  2709.  All I could think was Dialogue 128 was making the "u-96" into a command
  2710.  channel command.  Never could track the exact problem down.
  2711.  
  2712.  Also, when downloading files, Dialogue 128 will cut the file off before
  2713.  the "/" in a filename.  So we try to make sure the C= RT files do not
  2714.  have any "/" slashes in them.
  2715.  ------------
  2716. Category 12,  Topic 2
  2717. Message 255       Mon Jan 31, 1994
  2718. L.SCHONDER [Lou]             at 05:11 EST
  2719.  
  2720. Nuked ramLink partitions!!!! Just the thought of it is terrifing!!!! I'll be
  2721. careful of "slasher" files!!!
  2722.  ------------
  2723. Category 12,  Topic 2
  2724. Message 256       Mon Jan 31, 1994
  2725. M.KIRBY2                     at 09:06 EST
  2726.  
  2727. Well, I've never had this problem before and like I saide some of the old
  2728. files were still  there.  And I don't have any fils with a "/"in them.
  2729.  
  2730. Whatever caused it I'm more interested in what could be done about it.  Is
  2731. there  a program to unscratch RAMLink files?  I don't think I can use the one
  2732. on my  commodore DOS Shell disk because the BAM is different.
  2733.  ------------
  2734. Category 12,  Topic 2
  2735. Message 257       Mon Jan 31, 1994
  2736. CMD-DOUG                     at 22:21 EST
  2737.  
  2738.   No. File Name             Type Address      YYMMDD Bytes   Access Lib ----- -
  2739. ----------------------- - ------------ ------ ------- ------ --- 11585
  2740. UNSCRATCH.SFX            X CMD-DOUG     930307    5376     36   8
  2741.       Desc: File Unscratch for CMD & CBM drives
  2742.  
  2743. Also highly recommended: CMD UTILITIES from CMD. FCOPY+ on this disk contains
  2744. an UNSCRATCH function, as well as an UNNEW function. Lot's of other goodies
  2745. for CMD device owners as well.
  2746.  ------------
  2747. Category 12,  Topic 2
  2748. Message 258       Mon Jan 31, 1994
  2749. M.KIRBY2                     at 22:36 EST
  2750.  
  2751. Thanks.  I'll try it.
  2752.  ------------
  2753. Category 12,  Topic 2
  2754. Message 259       Mon Jan 31, 1994
  2755. M.KIRBY2                     at 22:43 EST
  2756.  
  2757. Can't get the file it's a private library.  Who do I have to Email for acces?
  2758.  ------------
  2759. Category 12,  Topic 2
  2760. Message 260       Tue Feb 01, 1994
  2761. C128.JBEE                    at 00:23 EST
  2762.  
  2763.  e-mail CMD-DOUG with your name, address, model, and serial numbers.
  2764.  ------------
  2765. Category 12,  Topic 2
  2766. Message 261       Tue Feb 01, 1994
  2767. F.OGLE [Color BBS]           at 01:09 EST
  2768.  
  2769. FCOPY+ is the single copy utility that I use the most.  This handy utility
  2770. does everything but take out the trash.  BTW is that feature being worked on? 
  2771. ;)
  2772.  ------------
  2773. Category 12,  Topic 2
  2774. Message 262       Tue Feb 01, 1994
  2775. CMD-DOUG                     at 19:27 EST
  2776.  
  2777. No. We have to leave something for future upgrades... :)
  2778.  ------------
  2779. Category 12,  Topic 2
  2780. Message 263       Thu Feb 03, 1994
  2781. E.WHITAKER2 [Scormus]        at 04:05 EST
  2782.  
  2783. Well, boy do I feel stupid.... I've been noticing a bit of a problem with my
  2784. ramalink lately.  I'm not  yet certain if it's software or hardware related,
  2785. but occasionally, the  reset button has been intermittently failing to
  2786. function.  My first thought , of course, was... HARDWARE.  Something's not
  2787. fully plugged in.  I have a SuperSnapshot V5 cartridge, a 1750 clone from SSI,
  2788. and of course the main  ramcard and rtc plug into the motherboard as well. 
  2789. Please, when you read the next few lines, DON'T PITY ME.  It was my own fault.
  2790. Anyway, I made the [stupid] decision to unplug the SS5 and then plug it back
  2791. in.  No big deal but it led me down the path.  The next time the reset failed,
  2792. I popped out the 1750 clone and then stared in horror at the former 384K geos 
  2793. ramdrive full of information in my hand.  Well, after I recovered from my 
  2794. shock, I turned off the ramlink, plugged in my now barren REU (praying the
  2795. whole time to the gods of CMD that the rest of my data was still ok & I was
  2796. not about to ruin my entire Ramlink hardware wise).  Now for the big test.  
  2797. AAARRRRGGGGHHHHH.  turning on the system, the familiar 3 second wait, and I
  2798. have two partitions.  One, the size of my empty clone, and the other, the size
  2799. of all my expansion ram, and two or three weeks worth of tinkering and
  2800. puttering with my new laser was gone. I had been writing a printer driver for
  2801. SuperScript and the Epson Action Laser 1500. Well, fine.  I, of course, had a
  2802. backup of my ramlink on HD, minus the  stuff I had been working on. 
  2803. Additionally,  I have a paper printout of my partitions, sizes, etc.  made
  2804. with the program uploaded by me (scormus) in the libraries.  Additionally, of
  2805. course, I have a 16 block copy of my System partition stashed on the HD.  Now
  2806. what?.  I didn't feel like a 29 minute wait to do a restore, and I really had
  2807. nothing to lose, So i  decided to experiment.  I copied the 16 block system
  2808. file into memory, & then sent it to the ramlink.  Nothin happened.  D***, I
  2809. thought.  Then I remembered seeing somewhere that the ramlink reads certain
  2810. data on powerup and doesn't reread it.  Turning off the power, and then
  2811. turning it on.   VOILA.  Back in business.  I am AMAZED at the quality of the
  2812. Hardware that is produced at CMD.  I know that plugging things in and
  2813. unplugging them is a Major risk, but I simply cannot say enough good things
  2814. about this device and it's performance for me so far.  Anyway, my next step
  2815. was to round up the laser printer horses that had escaped through the
  2816. proverbial barn door. Then, I had to write on the blackboard 100 times...  I
  2817. will not write any programs,data files, or text files without saving them to
  2818. at least two different forms of data storage.
  2819.  
  2820. Thanks, CMD, for a fantastic piece of equipment.  By the way, I apologize for
  2821. making this whole thing one sentence.  Also, any Idea why the reset button
  2822. might be giving me trouble?
  2823.  
  2824. The moral of the story?  All's well that ends without hardware damage.
  2825.  
  2826. Scormus   aka   Eeek
  2827.  ------------
  2828. Category 12,  Topic 2
  2829. Message 264       Thu Feb 03, 1994
  2830. H.HERMAN1                    at 05:08 EST
  2831.  
  2832.  Scormus,
  2833.  
  2834.  >...  No big deal but it led me down the path.  The next time the reset
  2835.  >failed, I popped out the 1750 clone and then stared in horror at the
  2836.  >former 384K geos ramdrive full of information in my hand.
  2837.  
  2838.  I wonder...
  2839.  
  2840.  Is this the way it happened....
  2841.  
  2842.  with Mrs. Bobbitt?    :)
  2843.  
  2844.      <<THUD>>
  2845.  
  2846.  Actually you are a lot luckier.  Imagine just replugging the REU clone back
  2847.  into RAMLink, and you found all the RL's ram intact.  I never would have
  2848.  believed such a thing possible!
  2849.  
  2850.  Thinking about it, I do not think that I would ever think to do something
  2851.  like that. I mean all that plugging and unplugging while RL is still
  2852.  powered.  That is the first  "thou shalt not" commandment we all learned
  2853.  at the very beginning.  But then I usually follow the rules, instructions,
  2854.  and everything else...
  2855.  
  2856.  I have never had a reason to make a copy of RL's sys setup.  However, after
  2857.  reading your experiences, I will be runnning that just as soon as I signoff
  2858.  from here.
  2859.  
  2860.  You wrote the RL Root printer?  Outstanding utility.
  2861.  
  2862.  Thanks!!
  2863.  
  2864.  Howie
  2865.  ------------
  2866. Category 12,  Topic 2
  2867. Message 265       Fri Feb 04, 1994
  2868. CMD-DOUG                     at 23:43 EST
  2869.  
  2870. RE: Reset button... can you 'feel' it click when this happens? If not, the
  2871. switch may be sticking, and if it is it may have other problems internally, or
  2872. may have a bad solder joint. There are also some components in that circuit,
  2873. but generally they're the type that would either be good or bad, not
  2874. occassionally one or the other. The switch can be replaced pretty cheaply -
  2875. I'll check on a price.
  2876.  ------------
  2877.  ************
  2878. Topic 4         Thu Oct 24, 1991
  2879. C128.JBEE [* Sysop *]        at 04:48 EDT
  2880. Sub: HD Series Hard Drives                  
  2881.  
  2882. A place to post questions, answers, comments, and suggestions for the  CMD HD
  2883. series of Hard Drives for the C64 and C128.
  2884. 197 message(s) total.
  2885.  ************
  2886.  ------------
  2887. Category 12,  Topic 4
  2888. Message 193       Thu Jan 27, 1994
  2889. R.SMITH32                    at 10:56 EST
  2890.  
  2891. Hi, I've sucessfully transfered my Geos stuff to the Hd100, no problem.
  2892. However, I've noticed that even though the set time works upon bootup, when I
  2893. switched to another partition and quit from there, the time was several hours
  2894. off. The date was still OK, though. Also, I've noticed that the Kbytes free
  2895. are alot higher than what would normally be on a 1581 even though I'm using
  2896. 1581 partitions. Can someone please explain? Thanks
  2897.  ------------
  2898. Category 12,  Topic 4
  2899. Message 194       Fri Jan 28, 1994
  2900. CMD-DOUG                     at 07:59 EST
  2901.  
  2902. The time clock is only set at boot-up by the autoexec file - from that point
  2903. on, it's up to your computer to keep time correctly. Specifically, How many
  2904. Kbytes free? The initial size should be around 790 Kbytes (on an empty 1581
  2905. partition).
  2906.  ------------
  2907. Category 12,  Topic 4
  2908. Message 195       Sat Jan 29, 1994
  2909. R.SMITH32                    at 06:56 EST
  2910.  
  2911. It was some astronomical amount that made no sense at all but it only happened
  2912. when I created a 1581 partition and then copied data from 2 1541 disks into it
  2913. from within the desktop environment. Whenever I copied from 1581's into 1581
  2914. partitions everything turned out fine.
  2915.  ------------
  2916. Category 12,  Topic 4
  2917. Message 196       Sat Jan 29, 1994
  2918. CMD-DOUG                     at 10:18 EST
  2919.  
  2920. Guess you've got me on this one; I've never seen nor heard of this ever
  2921. happening under the standard GEOS deskTop. Have you validated the partition
  2922. under GEOS?
  2923.  ------------
  2924. Category 12,  Topic 4
  2925. Message 197       Sat Jan 29, 1994
  2926. C128.JBEE                    at 18:34 EST
  2927.  
  2928.  I have seen this when I have validated a splat file on a GEOS disk
  2929.  while NOT using GEOS.  It is usually a fatal disk error.
  2930.  Sets the disk t/s pointers to 255,255 and stuff like that and then GEOS
  2931.  thinks it has a bazillion sectors free.
  2932.  ------------
  2933.  ************
  2934. Topic 19        Wed Aug 19, 1992
  2935. CMD-DOUG                     at 23:35 EDT
  2936. Sub: FD Series Floppy Drives                
  2937.  
  2938. Okay folks, now that the word is out, there's bound to be some questions about
  2939. our new FD Series drives. This is the area for that. Since these are not yet
  2940. released, I may not be able to answer some specifics.
  2941. 66 message(s) total.
  2942.  ************
  2943.  ------------
  2944. Category 12,  Topic 19
  2945. Message 66        Wed Feb 02, 1994
  2946. C128.JBEE                    at 06:23 EST
  2947.  
  2948.  >R.SMITH32
  2949.  >OK, the part I'm still a little fuzzy on is 'copy your file format to the
  2950.  >partition' and 'create a file from your file format (copied from your data
  2951.  >disk)'.
  2952.  
  2953.  Instead of creating a new file and trying to import the data into that,
  2954.  which can be chancy if you happen to make a typo and not copy it correctly,
  2955.  copy the format file.  This is the file that is saved when you create the
  2956.  format for the file, for the first time.  It most likely has the same name
  2957.  as the "file" used in your "startup.p" or "start.p" program.
  2958.  ------------
  2959.  ************
  2960. Topic 24        Sat Oct 23, 1993
  2961. MRABOY                       at 09:22 EDT
  2962. Sub: Superbase 3.01                         
  2963.  
  2964. KEEP US GOING!!!!
  2965.  
  2966.  
  2967. 29 message(s) total.
  2968.  ************
  2969.  ------------
  2970. Category 12,  Topic 24
  2971. Message 19        Thu Jan 27, 1994
  2972. R.SMITH32                    at 09:27 EST
  2973.  
  2974. OK, the part I'm still a little fuzzy on is 'copy your file format to the
  2975. partition' and 'create a file from your file format (copied from your data
  2976. disk)'. Is there a file on my data disk that I need to physically copy over to
  2977. the partition or do I just create a new file with the same fields? BTW I tried
  2978. the recover utility and it didn't work. Thanks alot!
  2979.  ------------
  2980. Category 12,  Topic 24
  2981. Message 20        Thu Feb 03, 1994
  2982. R.SMITH32                    at 10:53 EST
  2983.  
  2984. I can't even get Superbase to boot from the HD yet. I copied the files over
  2985. using FCOPY and the 2 block SEQ file from my data disk of the file definitions
  2986. to the 1581 subdirectory but Superbase just reset when I tried to boot. I
  2987. don't mind booting from the 1541 I just want to get my data to the HD Please
  2988. help! Thank you for your patience.
  2989.  ------------
  2990. Category 12,  Topic 24
  2991. Message 21        Thu Feb 03, 1994
  2992. R.SMITH32                    at 23:26 EST
  2993.  
  2994. Eureka! I found an easy way to set up Superbase data on the HD. 1. Create a
  2995. native mode partition on the HD of 12800 blocks 2. Run 1581sub on that
  2996. partition. 3. Open that subdirectory and use the Utility program on your
  2997.    Program disk to recreate a data base.
  2998.    My data was on 1581 so I set my 1581 as device 8 and the HD
  2999.    as device 9.
  3000.    As long as you've opened the 1581 subdirectory you can copy
  3001.    everything right over;database definitions, file formats,
  3002.    everything. The Utility program handles it all.
  3003.    My next task is to learn to set up a boot disk on the HD.
  3004.    I think I'll set up a 1541 partition, MCOPY the boot disk
  3005.    to it and use the Start.p program to open up the right
  3006.    subdirectory. Time to look at the HD manual. Later
  3007.  ------------
  3008. Category 12,  Topic 24
  3009. Message 22        Fri Feb 04, 1994
  3010. C128.JBEE                    at 02:39 EST
  3011.  
  3012.  Darn! Did I forget to tell you to open the subdirectory? :P
  3013.  No reason to suffer with a 1541 subdirectory and have to change partitions
  3014.  and such.  Superbase (v3.01) will run just fine from the 1581
  3015.  partition.
  3016.  ------------
  3017. Category 12,  Topic 24
  3018. Message 23        Fri Feb 04, 1994
  3019. R.SMITH32                    at 09:18 EST
  3020.  
  3021. OK, here's where I'm stuck. I have my boot disk in a 1541 partition. I have my
  3022. data in a 1581 subdirection in a Native mode partition. I can boot from floppy
  3023. and access my data by switching to the right subdirectory before I boot and
  3024. telling Superbase where the data is with the start program. But I can't boot
  3025. from the HD and tell Superbase where the data is because I can't send disk
  3026. commands from within Superbase. I can't use the FPPS mode because the data is
  3027. in a subdirectory. Does ANYONE know a way to do it? Thanks
  3028.  ------------
  3029. Category 12,  Topic 24
  3030. Message 24        Fri Feb 04, 1994
  3031. CMD-DOUG                     at 23:52 EST
  3032.  
  3033. You CAN send disk commands from within Superbase. Try Maintain Other.
  3034.  ------------
  3035. Category 12,  Topic 24
  3036. Message 25        Sat Feb 05, 1994
  3037. R.SMITH32                    at 08:40 EST
  3038.  
  3039. I saw that but the manual stated that only certain commands could be sent.
  3040. I'll try to send the CP and CD commnands and see what happens.
  3041.  ------------
  3042. Category 12,  Topic 24
  3043. Message 26        Sat Feb 05, 1994
  3044. R.SMITH32                    at 09:22 EST
  3045.  
  3046. JBEE, I'd love to try your idea but I can't get my Superbase program files
  3047. over to the 1581 sub. FileCopy didn't work. Mcopy is only for 1541 partitions.
  3048. And Bcopy is only for CMD devices. How else can I get my program files to the
  3049. 1581sub? Thanks
  3050.  ------------
  3051. Category 12,  Topic 24
  3052. Message 27        Sat Feb 05, 1994
  3053. R.SMITH32                    at 16:39 EST
  3054.  
  3055. Well, I finally got it! Thank you for all of your suggestions. Here's how.
  3056. First my boot disk was Mcopied to a 1541 partition. Next my data was copied to
  3057. a 1581 subpartition with the Utility program (copied from 1581). Then I
  3058. modified my start.p program to send the CD command and placed it in the parent
  3059. directory of the 1581 sub. After booting Superbase I used the FPPS mode to
  3060. select the data partition's parent directory and the start.p program changed
  3061. to the 1581 sub. It is now blindingly fast especially with my TurboMaster CPU.
  3062. Thank again for all your help. Later
  3063.  ------------
  3064. Category 12,  Topic 24
  3065. Message 28        Sat Feb 05, 1994
  3066. CMD-DOUG                     at 21:21 EST
  3067.  
  3068. Why not put a CP command in your start.p program as well? Then you could skip
  3069. using FPPS.
  3070.  ------------
  3071. Category 12,  Topic 24
  3072. Message 29        Sun Feb 06, 1994
  3073. R.SMITH32                    at 02:21 EST
  3074.  
  3075. Because if i mess with the start.p program on my boot disk, it won't boot
  3076. anymore. The modified start.p has to be on the data disk. Believe me, I've
  3077. tried. So now when I'm prompted to insert my data disk after bootup I then
  3078. change to the parent directory of the 1581 sub where I can put a modified
  3079. start.p.
  3080.  ------------
  3081.  ************
  3082. Topic 30        Sun Jan 30, 1994
  3083. W.WILEY2                     at 14:42 EST
  3084. Sub: IBM ascii to HD partition              
  3085.  
  3086. want to port HUGE ascii file from IBM HD to 3 1/2 disks, then add to  native
  3087. partition. Dont know commands to have MSdos system chop 1 huge  file into
  3088. pieces for the transfer. Have Big Ble Reader at the ready!
  3089. 5 message(s) total.
  3090.  ************
  3091.  ------------
  3092. Category 12,  Topic 30
  3093. Message 1         Sun Jan 30, 1994
  3094. W.WILEY2                     at 14:45 EST
  3095.  
  3096. All I want to do is transfer the file, but dont know the commands for getting
  3097. in-laws system to dump chunks (sounds gross,I know) of the file to the 3 1/2"
  3098. disks for my 1581 to drop into my HD20. Also, I am not sure how to reattach
  3099. the pieces once I get them on the HD. Anyone have any ideas?   Thanks,   Will
  3100. <W.Wiley2>
  3101.  ------------
  3102. Category 12,  Topic 30
  3103. Message 2         Sun Jan 30, 1994
  3104. C128.JBEE                    at 19:08 EST
  3105.  
  3106.  If it is that huge, just .ARC or ZIP (V1.10) it on the IBM and then port
  3107.  it over to the CMD HD and uncompress it there.  Then chop it up using
  3108.  your favorite Commodore text utility.
  3109.  ------------
  3110. Category 12,  Topic 30
  3111. Message 3         Mon Jan 31, 1994
  3112. H.HERMAN1                    at 03:35 EST
  3113.  
  3114. Will,
  3115.  
  3116. Since the file is ascii, why not load it into a WP or editor, and then chop it
  3117. into chunks.
  3118.  
  3119. So, for example, to make PART.1, delete the last 2/3rds, then save what
  3120. remains.  To make PART.2, reload the original, delete PART.1, and the last
  3121. 1/3rd, then save, and continue the same way to make PART.3.  You can use this
  3122. procedure to make as many parts as you wish.
  3123.  
  3124. However, if arcing or ziping will bring the file to the 800k size, as JBEE
  3125. suggests, this might be the easiest way.
  3126.  
  3127. Or....  Why not null-modem (or modem) the file from one computer to the other?
  3128. Then there is no need to chop, nor to crunch/squeeze/zip, or otherwise shrink
  3129. the original.
  3130.  
  3131. Hmmm.....   I quess I can safely assume that the original ascii file exceeds
  3132. 800k?  If that is the case, the only way I know of to read, and print and
  3133. otherwise manipulate the file would be with ZED, and a custom expanded REU. 
  3134. (Using a 1750 REU will only allow you to load a file of about 600k or so.)
  3135.  
  3136. Howie
  3137.  ------------
  3138. Category 12,  Topic 30
  3139. Message 4         Fri Feb 04, 1994
  3140. D.HARKER1 [Dan]              at 21:34 EST
  3141.  
  3142.  Will,
  3143.  
  3144.  I've had the same problem. There isn't an MS-DOS command to segment a large
  3145.  file into smaller pieces (as far as I know).
  3146.  
  3147.  There are PD programs to do this. (Chop or Chomp come to mind, but I can't
  3148.  remember the name.) Check out the IBM section here on GEnie.
  3149.  
  3150.  Make sure you have a partition that is 2 times as large (or larger) as the
  3151.  original file. Copy the segments into the partition. Make sure they appear
  3152.  as SEQ type files.
  3153.  
  3154.  Now to reassemble the pieces. Commodore already has the command to do this.
  3155.  If you are running a c128 (BASIC 7.0) or a c64 with BASIC 4.0 use this
  3156.  command:
  3157.                  concat"file1"to"file2"  <RETURN>
  3158.  
  3159.  'file1' and 'file2' would be the names of the first and second file segments.
  3160.  After you have issued the 'concat' command, 'file1' will contain it's
  3161.  original data plus the data from 'file2'. 'file2' will remain unchanged.
  3162.  
  3163.  If you are using a c64 with BASIC 2.0, you will have to use the:
  3164.  open command channel, send command, close command channel way of doing
  3165. things.
  3166.  I can't remember the syntax for using 'concat' this way. You'll have to
  3167.  check your manual.
  3168.  
  3169.  Keep an eye on the free space in your partition, it will be 'eaten up'
  3170.  quickly as you reassemble the file.
  3171.  
  3172.  Also, I suggest you reassemble the pieces in reverse order as things will
  3173.  go faster. For example: your file is now in 5 segments (file1 - file5).
  3174.  
  3175.                       concat"file5"to"file4"
  3176.  
  3177.                       scratch"file5"   (if you need to free space on the HD)
  3178.  
  3179.                       concat"file4"to"file3"
  3180.  
  3181.                       scratch"file4"
  3182.  
  3183.  Do this until you are down to 'file1', it now contains the original file
  3184. data.
  3185.  
  3186.  I assume you are going to manipulate the data in the file and return it to
  3187.  the IBM. If so, use a Commodore text utility to segment the file. When the
  3188.  pieces are back on the IBM use the following command:
  3189.  
  3190.                       copy file1+file2+file3 lastfile
  3191.  
  3192.  'file1 - file3' are the segment file names and 'lastfile' is where they all
  3193.  will end up. Note: MAKE SURE that 'file1 - file3' and 'lastfile' all have
  3194.  different names. If the names aren't different messy dos will do terrible,
  3195.  unspeakable things.
  3196.  
  3197.  Hope this helps.
  3198.  
  3199.                                       Dan
  3200.  
  3201.  
  3202.  ------------
  3203. Category 12,  Topic 30
  3204. Message 5         Fri Feb 04, 1994
  3205. D.HARKER1 [Dan]              at 22:00 EST
  3206.  
  3207.  Will,
  3208.  
  3209.  In my previous message:
  3210.  
  3211.               concat"file1"to"file2"  <RETURN>
  3212.  
  3213.                  should read as:
  3214.  
  3215.               concat"file2"to"file1"  <RETURN>
  3216.  
  3217.  Sorry about that.
  3218.  
  3219.                             Dan
  3220.  
  3221.  ------------
  3222.  ************
  3223. Topic 31        Sat Jan 29, 1994
  3224. A.DEROSA [Al DeRosa]         at 17:19 EST
  3225. Sub: Need Help...                           
  3226.  
  3227. Need help with a CMD HD that is coming up with SCSI Errors..
  3228. 3 message(s) total.
  3229.  ************
  3230.  ------------
  3231. Category 12,  Topic 31
  3232. Message 1         Sat Jan 29, 1994
  3233. A.DEROSA [Al DeRosa]         at 17:24 EST
  3234.  
  3235. I am in need of help for a friend who owns a CMD HD40..
  3236.  
  3237.  When validating a gateway partition (Native), it came up with an unknown
  3238. error, He tried to run FIX BLOCKS on it, and it  came up with a SCSI error of
  3239. 70 05 26.. This happened on 2 or 3 partitions of both Native and 1581 mode
  3240. partitions.. Today he tried validating a different '81 partition, and he came
  3241. up with a different SCSI Error, this one was 0 0 F0 03 14,29,02. Does anyone
  3242. know what could be causing this?? I have suggested doing a low level format
  3243. and re-installing DOS and re-doing partitions, but before he does this I
  3244. wanted to check with Doug and the CMD guru's from here.. Why waste time doing
  3245. something that may not have to be done... Any help would be appreciated...
  3246.  
  3247.  Al
  3248.  ------------
  3249. Category 12,  Topic 31
  3250. Message 2         Sat Jan 29, 1994
  3251. CMD-DOUG                     at 22:34 EST
  3252.  
  3253. He could try what you have suggested, but the errors you gave appear to
  3254. indicate hardware problems. It may just be a loose connection, but could
  3255. easily be failure of the main or embedded controller boards.
  3256.  ------------
  3257. Category 12,  Topic 31
  3258. Message 3         Sun Jan 30, 1994
  3259. A.DEROSA [Al DeRosa]         at 23:04 EST
  3260.  
  3261. Thanks Doug, appreciate it.. I will tell him to try my suggestion, the thing
  3262. that worries me is like you say it may be a hardware problem, the HD was
  3263. recently transported via car to a user group meeting, and left in the car for
  3264. a couple of hours and I am sure you know how cold it's been.. Hopefully the
  3265. low level format will solve it, if not you'll be getting a drive to fix..
  3266. heheh Thanks again Doug appreciate the help as always...
  3267.  
  3268.  Al
  3269.  ------------
  3270.  
  3271.