The ratings revamp...

Announce and discuss the progress of your various programming-related projects...programs, games, websites, tutorials, libraries...anything!

Moderators: Pete, Mods

Post Reply
Kevin

The ratings revamp...

Post by Kevin »

I am revamping the crappy old ISRB ratings system to be what the Qbasic and freebasic community want it to be :D ...

It will have:
-A non-fixed path(If I can figure that out :( )
-Windows API
-Selection between the Old(G, B, A, FA) and the new...
-Everything bundled up into one application(hopefully)

Some questions for all of you(so this one won't suck):
1. What should be the new ratings board(Age should be not a factor)?
2. Would you like it to be 32-bit console, or API oriented?
3. Would you prefer a setup program, or a CAB file?
4. Would you like it to have Source Code(It may be in C :evil: if in API)
5. Can you use resource files in Fb(if no, I will have to use C(how the hell did it gain so much popularity? :x ) if API based)?
6. How can I make a non-fixed path?

All your help will be greatly appreciated :D ! Thank you!
Rattrapmax6
Veteran
Posts: 1055
Joined: Sun Jan 02, 2005 2:11 pm
Location: At my computer
Contact:

Post by Rattrapmax6 »

As for the no-fixed paths.... You could work the working folder and use sub domains or what ever.. You set you paths to curent directory..

Code: Select all

Path$ = CURDIR$
/\ In FreeBASIC,.. Or you could use:

Code: Select all

DIM Path AS STRING

Path = EXEPATH
:wink: Those will set to the path$ of the file to avoid using fixed paths...
-Kevin (aka:Rattra)
(x.t.r.GRAPHICS)
Guest
Veteran
Posts: 128
Joined: Sun Aug 14, 2005 8:33 pm
Location: Forest Lake, MN
Contact:

Post by Guest »

To answer your second question, I would like to see it API oriented rather than a console window...
Post Reply