Hi folks! I'm fighting hard battles against the "open socket:www...." - function. My little sample: 10 open "socket:www.yahoo.com",80 for input as #1 20 open...
151
bssmaw
Jul 6, 2005 4:21 pm
Dear All, I'm trying to read in a file of the form 5,3,7,12,5 23,5,7,8,1 2,34,9,8,3 etc. Is there a way to read in one number at a time rather than the whole...
152
Jeremy Gardiner
oldsalo
Jul 6, 2005 6:30 pm
Matthew, If you always have a fixed number of columns, try this: for i = 1 to n input a(i,1),a(i,2),a(i,3),a(i,4),a(i,5) next i Not very elegant, but hey? ...
153
Marcel Spisak
marcelkavka
Jul 7, 2005 7:06 am
Not the simplest way: for/nxt input #1,a$ (reads on line into a$) with instr$ and mid$ read out position of "," and then the numbers in between nxt (for next...
155
hotpaw2
Jul 11, 2005 5:33 am
The built-in field$(a$, n, ",") function will return comma seperated fields directly....
156
rhnlogic
Jul 15, 2005 6:14 pm
When using sockets, you have to correctly format an HTTP request as per the RFC. 100 rem Chipmunk Basic HTTP(web page) via socket example 110 host$ =...
157
Jeremy Gardiner
oldsalo
Jul 16, 2005 9:17 am
I get "Syntax error, missing symbol in line 160" ... should this work on a Mac? I have Chipmunk BASIC v3.5.7b1. Jeremy Gardiner From: "rhnlogic"...
158
hotpaw2
Jul 16, 2005 6:51 pm
The current version of Chipmunk Basic for Mac OS X is 3.6.2 You can download it from here: http://www.nicholson.com/rhn/basic/ Network sockets, as per the...
159
John Jacques
johnj_01201
Jul 16, 2005 8:10 pm
Hello, can anyone tell me where I can download the source code for v 1.x? Supposedly, the original author used pas2c to conert his pascal version into C code...
160
John Jacques
johnj_01201
Jul 16, 2005 8:30 pm
Found it thanks. John __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around ...
161
Jeremy Gardiner
oldsalo
Jul 17, 2005 7:43 am
That explains it - I have Mac OS 8.5.1 ... From: hotpaw2 <no_reply@yahoogroups.com> Reply-To: chipmunkbasicforum@yahoogroups.com Date: Sat, 16 Jul 2005...
162
motnoslo1956
Aug 17, 2005 12:29 am
I work at a school where we want to limit access to student accounts to certain applications. So in OS X, you can allow certain applications to be run by going...
166
praslin71
Sep 20, 2005 7:20 pm
Hello; i´m making an invoice system for a jewerly in basic but i have a problem;don´t know how to make an password masked progrma to log into the whole...
167
praslin71
Sep 20, 2005 7:22 pm
Hello; i´m making an invoice system for a jewerly in basic but i have a problem;don´t know how to make an password masked progrma to log into the whole...
168
bglotzbach2
Sep 29, 2005 5:40 pm
I am trying to type the following program for my students at school using Chipmunk Basic. When I try to run the program I get a line error in 110 and I can't...
169
Daniel Lurie
eirulleinad
Sep 29, 2005 9:20 pm
... Remove the space between the < and >...
170
krlb@...
gripperusa
Oct 4, 2005 8:13 pm
Look like line 110 is < > , which needs to be <>, there appears to be a space in between less then, greater than characters. ... error.... Good Luck -Rick...
171
msucsundergrad
Oct 6, 2005 2:36 am
Hullo all, I'm somewhat of a noob to the BASIC programming world and have yet to find an API or something like one. I am working on a project that would take...
172
mrz87239
Nov 9, 2005 10:33 pm
Hi, I'm looking for how to input text data from a file into individual fields. I have been able to input numeric data into fields, but text data doesn't seem...
173
Jim DeVona
jd_anoved
Nov 11, 2005 3:20 am
... Sure! The "basic.man" document distributed with Chipmunk Basic actually acknowledges this behavior under the "input" section. It says that "all input to...
174
Jim DeVona
jd_anoved
Nov 14, 2005 5:02 am
Hi, everyone. Just thought I would share the results of my weekend project. It's a Chipmunk Basic program that reads and renders ESRI shapefiles, which is a...
175
springvillebob
Nov 17, 2005 2:42 pm
The scrn() function is said to "return pixel values" and I am not sure just what that means. I have tried it and it prints "100" regardless of what color is at...
176
Jim DeVona
jd_anoved
Nov 18, 2005 4:14 am
Well, as I understand it "graphics scrn(x,y,1)" returns the red value of the pixel at x,y, and "graphics scrn(x,y,2)" the green and "graphics scrn(x,y,3)" the...
177
Bob Cyr
springvillebob
Nov 18, 2005 7:12 pm
Hi Jim, Thanks for getting back to me so quickly. I am using Chipmunk BASIC v 3.6.1(b1) ipb -2004/11b2 which I assume is the latest version. My computer is...
178
Jim DeVona
jd_anoved
Nov 19, 2005 3:57 am
... I tried it too and I get the same kind of results!! 49.803922 with random 100s. (We have the same version of Chipmunk Basic.) I don't know why it happens,...
179
Bob Cyr
springvillebob
Nov 19, 2005 10:39 pm
Thanks Jim, I see what you mean about inserting a pause between drawing and the scrn_reading. I have tried the macfunction ("wait", n) and found it to offer...
180
Jim DeVona
jd_anoved
Nov 20, 2005 2:26 am
... Well, the latest version was released about a year ago. I don't know how much work is being done on it currently, but I see no reason why not to mention...
181
Bob Cyr
springvillebob
Nov 20, 2005 4:58 pm
Hi Jim, On the matter of running Microsoft Word via script, I have opened the Word Applescript Dictionary. I have tried many combinations aside from "text"...
182
Jim DeVona
jd_anoved
Nov 20, 2005 5:21 pm
... OK. Hopefully someone else will be able to help you out with it, because I just don't know enough about Word (or the more subtle nuances of AppleScript,...
183
rhnlogic
Nov 22, 2005 12:41 am
... I think the: graphics 1 command might force any previous screen drawing to finish, which is probably what's needed before reading the results of a recent...