Search found 1029 matches

by Merick
Aug 30, 2013 16:54
Forum: General
Topic: fb.9 incorrect library read
Replies: 13
Views: 2073

Re: fb.9 incorrect library read

Does it behave the same way if you use dylibload instead of declaring the functions? I'd try testing it myself but I just had to re-format my drives and haven't gotten around to setting up Fb yet.
by Merick
Aug 30, 2013 16:47
Forum: Sources, Examples, Tips and Tricks
Topic: The Fancy 2.5D Tutorial v.1 - Tips & Code for 2.5D
Replies: 9
Views: 4954

Re: The Fancy 2.5D Tutorial v.1 - Tips & Code for 2.5D

I tried posting some of those links into the Internet Archive, only thing I found was your privect2d lib and an outline for an FB programmer's guide.

http://web.archive.org/web/*/http://pri ... org/files/*
by Merick
Aug 01, 2013 6:44
Forum: General
Topic: text display lib
Replies: 7
Views: 1631

Re: text display lib

Dodicat, thanks that looks like something I can work with.

Unfortunately it's starting to look like I might have to re-format my hd before I can start working on my next "never to be completed" project
by Merick
Jul 30, 2013 5:34
Forum: General
Topic: text display lib
Replies: 7
Views: 1631

text display lib

Before I go and start trying to write one myself, has anyone put together a text display library using only internal FB functions? Mostly what I'm looking for is something that uses drawstring and can do word wrapping and scrolling inside a rectangular graphics box.
by Merick
Jul 27, 2013 17:00
Forum: Sources, Examples, Tips and Tricks
Topic: TinyDialog a simple Windows and Linux user interface.
Replies: 100
Views: 32741

Re: TinyDialog a simple Windows and Linux user interface.

Don't know if this will work or if it'll end up the same as my last suggestion, but maybe try HWND_NOTOPMOST on the fbgfx window.
by Merick
Jul 27, 2013 3:14
Forum: General
Topic: Need help,run .exe directly in desktop vista(SOLVED)
Replies: 26
Views: 3454

Re: Need help,run .exe directly in desktop vista

guys, I think what he want's isn't GFX_FULLSCREEN but GFX_SHAPED_WINDOW so he can click through to the desktop.
by Merick
Jul 26, 2013 17:48
Forum: Sources, Examples, Tips and Tricks
Topic: TinyDialog a simple Windows and Linux user interface.
Replies: 100
Views: 32741

Re: TinyDialog a simple Windows and Linux user interface.

Try seeing what happens if you use FindWindow on the window created by fbgfx and in SetWindowPos use HWND_BOTTOM instead of HWND_TOP
by Merick
Jul 25, 2013 18:36
Forum: General
Topic: Beautify
Replies: 16
Views: 3370

Re: Command-based procedures adaptation

You can use #ifdef to check which system you are compiling on:

http://www.freebasic.net/wiki/wikka.php ... gDdfblinux
by Merick
Jul 21, 2013 5:51
Forum: Community Discussion
Topic: fbedit temp exe delayed delete
Replies: 3
Views: 1078

Re: fbedit temp exe delayed delete

I tried LockHunter and it tells me that it's locked by the system, but all it says is "no path for the process"

I did think about it being a scanner, but it still happens even after I disable everything - I even went so far as to completely uninstall my antivirus.
by Merick
Jul 21, 2013 2:09
Forum: Community Discussion
Topic: fbedit temp exe delayed delete
Replies: 3
Views: 1078

fbedit temp exe delayed delete

I've been using fbedit for quite some time without problems, but recently I've started running into this problem I haven't had before. It used to be that when doing a quickrun to test some bit of code, fbtemp.exe would get deleted immediately after the program exits, but now I'm finding that the tem...
by Merick
Jul 19, 2013 5:51
Forum: General
Topic: MonitorOFF
Replies: 11
Views: 2424

Re: MonitorOFF

I haven't tested this so I can't say if it's the problem, but on win7 try turning off Aero.
by Merick
Jul 05, 2013 3:01
Forum: General
Topic: GET/PUT for text, not graphics
Replies: 6
Views: 1366

Re: GET/PUT for text, not graphics

You can use screen to read the characters from the screen into an array, then locate and print to put them back afterwards (example from the FB help file): Color 7, 1 Print "A" Dim As UInteger char, col, fg, bg '' get the ASCII value of the character we've just printed char = Screen(1, 1, ...
by Merick
Jul 01, 2013 9:09
Forum: General
Topic: How to get length of an array
Replies: 5
Views: 1987

Re: How to get length of an array

lbound and ubound: sub printNumbers(num() as integer) print "-------" for i as integer = lbound(num) to ubound(num) print num(i) next i end sub sub fillNumbers(num() as integer) for i as integer = lbound(num) to ubound(num) num(i) = int(rnd(1)*100) next i end sub dim as integer num1(10) di...
by Merick
Jul 01, 2013 9:04
Forum: Beginners
Topic: Parser/assembler problem? (closed)
Replies: 18
Views: 4266

Re: Parser/assembler problem?

input in the output... could this be related to the stdin/stdout bug that was recently fixed?
by Merick
Jun 29, 2013 21:20
Forum: Community Discussion
Topic: Case sensitivity = Big mess!
Replies: 10
Views: 2561

Re: Case sensitivity = Big mess!

Maybe add it as a metacommand: '$case_sensitive