08-30-2023, 11:08 PM
There's definitely a problem displaying the color chooser dialog once in a while under _FULLSCREEN on my windows 7. Maybe it's just a video driver problem on my system.
Whenever the dialog won't appear, if I click on the screen somewhere, Windows plays a system sound (like when clicking out of bounds a defined area) and the color dialog will then appear. So apparently the dialog is opened every-time, but probably just behind my fullscreen window until I click the mouse somewhere and bring it up to view?
If I run this simplified code, and switch in/out of _fullscreen, eventually it will happen (press C to bring up color box, ESC to end, Alt+Enter to go in and out of fullscreen). I ran it 20 times, 4 times the dialog wouldn't appear without clicking on the screen.
- Dav
Whenever the dialog won't appear, if I click on the screen somewhere, Windows plays a system sound (like when clicking out of bounds a defined area) and the color dialog will then appear. So apparently the dialog is opened every-time, but probably just behind my fullscreen window until I click the mouse somewhere and bring it up to view?
If I run this simplified code, and switch in/out of _fullscreen, eventually it will happen (press C to bring up color box, ESC to end, Alt+Enter to go in and out of fullscreen). I ran it 20 times, 4 times the dialog wouldn't appear without clicking on the screen.
- Dav
Code: (Select All)
Screen _NewImage(800, 600, 32)
_Display
_FullScreen
Do
If InKey$ = "c" Then
pick& = _ColorChooserDialog("Select a color", _RGB32(0, 255, 255))
End If
Loop Until _KeyHit = 27