Home | Reviews | GUIpedia | Forum | Fun500
jasonwoodland | Circle 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-09 | 7:25 AM |
Brandon | Re:Circle Routine & FL Font files & Quotation MarksA 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-09 | 7:29 AM |
jasonwoodland | Re:Circle Routine & FL Font files & Quotation MarksTEXT$ = "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-09 | 7:36 AM |
Brandon | Re:Circle Routine & FL Font files & Quotation MarksTry print instead of write? Anyways if you get on AIM I have a surprise. | 2008-08-09 | 7:38 AM |
jasonwoodland | Re:Circle Routine & FL Font files & Quotation MarksI had to Format C again, which AIM Should I get? Pro? | 2008-08-09 | 7:41 AM |
Brandon | Re:Circle Routine & FL Font files & Quotation Markshttp://pidgin.im It supports AIM,MSN,Jabber, IRC all sorts of shit. | 2008-08-09 | 7:42 AM |
jasonwoodland | Re:Circle Routine & FL Font files & Quotation MarksTHANKYOU 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-09 | 7:45 AM |
Brandon | Re:Circle Routine & FL Font files & Quotation MarksWell goto http://meebo.com | 2008-08-09 | 8:16 AM |
jasonwoodland | Re:Circle Routine & FL Font files & Quotation MarksAnyone else know the maths in making your own circle routine? :) How do you change the mouse cursor if Future.Lib? | 2008-08-09 | 11:07 PM |
SonicBrit | Re:Circle Routine & FL Font files & Quotation MarksTheres 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-10 | 6:10 PM |
jasonwoodland | Re:Circle Routine & FL Font files & Quotation MarksThanks!:cheer: I'll put the command in straight away:) | 2008-08-11 | 3:48 AM |
jasonwoodland | Re: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-16 | 6:18 AM |
ksr | Re:Circle Routine & FL Font files & Quotation MarksIt'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-16 | 6:51 AM |
jasonwoodland | Re:Circle Routine & FL Font files & Quotation MarksWell 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-16 | 7:16 AM |
Brandon | Re:Circle Routine & FL Font files & Quotation MarksMake 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-16 | 9:03 AM |
jasonwoodland | Re:Circle Routine & FL Font files & Quotation MarksDid it show the same type of error? | 2008-08-16 | 9:06 AM |
Brandon | Re:Circle Routine & FL Font files & Quotation MarksNo, Im just saying that for my health :P | 2008-08-16 | 2:50 PM |
jasonwoodland | Re:Circle Routine & FL Font files & Quotation MarksPerfect;) | 2008-08-16 | 7:15 PM |
jasonwoodland | Re:Circle Routine & FL Font files & Quotation MarksGood 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-19 | 9:50 AM |
jasonwoodland | Re:Circle Routine & FL Font files & Quotation MarksWhoops, didn't mean to wrote that comment ment to click Cancel | 2008-09-17 | 5:43 PM |
2021 Brandon Cornell