You could ask Sebastian for some users space instead of using these **** filehoster. :\
See: http://users.freebasic-portal.de/
Search found 553 matches
- Jun 09, 2014 16:53
- Forum: Windows
- Topic: Gui Builder
- Replies: 26
- Views: 8205
- May 29, 2014 14:33
- Forum: General
- Topic: PMAP bug in FB 0.90.1 ?? [solved]
- Replies: 9
- Views: 1037
Re: PMAP bug in FB 0.90.1 ??
Open your /inc/win/winbase.bi file an scroll to the end. You will find this: #define RtlMoveMemory(Destination, Source, Length) memmove((Destination), (Source), (Length)) #define RtlFillMemory(Destination, Length, Fill) memset((Destination), (Fill), (Length)) #define RtlZeroMemory(Destination, Lengt...
- May 29, 2014 9:13
- Forum: Projects
- Topic: wxFBE, editor for both Windows and Linux
- Replies: 261
- Views: 55976
Re: wxFBE, editor for both Windows and Linux
1. ctrl-clicking #Include "<full path>" doesn't do anything 2. "Save As" doesn't necessarily open file-in-question's directory 1. Will be fixed in the next version. 2. Unfortunately, it's the same problem as here: http://www.freebasic.net/forum/viewtopic.php?f=8&t=20284&...
- May 28, 2014 6:25
- Forum: General
- Topic: PMAP bug in FB 0.90.1 ?? [solved]
- Replies: 9
- Views: 1037
Re: PMAP bug in FB 0.90.1 ??
For the latest builds better use these: http://www.freebasic.net/forum/viewtopi ... 95#p197174
(Because of the new builds I'm not updating my builds until someone ask explicitly for it.)
(Because of the new builds I'm not updating my builds until someone ask explicitly for it.)
- May 26, 2014 5:55
- Forum: General
- Topic: Questions on inheritance in FreeBASIC
- Replies: 337
- Views: 49918
Re: Questions on inheritance in FreeBASIC
With "keywords" I mean IsRedirected and ThreadDetach and rthe planned string functions like replace and split. I think both of your functions are good and can be helpful. We also have a fbrtti.bi already, but why not allow to use it? We should at least have a subset of functions to work wi...
- May 26, 2014 5:44
- Forum: Community Discussion
- Topic: What is everybody using now?
- Replies: 6
- Views: 774
Re: What is everybody using now?
These packages are build to help beginners. As we are mainly supporting german beginners I've configured them to this language. But you can simply change it in the options or the ini files. As far as I remember, the english help files are included, just change the link in the options. There's also a...
- May 21, 2014 12:05
- Forum: General
- Topic: Questions on inheritance in FreeBASIC
- Replies: 337
- Views: 49918
Re: Questions on inheritance in FreeBASIC
Now we have some new fb header with new "keywords". Why not adding a "fbrtti.bi", which will provide such methods to retrieve information of any instance on an object extending the Object class?
- May 16, 2014 20:58
- Forum: Projects
- Topic: wxFBE, editor for both Windows and Linux
- Replies: 261
- Views: 55976
Re: wxFBE, editor for both Windows and Linux
You have to install libgtk2.0-0:i386, I guess.
- May 16, 2014 16:29
- Forum: Projects
- Topic: FB debugger : 2.93 32/64 BIT ..... (Sept 5th, 2018)
- Replies: 617
- Views: 139979
Re: FB debugger : 2.80 BETA 9 (april 14th, 2014)
It's windows only, sorry.
- May 12, 2014 18:15
- Forum: Projects
- Topic: wxFBE, editor for both Windows and Linux
- Replies: 261
- Views: 55976
Re: wxFBE, editor for both Windows and Linux
@dafhi: I did some minor changes to the code. Now I'm using LOF and GET to read the code. You can check out the latest changes, compile wxFBE and test it with your codes. Hope it works better now.
- May 09, 2014 13:27
- Forum: Tips and Tricks
- Topic: Simple "Try" macros based on VEH (Windows only)
- Replies: 2
- Views: 928
Re: Simple "Try" macros based on VEH (Windows only)
Cherry did something like this some time ago: http://freebasic.net/forum/viewtopic.php?f=7&t=13925
- May 03, 2014 16:14
- Forum: Beginners
- Topic: Question about declaration with initialization
- Replies: 19
- Views: 1835
- May 03, 2014 12:17
- Forum: Beginners
- Topic: Question about declaration with initialization
- Replies: 19
- Views: 1835
Re: Question about declaration with initialization
This was my first shot when developing my class but I didn't like the idea of using functions for something that's supposed to be a constant. :\
- May 02, 2014 13:16
- Forum: Beginners
- Topic: Question about declaration with initialization
- Replies: 19
- Views: 1835
Re: Question about declaration with initialization
Sorry, but using namespaces is no option here. If it really gets "fixed", I'll have a problem. The more I think about, the more I'm sure, that the parser needs a rewrite to allow such structures. This could a lot of problems like macro expanding in some cases, better handling for the #Prag...
- May 02, 2014 10:22
- Forum: Beginners
- Topic: Question about declaration with initialization
- Replies: 19
- Views: 1835
Re: Question about declaration with initialization
In this particular case I could do this, yes. But in my way more complexe scenario I cannot, because it will cut the flexibility in other points. Maybe Const is also the wrong word for it. In Java we have "final". It's used like Const but it works slightly different. On the other hand our ...