Search found 6 matches
- Sat Aug 20, 2022 5:19 pm
 - Forum: Coding Questions
 - Topic: Both #PB_Event_LeftClick and #PB_Event_LeftDoubleClick in EventLoop
 - Replies: 4
 - Views: 492
 
Re: Both #PB_Event_LeftClick and #PB_Event_LeftDoubleClick in EventLoop
The OS always delivers the (single) click in order not to have a delay in the double click timeout. If the mouse is clicked twice within the double-click time, the double-click event is sent in addition to the single click.
It seems I have to set up a callback routine to handle these mouse ...
- Sat Aug 20, 2022 10:49 am
 - Forum: Coding Questions
 - Topic: Both #PB_Event_LeftClick and #PB_Event_LeftDoubleClick in EventLoop
 - Replies: 4
 - Views: 492
 
Both #PB_Event_LeftClick and #PB_Event_LeftDoubleClick in EventLoop
 ; PureBasic 6.00 LTS (x86)
; Windows 11 21H2 (Build 22000.856)
OpenWindow(0,0,0,300,300,"test")
Repeat
Event = WaitWindowEvent()
Select Event
Case #PB_Event_LeftDoubleClick:Debug "double"
Case #PB_Event_LeftClick:Debug "single"
EndSelect
Until Event = #PB_Event_CloseWindow
What it should ...
					; Windows 11 21H2 (Build 22000.856)
OpenWindow(0,0,0,300,300,"test")
Repeat
Event = WaitWindowEvent()
Select Event
Case #PB_Event_LeftDoubleClick:Debug "double"
Case #PB_Event_LeftClick:Debug "single"
EndSelect
Until Event = #PB_Event_CloseWindow
What it should ...
- Mon Mar 30, 2020 11:38 am
 - Forum: Feature Requests and Wishlists
 - Topic: Renaming PreferenceGroup
 - Replies: 0
 - Views: 1831
 
Renaming PreferenceGroup
Hi Fred,
is there a chance to add "RenamePreferenceGroup" to the Preferences commands?
Something like this => RenamePreferenceGroup(oldname$,newname$) would be nice!
					is there a chance to add "RenamePreferenceGroup" to the Preferences commands?
Something like this => RenamePreferenceGroup(oldname$,newname$) would be nice!
- Fri Apr 29, 2005 2:10 am
 - Forum: Off Topic
 - Topic: Can't login to german PB Forum
 - Replies: 14
 - Views: 4049
 
- Thu Apr 28, 2005 8:53 pm
 - Forum: Off Topic
 - Topic: Can't login to german PB Forum
 - Replies: 14
 - Views: 4049
 
Re: Can't login to german PB Forum
 My very first BASIC Program is Open Source now:
PRINT "HELLO WORLD !"
END
I'm having big problems running your program.
What BASIC, what compiler, what prerequisites do I need?
Are there any other things I should be aware of?
Thank you.
Try to use that very complex proggy on a strong machine ...
					PRINT "HELLO WORLD !"
END
I'm having big problems running your program.
What BASIC, what compiler, what prerequisites do I need?
Are there any other things I should be aware of?
Thank you.
Try to use that very complex proggy on a strong machine ...
- Thu Apr 28, 2005 5:24 pm
 - Forum: Off Topic
 - Topic: Can't login to german PB Forum
 - Replies: 14
 - Views: 4049
 
Can't login to german PB Forum
Can't login to german PB Forum for hours :cry: 
I always get this error message:
 
phpBB : Critical Error
Error doing DB query userdata row fetch
DEBUG MODE
SQL Error : 1016 Can't open file: 'z2phpbb_sessions.MYI'. (errno: 145)
SELECT u.*, s.* FROM z2phpbb_sessions s, z2phpbb_users u WHERE s ...
					I always get this error message:
phpBB : Critical Error
Error doing DB query userdata row fetch
DEBUG MODE
SQL Error : 1016 Can't open file: 'z2phpbb_sessions.MYI'. (errno: 145)
SELECT u.*, s.* FROM z2phpbb_sessions s, z2phpbb_users u WHERE s ...