Home | Reviews | GUIpedia | Forum | Fun500


jasonwoodlandCircle Routine & FL Font files & Quotation Marks
'Eyy, how do you make a circle in QB from your own routine? I would need one for the paint program in Cobra:cheer:. The ZIP of Future.Lib Font files and font editor on QB45.com is corrupt and a font selection would be awsome. How do you get rid of Quotation marks when you write a file in QB.:S Thankyou so much for your help and kindness:cheer:
2008-08-097:25 AM

BrandonRe:Circle Routine & FL Font files & Quotation Marks
A circle from your own routine? You mean like from math and PSET? I have no idea beyond that. Quotation marks in a file? Can you give me an example or something?
2008-08-097:29 AM

jasonwoodlandRe:Circle Routine & FL Font files & Quotation Marks
TEXT$ = "Hello" open "TEMP.TMP" for OUTPUT AS #1 WRITE #1, TEXT$ CLOSE #1 TEMP.TMP Has the following: "Hello" But I want this: Hello
2008-08-097:36 AM

BrandonRe:Circle Routine & FL Font files & Quotation Marks
Try print instead of write? Anyways if you get on AIM I have a surprise.
2008-08-097:38 AM

jasonwoodlandRe:Circle Routine & FL Font files & Quotation Marks
I had to Format C again, which AIM Should I get? Pro?
2008-08-097:41 AM

BrandonRe:Circle Routine & FL Font files & Quotation Marks
http://pidgin.im It supports AIM,MSN,Jabber, IRC all sorts of shit.
2008-08-097:42 AM

jasonwoodlandRe:Circle Routine & FL Font files & Quotation Marks
THANKYOU YOU FIXY ITO! I'll be download at 9:46 PM (1 min away) EDIT: No can do: Error Missing Parameters One or more of the parameters required to process your download request were missing. Please return to the previous page and try again.
2008-08-097:45 AM

BrandonRe:Circle Routine & FL Font files & Quotation Marks
Well goto http://meebo.com
2008-08-098:16 AM

jasonwoodlandRe:Circle Routine & FL Font files & Quotation Marks
Anyone else know the maths in making your own circle routine? :) How do you change the mouse cursor if Future.Lib?
2008-08-0911:07 PM

SonicBritRe:Circle Routine & FL Font files & Quotation Marks
Theres quite a few routines for doing circles, but probably the most well known one is by a guy called Bresenham, here it is bellow written in plain basic. DECLARE SUB cir (px!, py!, r!, c!) SCREEN 12 CALL cir(100, 100, 50, 15) SUB cir (px, py, r, c) d = 3 - (2 * r) x = 0 y = r DO IF d < 0 THEN d = d + (4 * x) + 6 ELSE d = d + 4 * (x - y) + 10 y = y - 1 END IF PSET (px + x, py + y), c PSET (px + x, py - y), c PSET (px - x, py + y), c PSET (px - x, py - y), c PSET (px + y, py + x), c PSET (px + y, py - x), c PSET (px - y, py + x), c PSET (px - y, py - x), c x = x + 1 LOOP UNTIL x >= y END SUB
2008-08-106:10 PM

jasonwoodlandRe:Circle Routine & FL Font files & Quotation Marks
Thanks!:cheer: I'll put the command in straight away:)
2008-08-113:48 AM

jasonwoodlandRe:Circle Routine & FL Font files & Quotation Marks
:huh: I got an error, in Cobra when I click the Wave Player, before anything happens it locks up like there ain't enough memory. Plz help:unsure:
2008-08-166:18 AM

ksrRe:Circle Routine & FL Font files & Quotation Marks
It's been a while since I did anything in QB, but if you did run out of memory I'm pretty sure it would tell you. Other than that, I can't help you without looking at the source.
2008-08-166:51 AM

jasonwoodlandRe:Circle Routine & FL Font files & Quotation Marks
Well I'm in SVGA and the DOS characters don't appear, i'll ResetScreen it EDIT: String Space corrupt in module [8 blank spaces] at address D 3 C F : D 3 C F
2008-08-167:16 AM

BrandonRe:Circle Routine & FL Font files & Quotation Marks
Make sure you aren't trying to access something in an array that isn't there. Like ARRAY(101) when you dimmed ARRAY(100) I used to crash all the time from that.
2008-08-169:03 AM

jasonwoodlandRe:Circle Routine & FL Font files & Quotation Marks
Did it show the same type of error?
2008-08-169:06 AM

BrandonRe:Circle Routine & FL Font files & Quotation Marks
No, Im just saying that for my health :P
2008-08-162:50 PM

jasonwoodlandRe:Circle Routine & FL Font files & Quotation Marks
Perfect;)
2008-08-167:15 PM

jasonwoodlandRe:Circle Routine & FL Font files & Quotation Marks
Good news everyone! I fould a handy lil' ZIP file with all the FL fonts plus a text editor! So fonts are crossed off the list:cheer: I also needBIOS stuff to View the Processor info and Ram stuff:)
2008-08-199:50 AM

jasonwoodlandRe:Circle Routine & FL Font files & Quotation Marks
Whoops, didn't mean to wrote that comment ment to click Cancel
2008-09-175:43 PM

BASIC Programming Help


2021 Brandon Cornell