Search found 489 matches
- Jul 25, 2015 23:48
- Forum: Community Discussion
- Topic: FB1.03.0-win32 Seg Violation
- Replies: 3
- Views: 853
FB1.03.0-win32 Seg Violation
I just installed FB-1.03.0-win32 last week. As with each update, new errors are revealed in old code that previously worked. This is a good thing, of course, since it improves my code. A nasty error showed up, however, that I think is worth mentioning to the FB community. My code has a shared uinteg...
- Jul 24, 2015 19:28
- Forum: Tips and Tricks
- Topic: Win: Use arbitrary fonts & load GIF/JPG/PNG to gfx, API only
- Replies: 7
- Views: 3129
Re: Win: Use arbitrary fonts & load GIF/JPG/PNG to gfx, API
This is a GREAT tool, especially for custom fonts, but it requires modification (beyond my skill set) to run in 64 bit. The problem is the namespace gdiplus does not get set up when the ifdef__FB_64bit__ is executed in GdiPlus.bi. Here's the code #ifdef __FB_64BIT__ #include "gdiplus-c.bi"...
- Jul 24, 2015 17:48
- Forum: Community Discussion
- Topic: Version 1.03.0
- Replies: 39
- Views: 5475
Re: Version 1.03.0
Ah, I didn't realize the linker to create 64 bit executables would not be backwards compatible with 32 bit compiled libraries.
Guess I will need to hunt down the source code and recompile the library.
Guess I will need to hunt down the source code and recompile the library.
- Jul 24, 2015 17:13
- Forum: Community Discussion
- Topic: Version 1.03.0
- Replies: 39
- Views: 5475
Re: Version 1.03.0
With the win64 version I'm having a problem with the linker. Linking fails with ld.exe: skipping incompatible C:\FreeBasic-1.03.0-win64\lib\win64/libxfont.a when searching for -lxfont ld.exe: skipping incompatible C:\FreeBasic-1.03.0-win64\lib\win64\libxfont.a when searching for -lxfont ld.exe: skip...
- Oct 14, 2014 3:58
- Forum: General
- Topic: FB_GUI problem
- Replies: 2
- Views: 1205
Re: FB_GUI problem
@ AstroJohn,
Do you mean this FB_GUI?
[url]
viewtopic.php?f=8&t=12592
[/url]
I wrote that code and have made several improvement, but haven't updated in a loooong time. I'm still using it in our lab. Works fine.
BasicScience
Do you mean this FB_GUI?
[url]
viewtopic.php?f=8&t=12592
[/url]
I wrote that code and have made several improvement, but haven't updated in a loooong time. I'm still using it in our lab. Works fine.
BasicScience
- Jun 21, 2014 20:58
- Forum: Windows
- Topic: Execution without TaskBar icon [solved]
- Replies: 4
- Views: 1611
Re: Execution without TaskBar icon [solved]
Thanks. Confirmed, GetConsoleWindow works.
- Jun 20, 2014 14:10
- Forum: Windows
- Topic: Execution without TaskBar icon [solved]
- Replies: 4
- Views: 1611
Execution without TaskBar icon [solved]
Is there a method to have an executable file created with FB (console mode only) run without creating an icon in the Win Taskbar?
- Jun 11, 2014 17:45
- Forum: General
- Topic: Advice on xFont and Image Display
- Replies: 8
- Views: 1071
Re: Advice on xFont and Image Display
Here's the instruction to make the background transparent with xFont. For many graphics functions, magenta = rgb(255,0,255), is used to designate transparent.
Code: Select all
font.backcolor = Rgba(255,0,255,0)
- May 29, 2014 14:53
- Forum: General
- Topic: PMAP bug in FB 0.90.1 ?? [solved]
- Replies: 9
- Views: 1247
Re: PMAP bug in FB 0.90.1 ?? [solved]
@MOD
Your suggestion worked. I can't thank you enough. I really appreciate your input to the Forum.
Your suggestion worked. I can't thank you enough. I really appreciate your input to the Forum.
- May 28, 2014 23:43
- Forum: General
- Topic: PMAP bug in FB 0.90.1 ?? [solved]
- Replies: 9
- Views: 1247
Re: PMAP bug in FB 0.90.1 ??
@MOD. Thanks, the 0.91.0 build does indeed fix the PMAP bug. Compared to build 0.90.1, however, I get new errors for a piece of code I grabbed to copy/paste to the clipboard. I'm not very experienced with the WIN API, so I'm having trouble fixing these two errors: error 41: Variable not declared, Rt...
- May 27, 2014 4:13
- Forum: General
- Topic: PMAP bug in FB 0.90.1 ?? [solved]
- Replies: 9
- Views: 1247
Re: PMAP bug in FB 0.90.1 ??
Is there an easy way to get the coordinates of the Viewport and the Window scale factors? If these numbers were available, then a custom PMAP replacement function could be written by the user while waiting for the next release of FB.
- May 27, 2014 3:55
- Forum: General
- Topic: PMAP bug in FB 0.90.1 ?? [solved]
- Replies: 9
- Views: 1247
Re: PMAP bug in FB 0.90.1 ??
OK, thanks
- May 27, 2014 2:16
- Forum: General
- Topic: PMAP bug in FB 0.90.1 ?? [solved]
- Replies: 9
- Views: 1247
PMAP bug in FB 0.90.1 ?? [solved]
The PMAP function does not appear to work correctly in FB 0.90.1 when the screen scale is changed with WINDOW. This code does work in FB 0.24.0. The correct responses for the PMAP responses are 1 and 400, but FB 0.90.1 gives 1 and 800. ScreenRes 800, 600, 32 Print "Default coordinates (0,0) - (...
- May 04, 2014 18:52
- Forum: Tips and Tricks
- Topic: Win: Use arbitrary fonts & load GIF/JPG/PNG to gfx, API only
- Replies: 7
- Views: 3129
Re: Win: Use arbitrary fonts & load GIF/JPG/PNG to gfx, API
Works beautifully. I especially like the arbitrary font load feature.
Thanks.
Thanks.
- Jan 12, 2014 16:49
- Forum: General
- Topic: Array or Ptr for UDT?
- Replies: 3
- Views: 487
Re: Array or Ptr for UDT?
Got it, thanks.