Search found 12035 matches

by fxm
Oct 13, 2009 14:05
Forum: Windows
Topic: FB WIN32 SVN Daily Build
Replies: 126
Views: 64468

In the new FBWIN32 version (10-09-09), the "fbc.exe" file has not been updated. It is the same that the one of the previous version from 07-27-09.

Is it right ?
by fxm
Sep 22, 2009 12:22
Forum: Windows
Topic: Mouse wheel behavior in fullscreen text mode
Replies: 2
Views: 1473

I am surprised to receive not a return of this fault concerning the parameter "scroll wheel" of the function "GetMouse" in case of text mode ("Screen 0") and in fullscreen mode only.
by fxm
Sep 17, 2009 13:03
Forum: General
Topic: Return the Fractional part of a number
Replies: 8
Views: 2134

You can use this formula which runs for positive or negative values :
fractional = number - Sgn(number) * Int(Sgn(number) * number)
by fxm
Sep 08, 2009 8:26
Forum: Windows
Topic: Mouse wheel behavior in fullscreen text mode
Replies: 2
Views: 1473

Mouse wheel behavior in fullscreen text mode

In fullscreen text mode only, the scroll wheel value from the "GetMouse" keyword is not updated.
I don't know if it's due to FreeBasic or Windows XP environment.
by fxm
Sep 03, 2009 13:55
Forum: Community Discussion
Topic: Reading/converting QB45 binary sources without QB45...
Replies: 8
Views: 2976

MichaelW wrote: IIRC, QuickBASIC 4.5 and PDS 7.x use different formats.
But PDS 7.1 can read the "Binary - Fast load and save" format generated by QB 4.5 (only ascending compatibility).
by fxm
Sep 02, 2009 9:10
Forum: Community Discussion
Topic: Reading/converting QB45 binary sources without QB45...
Replies: 8
Views: 2976

QB1.0 is not compatible with those files.
Nevertheless you can download QB45 at [redacted]
by fxm
Jul 09, 2009 11:05
Forum: Windows
Topic: GetMouse (gfx) and 1st left click after a sleep (solved)
Replies: 26
Views: 8392

. . . . . And also, if I change focus to another window, then move my mouse pointer back over the GetMouse Test window and wait ten seconds 'till it sleeps, then left clicking does not regain focus-----ie the click is being ignored and the button status stays at -1. For this different scenario test...
by fxm
Jul 09, 2009 7:27
Forum: Windows
Topic: GetMouse (gfx) and 1st left click after a sleep (solved)
Replies: 26
Views: 8392

@bfuller I had already noticed these same symptoms which you describe so well, at the time of the bad behavior : - flash of "not responding" in the title bar of the graphic window - flash of mouse pointer I had not described all these details of behavior yet because few other persons indic...
by fxm
Jul 08, 2009 21:14
Forum: Windows
Topic: GetMouse (gfx) and 1st left click after a sleep (solved)
Replies: 26
Views: 8392

ha... i guess that behavior is the one i had when i tried to make a "free looking" mouse for a 3D game... so, i realized that if you have a small sleep it will not get have time to update the coordinates correctly, but using a " sleep >15" fixed the problem, altough you may try ...
by fxm
Jul 08, 2009 20:35
Forum: Windows
Topic: GetMouse (gfx) and 1st left click after a sleep (solved)
Replies: 26
Views: 8392

@vdecampo On my PC, this program allows to confirm this bad behavior that I have, as I said before : This bad behaviour is obtained when I hold the mouse totally still inside the graphic window during about 10 seconds (displayed value = "0"), then after that when I press only the left but...
by fxm
Jul 08, 2009 19:50
Forum: Windows
Topic: GetMouse (gfx) and 1st left click after a sleep (solved)
Replies: 26
Views: 8392

Here is a small program to check this bad behavior on a PC, then to test my temporary solution in case of use of the instruction GetMouse inside a loop. 'In graphic window only (DirectX or GDI), 'after a mouse sleep inside window '(no moving and no action on any button during more than 5 seconds), '...
by fxm
Jul 08, 2009 11:46
Forum: Windows
Topic: GetMouse (gfx) and 1st left click after a sleep (solved)
Replies: 26
Views: 8392

For my own usage, it is not a priority to fix this bug. I repeat (and I detail) hereafter the remark written at the end of my first message, because this present problem can be by-passed easily, in case of loop calling the instruction “GetMouse”. Long ago, I solved (masking the fault) this problem b...
by fxm
Jul 08, 2009 7:40
Forum: Windows
Topic: GetMouse (gfx) and 1st left click after a sleep (solved)
Replies: 26
Views: 8392

Yes, if you launch my short program of test (at top) and if you increase the priority, the bug seems to disappear, but the CPU is overloaded by this programm running. If in addition (always high priority) you insert an instruction "sleep" (with any value) in the loop to unload the CPU, the...
by fxm
Jul 06, 2009 9:14
Forum: Windows
Topic: GetMouse (gfx) and 1st left click after a sleep (solved)
Replies: 26
Views: 8392

Scenario : - Normal left click (without move and without sleep before) Console display : Getmouse: butons value changed to: 1 left button pressed Getmouse: butons value changed to: 0 left button released - Mouse totally still in the graphic window during about 10 seconds, then press only the left bu...
by fxm
Jul 05, 2009 18:14
Forum: Windows
Topic: GetMouse (gfx) and 1st left click after a sleep (solved)
Replies: 26
Views: 8392

Excuse my poor english : replace "default" by "fault" everywhere (because "defaut" in french means "fault" in english). During this bad transitory phase (button = "-1"), the GetMouse return value is "+1" as for mouse outside graphic window....