Re: [M100] Duplicate a file

2018-05-27 Thread Brian White
On Sun, May 27, 2018 at 6:20 PM, John R. Hogerhuis wrote: > > On Sun, May 27, 2018 at 1:30 PM Brian White wrote: > >> Why bother with the larger .do copy? Just load "foo" and then save >> "foo2". Now you have both foo.ba and foo2.ba, both in small tokenized >> form. >> > >> > Cause it don’t choo

Re: [M100] Duplicate a file

2018-05-27 Thread John R. Hogerhuis
On Sun, May 27, 2018 at 1:30 PM Brian White wrote: > Why bother with the larger .do copy? Just load "foo" and then save "foo2". > Now you have both foo.ba and foo2.ba, both in small tokenized form. > > Cause it don’t chooch ;-) You can only save / give a name to the “unnamed basic program”. It

Re: [M100] Duplicate a file

2018-05-27 Thread Brian White
Why bother with the larger .do copy? Just load "foo" and then save "foo2". Now you have both foo.ba and foo2.ba, both in small tokenized form. On Sun, May 27, 2018, 3:27 PM Peter Vollan wrote: > Perhaps they mean that you should print it out? > > > On 27 May 2018 at 11:06, David Szasz wrote: >

Re: [M100] DVI cable for M102

2018-05-27 Thread Brian White
That's the one easy one. You can get by without having to do those twists, with a plain old IDE cable* and a double male pin header. http://tandy.wiki/Disk/Video_Interface:_Cable#Easy_Cable That's not polarized though. To get a fully polarized cable you can make either the 102 or 200 cables shown

Re: [M100] Duplicate a file

2018-05-27 Thread Peter Vollan
Perhaps they mean that you should print it out? On 27 May 2018 at 11:06, David Szasz wrote: > Jason: > > Sorry about that as NAME only renames the existing file (I forgot). The old > tried and true model 100 method is to save the BASIC file as text using the > ".DO" appendage > > from within the

[M100] DVI cable for M102

2018-05-27 Thread Randall Kindig
Does anyone have or makes the DVI cable that works with an M102? I need one. Randy

Re: [M100] Duplicate a file

2018-05-27 Thread David Szasz
Jason: Sorry about that as NAME only renames the existing file (I forgot). The old tried and true model 100 method is to save the BASIC file as text using the ".DO" appendage from within the BASIC program type SAVE "newfilename.do" Then as needed open the text file and rename it as a BASIC prog

Re: [M100] Duplicate a file

2018-05-27 Thread Jason Benson
Thanks guys On Sun, May 27, 2018 at 2:02 PM, John R. Hogerhuis wrote: > > On Sun, May 27, 2018 at 11:01 AM John R. Hogerhuis > wrote: > >> On Sun, May 27, 2018 at 10:20 AM David Szasz wrote: >> >>> jason: >>> >>> You can just save the file under another name. See the NAME command. >>> >>> NAME

Re: [M100] Duplicate a file

2018-05-27 Thread John R. Hogerhuis
On Sun, May 27, 2018 at 11:01 AM John R. Hogerhuis wrote: > On Sun, May 27, 2018 at 10:20 AM David Szasz wrote: > >> jason: >> >> You can just save the file under another name. See the NAME command. >> >> NAME "old filename" AS "new filename" >> >> I hope that helps a little. >> >> D. Szasz >> >

Re: [M100] Duplicate a file

2018-05-27 Thread John R. Hogerhuis
On Sun, May 27, 2018 at 10:20 AM David Szasz wrote: > jason: > > You can just save the file under another name. See the NAME command. > > NAME "old filename" AS "new filename" > > I hope that helps a little. > > D. Szasz > That wouldn’t create a copy it would just rename the only copy. I think

Re: [M100] Duplicate a file

2018-05-27 Thread David Szasz
jason: You can just save the file under another name. See the NAME command. NAME "old filename" AS "new filename" I hope that helps a little. D. Szasz On Sun, May 27, 2018 at 12:23 PM, Jason Benson wrote: > Hey guys, is there anyway to make a copy of a BASIC file so that you have > a backup

[M100] Duplicate a file

2018-05-27 Thread Jason Benson
Hey guys, is there anyway to make a copy of a BASIC file so that you have a backup other than saving it to another machine or external storage? Per the manual : In the Model 100 there usually is no backup copy. You should make one for important documents as early as possible. But that seems craz