Search found 355 matches
- Jun 17, 2015 10:16
- Forum: Projects
- Topic: VISG: visual and smart GUI builder
- Replies: 107
- Views: 66598
Re: VISG: visual and smart GUI builder
Dammit! I downloaded and extracted the app and everything and McAfee (a security programme) said it was bad and DELETED THE APPLICATION FROM MY COMPUTER D:<! I'm not saying it is bad or anything because other's are having no problem (as I have noticed on this board) but McAfee thinks it is! Really a...
- Jun 14, 2015 16:13
- Forum: General
- Topic: Command-line Arguments...
- Replies: 2
- Views: 1153
Command-line Arguments...
You know when, if you want to pass in a parameter to an application using CMD (or equivalent), you type them with spaces? For example, to make a DLL (on windows) with fbc you type: fbc -dll code_file.bas The items in bold are what I'm talking about. How do you do this in FB? Where you can pass in va...
- Jun 08, 2015 15:13
- Forum: General
- Topic: Really annoying pixel problem
- Replies: 10
- Views: 1201
Re: Really annoying pixel problem
try changing, for loopVar as ulongint = 1 to h for innerVar as ulongint = 1 to w rgbcolour = point(w, h, bmp) .... to, for loopVar as integer = 0 to h-1 for innerVar as integer = 0 to w-1 rgbcolour = point(innerVar,loopVar,bmp) .... *large gasp*, how could I be so stupid! I used the width and heigh...
- Jun 08, 2015 9:00
- Forum: General
- Topic: Really annoying pixel problem
- Replies: 10
- Views: 1201
Re: Really annoying pixel problem
You say you're trying to solve a problem all day but you never mentioned what that problem was. if Point() isn't giving you an RGB value, then that is a bug in my opinion. The docs state that Point() should return the 32-bit value for a pixel. What is it doing for you? Is it too slow? Wrong color? ...
- Jun 07, 2015 21:17
- Forum: General
- Topic: Really annoying pixel problem
- Replies: 10
- Views: 1201
Really annoying pixel problem
Hello. I've been trying to solve this problem all day but I can't get it to work! Can somebody tell me how to get a graphics screen's pixel 32-bit colour, by giving the x and y coords? Point() doesn't seem to help (by using an image buffer OR the screen). I would EXTREMELY appreciate it if someone c...
- Jun 05, 2015 23:10
- Forum: General
- Topic: Screen Dimensions?
- Replies: 1
- Views: 314
Screen Dimensions?
Is there a way to get the whole computer screen's width and height in pixels? If there is, then I would appreciate it if someone told me how!
- Jun 04, 2015 18:22
- Forum: General
- Topic: The WORD() function?
- Replies: 10
- Views: 1106
Re: The WORD() function?
There's no such function currently, but you could perhaps change that code to use an array (like a lookup table): dim shared colors(0 to 15) as zstring * 20 => { _ "black", "blue", "green", "aqua" _ "red", "purple", "yellow", &qu...
- Jun 04, 2015 16:53
- Forum: General
- Topic: The WORD() function?
- Replies: 10
- Views: 1106
The WORD() function?
Is there a function where you input a string, input a delimiter, and returns a "word" out of the string plugged-in, using the delimiter? Here are a few examples of it's functionality: word("hello world!", " ", 2) would return "world!" word("hello world!&q...
Re: Sprites
Thank you for getting back to me! I will examine the sources you have given me later whenever I am available to, thank you!
Sprites
Hello, I'm having a bit of trouble with a tutorial I've found in the help documentation. There's a link to a downloadable image on the page, but when I sent it into my browser it said there was some error and it couldn't find the webpage. The tutorial of which I am referring to is How to Program a G...