Is this the best way if I want to use the arrow keys?
#win=1
#spin1=1
#spin2=2
OpenWindow(#win, 0, 0, 140, 120, "SpinGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
SpinGadget (#spin1, 20, 20, 100, 25, 0, 1000,#PB_Spin_Numeric)
SpinGadget (#spin2, 20, 60, 100, 25, 0, 1000,#PB_Spin ...
Search found 63 matches
- Tue Oct 21, 2025 4:34 pm
- Forum: Coding Questions
- Topic: SpinGadget
- Replies: 5
- Views: 607
- Sun Oct 19, 2025 6:31 pm
- Forum: Coding Questions
- Topic: SpinGadget
- Replies: 5
- Views: 607
Re: SpinGadget
wonderfully
- Sun Oct 19, 2025 6:09 pm
- Forum: Coding Questions
- Topic: SpinGadget
- Replies: 5
- Views: 607
SpinGadget
hello!
Is it possible to only visit the routine "test()" once for each click instead of twice.
And is it possible to make the blue background behind the numbers to disappear.
OpenWindow(0, 0, 0, 140, 70, "SpinGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
#spin=1
SpinGadget (#spin, 20 ...
Is it possible to only visit the routine "test()" once for each click instead of twice.
And is it possible to make the blue background behind the numbers to disappear.
OpenWindow(0, 0, 0, 140, 70, "SpinGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
#spin=1
SpinGadget (#spin, 20 ...
- Tue Jul 29, 2025 4:29 pm
- Forum: Coding Questions
- Topic: window With no Title And With no taskbar icon?
- Replies: 11
- Views: 824
Re: window With no Title And With no taskbar icon?
Here's the context, I chose the pure purebasic version.
EnableExplicit
LoadFont(1, "Courier", 12)
LoadFont(2, "Courier", 12, #PB_Font_Bold )
Global f_col=0
Global b_col=$9BD6F7
OpenWindow(1, -300, 0, 0, 0, "Not Needed", #PB_Window_Invisible)
OpenWindow(0, 1, 1, 115, 70, "xx", #PB_Window ...
EnableExplicit
LoadFont(1, "Courier", 12)
LoadFont(2, "Courier", 12, #PB_Font_Bold )
Global f_col=0
Global b_col=$9BD6F7
OpenWindow(1, -300, 0, 0, 0, "Not Needed", #PB_Window_Invisible)
OpenWindow(0, 1, 1, 115, 70, "xx", #PB_Window ...
- Tue Jul 29, 2025 1:54 pm
- Forum: Coding Questions
- Topic: window With no Title And With no taskbar icon?
- Replies: 11
- Views: 824
Re: window With no Title And With no taskbar icon?
Now I understand, thanks everyone
- Tue Jul 29, 2025 10:56 am
- Forum: Coding Questions
- Topic: window With no Title And With no taskbar icon?
- Replies: 11
- Views: 824
Re: window With no Title And With no taskbar icon?
Thank you very much, but it's hard to understand what you did.
- Tue Jul 29, 2025 9:47 am
- Forum: Coding Questions
- Topic: window With no Title And With no taskbar icon?
- Replies: 11
- Views: 824
window With no Title And With no taskbar icon?
Can i get a window With no Title And With no taskbar icon?
; a window with Title and with no taskbar icon
OpenWindow(0, 1, 1, 115, 70, "xx",#PB_Window_ScreenCentered|#PB_Window_BorderLess|#PB_Window_Tool)
Delay(1000)
; a window with no Title and with taskbar icon
OpenWindow(0, 1, 1, 115, 70, "xx ...
; a window with Title and with no taskbar icon
OpenWindow(0, 1, 1, 115, 70, "xx",#PB_Window_ScreenCentered|#PB_Window_BorderLess|#PB_Window_Tool)
Delay(1000)
; a window with no Title and with taskbar icon
OpenWindow(0, 1, 1, 115, 70, "xx ...
- Sat Jun 21, 2025 6:57 pm
- Forum: 3D Programming
- Topic: AttachEntityObject with CameraID
- Replies: 4
- Views: 1619
Re: AttachEntityObject with CameraID
Thanks, and I've never worked with "bones"
- Sat Jun 21, 2025 5:43 pm
- Forum: 3D Programming
- Topic: AttachEntityObject with CameraID
- Replies: 4
- Views: 1619
AttachEntityObject with CameraID
"AttachEntityObject" with "CameraID" does not work with newer versions (620,621), is it a bug?
612 works fine.
InitEngine3D()
InitSprite()
InitKeyboard()
OpenWindow(0, 0, 0, 640, 480, "Cube example", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
OpenWindowedScreen(WindowID(0), 0, 0, 640, 480 ...
612 works fine.
InitEngine3D()
InitSprite()
InitKeyboard()
OpenWindow(0, 0, 0, 640, 480, "Cube example", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
OpenWindowedScreen(WindowID(0), 0, 0, 640, 480 ...
- Sat Dec 14, 2024 7:45 pm
- Forum: Feature Requests and Wishlists
- Topic: Request: ClearSprite()
- Replies: 3
- Views: 4496
Re: Request: ClearSprite()
certainly useful as well as "clearscreen"
- Tue Oct 24, 2023 5:36 pm
- Forum: 3D Programming
- Topic: 3D challenge for a special rotation
- Replies: 16
- Views: 8701
Re: 3D challenge for a special rotation
my contribution
EnableExplicit
#Camara = 3
#Entity = 3
#node= 3
#Light = 3
#Texture = 3
#Material = 3
#Mesh = 3
If ExamineDesktops()=0 : End : EndIf
Global bitplanes.a=DesktopDepth(0)
Global FRX.u=DesktopWidth(0)*0.9
Global FRY.u=DesktopHeight(0)*0.9
If InitEngine3D(#PB_Engine3D_NoLog,#PB ...
EnableExplicit
#Camara = 3
#Entity = 3
#node= 3
#Light = 3
#Texture = 3
#Material = 3
#Mesh = 3
If ExamineDesktops()=0 : End : EndIf
Global bitplanes.a=DesktopDepth(0)
Global FRX.u=DesktopWidth(0)*0.9
Global FRY.u=DesktopHeight(0)*0.9
If InitEngine3D(#PB_Engine3D_NoLog,#PB ...
- Sun Sep 24, 2023 10:44 am
- Forum: Feature Requests and Wishlists
- Topic: recall the result from ProcedureReturn
- Replies: 11
- Views: 1788
Re: recall the result from ProcedureReturn
the.weavster
Better than my way
Better than my way
- Mon Sep 11, 2023 6:15 pm
- Forum: Feature Requests and Wishlists
- Topic: recall the result from ProcedureReturn
- Replies: 11
- Views: 1788
Re: recall the result from ProcedureReturn
Quin
yes it what I want, but , I think nicer/shorter code, but I understand that I am just lazy. sorry
yes it what I want, but , I think nicer/shorter code, but I understand that I am just lazy. sorry
- Sat Sep 09, 2023 4:42 pm
- Forum: Feature Requests and Wishlists
- Topic: recall the result from ProcedureReturn
- Replies: 11
- Views: 1788
Re: recall the result from ProcedureReturn
ok, thanks
- Sat Sep 09, 2023 4:01 pm
- Forum: Feature Requests and Wishlists
- Topic: recall the result from ProcedureReturn
- Replies: 11
- Views: 1788
Re: recall the result from ProcedureReturn
of course i know that, Caronte3D, this is not a good idea or?