Search found 351 matches

by Fox
Mar 09, 2011 18:26
Forum: Libraries Questions
Topic: How do I include a glade source file into my program?
Replies: 7
Views: 3509

BTW: Filling combo-boxes in the GUI-XML-file is libglade stuff. Its deprecated. I recomment to switch to GtkBuilder and create an GObject (GList) for your combo-box entries. (Do you use Glade 3.6 or above?) I know about libglade being deprecated... The reason I am using it is because I never did an...
by Fox
Mar 09, 2011 14:35
Forum: Libraries Questions
Topic: How do I include a glade source file into my program?
Replies: 7
Views: 3509

BTW: GTK+tobac does some compression for the glade file, so big files gets smaller and faster when included into the source. Yeah, and it breaks comboboxes a the same occasion :) In fact, your converter is removing all end-of-line markers (CR, or CR/LF), and this is not a good thing... When using c...
by Fox
Mar 09, 2011 10:47
Forum: Libraries Questions
Topic: How do I include a glade source file into my program?
Replies: 7
Views: 3509

I recomment to use GTK+tobac to generate the FB source. It can include the GUI-XML file into the basic source. Just check the button 'Glade in source' in the parameter tab and generate the .bas files. Hi, thanks for the tip! In fact, I don't think I need such tool like GTK+tobac (which is a really ...
by Fox
Mar 08, 2011 16:13
Forum: Libraries Questions
Topic: How do I include a glade source file into my program?
Replies: 7
Views: 3509

How do I include a glade source file into my program?

Hi, I am now writing a little GUI application using glade. Glade is really cool, but as far as I see, I will have to distribute my xml "description" file along with my program, as libglade is using it to draw all menus, buttons, etc... Is there any way I could include my xml glade file int...
by Fox
Jan 08, 2011 11:16
Forum: DOS
Topic: stray CR (carriage return) outputted by DOS version
Replies: 4
Views: 3214

Re: stray CR (carriage return) outputted by DOS version

It's printing an extra CR (carriage return) in addition to the normal line ending CR+LF pair. Hi Rugxulo, I reported this problem a long time ago (back in 2006): http://www.freebasic.net/forum/viewtopic.php?t=5672&highlight= However, my report doesn't seem to catch the attention of FB developer...
by Fox
Jan 08, 2011 11:00
Forum: Community Discussion
Topic: Are FreeBASIC people on LinkedIN?
Replies: 11
Views: 3281

Problems: Your face is distracting, mang. Also, the description is really a bit long-winded and there are a few minor grammar problems. Well, in fact, the description of the group is this: "This group is open to all people that use FreeBASIC (and that are proud to do so!)." What you have ...
by Fox
Jan 06, 2011 21:07
Forum: Windows
Topic: New inline FBC code block (GoRC) for resource script ?
Replies: 6
Views: 3545

Re: New inline FBC code block (GoRC) for resource script ?

fxm wrote:What is your opinion ?
+1

Every time I need to add an icon to my program at compile time, I'm wondering "wow, how easier it would be if I could simply add the icon-ressource definition right into my source code!"
by Fox
Jan 06, 2011 20:41
Forum: General
Topic: How could I temporarily disable screensaver?
Replies: 8
Views: 2832

Maybe this will work... #Include "windows.bi" '0=Disable / 1=Enable Function EnableScreenSaver(Enable As Integer) As Integer Return IIf(SystemParametersInfo(SPI_SETSCREENSAVEACTIVE, Enable, 0, 0) > 0,1,0) End Function Thanks! I quickly tested it on a VirtualBox, and it does seem to disabl...
by Fox
Jan 06, 2011 18:32
Forum: Community Discussion
Topic: Are FreeBASIC people on LinkedIN?
Replies: 11
Views: 3281

KristopherWindsor wrote:Linkedin isn't working right now. I'll try again later. D:
Yep, but seems to be back now :)
by Fox
Jan 06, 2011 14:43
Forum: Community Discussion
Topic: Are FreeBASIC people on LinkedIN?
Replies: 11
Views: 3281

I can't search for it without upgrading. Not gonna happen. Oh, really? I am able to search groups, and I have just the basic (free) account as well... Just had to click on "groups", and then type "FreeBASIC" in the search bar. Maybe try this link: http://www.linkedin.com/groupsD...
by Fox
Jan 05, 2011 14:55
Forum: Community Discussion
Topic: About system DOS
Replies: 17
Views: 4557

Re: About system DOS

There is a branch at a forum "DOS". I want to ask a question: Really who that still works in this system, or simply train in programming? Me! I'm using FreeDOS for some tasks, and I do compile many of my programs to this platform. I know there is also a bunch of other people on this forum...
by Fox
Jan 05, 2011 11:57
Forum: Community Discussion
Topic: Are FreeBASIC people on LinkedIN?
Replies: 11
Views: 3281

Hello,

Done! I created a FreeBASIC Developers group on LinkedIn just now. Any LinkedIn FreeBASICer is welcome there! :-)
by Fox
Jan 04, 2011 19:40
Forum: Community Discussion
Topic: Are FreeBASIC people on LinkedIN?
Replies: 11
Views: 3281

Are FreeBASIC people on LinkedIN?

Hi! I saw that are some FreeBasic groups at Facebook, and was wondering: is anybody from here present at LinkedIn (hard to tell 'cause we are all using pseudos here!)? What about creating a FreeBASIC group on LinkedIn? It would definitely get FreeBASIC some buzz (plus, you get the cool FreeBASIC log...
by Fox
Jan 04, 2011 19:30
Forum: General
Topic: Multikey won't work
Replies: 24
Views: 5378

Re: Multikey won't work

And now it won't work as it's supposed to. I can do everything except: accelerate+shoot+rotate SLOWLY (M pressed). If I have all these pressed, it just won't rotate... Hi, Could be a hardware limitation of your keyboard. I remember back in my DOS days, that in games that required to use many keys s...
by Fox
Dec 31, 2010 19:44
Forum: General
Topic: How could I temporarily disable screensaver?
Replies: 8
Views: 2832

Hi again, Here is the code that I am using now to avoid screen saver to happen on my Linux PC (and this code works very well for me!) :) SUB InhibitScreenSaver() #IFDEF __FB_LINUX__ SHELL "xdg-screensaver reset" ' The supposed "standard" way (which doesn't always work) SHELL &quo...