Search found 201 matches
- Apr 20, 2016 18:21
- Forum: Archive
- Topic: ServiceFB - Event-driven NT Service framework
- Replies: 14
- Views: 10845
Re: ServiceFB - Event-driven NT Service framework
ServiceFB hasn't been updated in years and don't think is worth to update all that codebase. After the shutdown of Google Code, you can find the code on GitHub: https://github.com/luislavena/servicefb However I recommend using something smaller like mini_service instead: https://github.com/luislaven...
- Sep 23, 2012 19:01
- Forum: Community Discussion
- Topic: Anyone familiar with WiX?
- Replies: 3
- Views: 1172
Re: Anyone familiar with WiX?
I'm kinda familiar with it. For WiX to show it's true power, you need to maintain a manifest (XML) of files that will later be packaged into the installer database. This will help you produce update packages and repair functionality for your programs. But, maintain that manifest for program that com...
- Jul 19, 2011 18:45
- Forum: Windows
- Topic: How to compile with pedantic and deal with warning 17?
- Replies: 8
- Views: 2812
We switched from SVN to Git during the last weeks, so the SVN repository won't be updated anymore, all code is going here now: http://fbc.git.sourceforge.net/ See also this thread: http://www.freebasic.net/forum/viewtopic.php?t=18100 That is awesome news. I'm quite used to Git nowdays so is great t...
- Jul 19, 2011 18:31
- Forum: Windows
- Topic: How to compile with pedantic and deal with warning 17?
- Replies: 8
- Views: 2812
- Jul 19, 2011 17:19
- Forum: Windows
- Topic: How to compile with pedantic and deal with warning 17?
- Replies: 8
- Views: 2812
- Jul 19, 2011 13:04
- Forum: Windows
- Topic: How to compile with pedantic and deal with warning 17?
- Replies: 8
- Views: 2812
How to compile with pedantic and deal with warning 17?
Hello, I've been trying to compile several of my old programs with FB 0.22 and found lot of warnings 17 in them due usage of __FILE__: test\test_configuration_file.bas(7) warning 17(0): Possible escape sequence found in: "test\test_configuration_file.bas" Since this is a #define, I've trie...
- Feb 21, 2008 6:17
- Forum: Windows
- Topic: Win32 daily SVN build
- Replies: 109
- Views: 69843
Server is back up and running! Turns out it wasn't the hard drive at all (although, now it has 1.34TB of total storage space on that spanned partition) but the PSU (thanks mambazo for suggesting that). Anyway, the daily updates are back and available from my server again. http://ecowles.dyndns.org/...
- Feb 09, 2008 14:40
- Forum: Archive
- Topic: Testly: Perform some test to your code!
- Replies: 7
- Views: 8080
Updated Version!
I just released version 0.3.0 of Testly!
I've updated the first message of this thread with the included changes.
(Bumping this) :-)
Later,
Zero
I've updated the first message of this thread with the included changes.
(Bumping this) :-)
Later,
Zero
Re: GUI FB win32
I start a group : http://groups.google.com/group/fbgui Here I upload the source code (not finished), if you are intersted join to this group. One thing I'll suggest is create repository instead of a group to host code. With a repository other users can collaborate with code and patches. I was previ...
- Oct 20, 2007 22:29
- Forum: General
- Topic: Undocumented use of PRIVATE
- Replies: 2
- Views: 1656
Re: Undocumented use of PRIVATE
Guess that was missing from documentation, but I assume Type/Functions/Subs are public unless you state otherwise.anonymous1337 wrote:Does that even do anything? . . . Oh, right. It compiles.Code: Select all
private type Rect x as integer y as integer w as integer h as integer end type
- Oct 12, 2007 0:08
- Forum: Sources, Examples, Tips and Tricks
- Topic: Automatic Sub Declarer
- Replies: 9
- Views: 5143
- Oct 11, 2007 19:21
- Forum: Sources, Examples, Tips and Tricks
- Topic: Automatic Sub Declarer
- Replies: 9
- Views: 5143
I've used a program called KProf, it's a KDE frontend to gprof, but one of the nice things it does is create a graph of the program. I'm sure other programs can do this too, but I don't know any offhand. It works by the last profile you made with -profile, so it can only show what functions were ac...
Re: GUI
the reason for using any ptr istead to dim onclick as sub(byref sender as tform,dc as hdc,r as rect) is that : supose you want to assign onpaint event handler with an sub that have only one param or two or no params. declare sub onpaint or declare sub onpaint(sender as tform) or declare sub onpaint...
Re: GUI
Win GUI wrapper Download at : http://www.rqwork.evonet.ro/Gui2.zip Excellent work Eodor! cleaner than before! As v1ctor commented, removing the garbage WinAPI add make this thing possible to be ported to other platforms. I still don't like the as any ptr you used to work with the Callbacks inside t...
- Sep 25, 2007 22:36
- Forum: Documentation
- Topic: User written libraries in ExtLibTOC
- Replies: 12
- Views: 5902
i don't understand all this. 1) fbsound is the only (complex) lib written in FreeBASIC for FreeBASIC 2) fbsound is cross plattform without any limitation 3) fbsound is open source from beginning 4) fbsound is free for comercial apps too without any limitation 5) fbsound is stable since v0.03 (i hav...