Search found 238 matches

by nobozoz
Jun 12, 2012 3:45
Forum: Sources, Examples, Tips and Tricks
Topic: New cycle-count macros (Windows only)
Replies: 7
Views: 3368

Re: New cycle-count macros (Windows only)

MichaelW- I compiled your new version on my WIN2KSP3, P4 system using FreeBASIC Compiler - Version 0.24.0 (05-21-2012) for win32. I occasionally get -1 and rarely -2 cycles on the first pass through the code sequence counter_begin( 10000000, REALTIME_PRIORITY_CLASS, THREAD_PRIORITY_TIME_CRITICAL ) c...
by nobozoz
Jun 07, 2012 1:18
Forum: Hardware Interfaces / Communication
Topic: MSL - Datascan on COM1 and Linux
Replies: 1
Views: 1673

Re: MSL - Datascan on COM1 and Linux

I use Windows XP only, but the basics shouldn't differ much from Linux. Using the default fb syntax... PRINT #1, B$ ... prints B$ and automatically appends chr(10,13) [ CRLF ] as two termination control characters. If you don't want the default termination characters, use... PRINT #1, B$; and provid...
by nobozoz
May 03, 2012 5:26
Forum: Projects
Topic: VisualFB (early stage)
Replies: 4
Views: 1837

Re: VisualFB (early stage)

Using Firefox, the web page hangs with the hourglass and no explanation.
by nobozoz
Apr 25, 2012 4:10
Forum: Projects
Topic: Game207
Replies: 14
Views: 4630

Re: Game207

Executable .zip file comes in corrupted - tried 2 times, same result. I'm on WINXPSP3 here.
by nobozoz
Apr 15, 2012 2:54
Forum: Windows
Topic: CreateObject does it exist??
Replies: 2
Views: 840

Re: CreateObject does it exist??

This might be helpful...

.\FreeBASIC\examples\libraries\disphelper

Also, search the fb forum archives for 'disphelper'.
by nobozoz
Apr 09, 2012 3:20
Forum: General
Topic: Creating A Windows... Window
Replies: 21
Views: 2641

Re: Creating A Windows... Window

All three of the 'cairo' examples require 'winlib.bi' which I can't find anywhere. Same problem with most fo the 'GLib' examples. Any clues? When the 'bundle' is unzipped, am I supposed to go and copy all the *.bi files into c:\freebasic\inc and stomp on all the previous gtk stuff from the freebasic...
by nobozoz
Apr 04, 2012 5:57
Forum: Windows
Topic: win7: Recording from microphone ? [waveIn not working]
Replies: 11
Views: 3177

Re: win7: Recording from microphone ? [waveIn not working]

That seems to have done the trick - thanks for your patience.
by nobozoz
Mar 31, 2012 6:14
Forum: Windows
Topic: Minecraft players dialog box. Problems I don't understand.
Replies: 2
Views: 1528

Re: Problems I don't understand

Downloaded and tried to compile your code from above - no joy. c:\FreeBASIC\fbc -s console -v -exx -w pedantic "synchronize.bas" "synchronize.rc" FreeBASIC Compiler - Version 0.23.0 (08-14-2011) for win32 (target:win32) Copyright (C) 2004-2011 The FreeBASIC development team. Conf...
by nobozoz
Mar 12, 2012 3:40
Forum: Windows
Topic: Code execution suspended if window is selected with mouse.
Replies: 29
Views: 4484

Re: Code execution suspended if window is selected with mous

Thanks to all who weighed in on this issue. I wasn't sure if this was a bug or just my own inexperience.
Thanks dkl for submitting the bug report.
I can work around this for text-only apps by avoiding "-s gui" compiles, but the real-time chart plotting apps will suffer until this is fixed.
by nobozoz
Mar 11, 2012 9:36
Forum: Windows
Topic: Code execution suspended if window is selected with mouse.
Replies: 29
Views: 4484

Re: Code execution suspended if window is selected with mous

Does this same issue exist in fb on Linux? If not, then there is a bug in fb on Windows?
by nobozoz
Mar 11, 2012 4:40
Forum: Windows
Topic: Code execution suspended if window is selected with mouse.
Replies: 29
Views: 4484

Re: Code execution suspended if window is selected with mous

I don't think rundll32.exe has anything to do with the suspension of window redraw as it occurs with fb. I have 3 instances of rundll32.exe visible in Task Manager (WINXP) immediately after boot-up and before any fb code is even executed. No additional instances appear when fb app is executing. When...
by nobozoz
Mar 10, 2012 23:02
Forum: Windows
Topic: Code execution suspended if window is selected with mouse.
Replies: 29
Views: 4484

Re: Code execution suspended if window is selected with mous

A simple fb console app that continuously prints the system timer to the window DOESN'T exhibit the same window freezing. If the same app is compiled as "-gui" the window freezing appears. So, it looks to me like the fb IS the problem when using graphics. #include "vbcompat.bi" #...
by nobozoz
Mar 10, 2012 20:41
Forum: Windows
Topic: Code execution suspended if window is selected with mouse.
Replies: 29
Views: 4484

Re: Code execution suspended if window is selected with mous

Seriously? Write my own "non-blocking window manager"? ;-) Surely there has to be another way. Isn't this sort of window management something that fb should natively be able to do? If fb doesn't already have a window manager, how would I go about writing one in fb? Any working fb code exam...