Search found 717 matches

by Joubarbe
Sat Feb 21, 2026 12:03 pm
Forum: Announcement
Topic: The Ruins of Calaworm (turn-based Dungeon Crawler)
Replies: 24
Views: 7200

Re: The Ruins of Calaworm (turn-based Dungeon Crawler)

Very nice game, congrats! I think making a dungeon crawler is an excellent move. Do you plan to release it on Steam?
by Joubarbe
Thu Feb 12, 2026 9:05 pm
Forum: Coding Questions
Topic: Shift-Tab event
Replies: 4
Views: 296

Re: Shift-Tab event

Thank you idle :D
by Joubarbe
Mon Feb 09, 2026 12:38 pm
Forum: Coding Questions
Topic: Shift-Tab event
Replies: 4
Views: 296

Shift-Tab event


Enumeration
#EVENT_TAB
#EVENT_SHIFT_TAB
EndEnumeration

Procedure OnTab()
Debug "OnTab()"
EndProcedure

Procedure OnShiftTab()
Debug "OnShiftTab()"
EndProcedure

OpenWindow(0, 0, 0, 500, 500, "", #PB_Window_ScreenCentered | #PB_Window_SystemMenu)
CanvasGadget(0, 0, 0, 500, 500 ...
by Joubarbe
Wed Jan 28, 2026 2:40 am
Forum: General Discussion
Topic: Demo in PB?
Replies: 19
Views: 4414

Re: Demo in PB?

Thank you miso, that's really great! 🎉
by Joubarbe
Sat Jan 24, 2026 9:48 am
Forum: General Discussion
Topic: Demo in PB?
Replies: 19
Views: 4414

Re: Demo in PB?

Thank you miso; simple, but very cool!
by Joubarbe
Thu Jan 22, 2026 12:53 pm
Forum: General Discussion
Topic: Demo in PB?
Replies: 19
Views: 4414

Re: Demo in PB?

Haha, thanks, beautiful! :D
by Joubarbe
Wed Jan 21, 2026 8:18 pm
Forum: General Discussion
Topic: Demo in PB?
Replies: 19
Views: 4414

Re: Demo in PB?

Uhuh, yeah... Thanks :) Let's just say that Razor1911 had better ones on Atari ST 30 years ago :D
by Joubarbe
Wed Jan 21, 2026 11:18 am
Forum: General Discussion
Topic: Demo in PB?
Replies: 19
Views: 4414

Demo in PB?

Has anyone ever done a demo in PB?

For my next game, I'd really like to have an old-school demo that were used in the past (prehistoric times) to present the group that has cracked the game. And usually you had several games on the disk, so you had a menu to choose which one you want to play. Of ...
by Joubarbe
Thu Jan 15, 2026 11:24 am
Forum: Bugs - IDE
Topic: Procedure Browser reset when anything is typed
Replies: 0
Views: 2428

Procedure Browser reset when anything is typed

1. Have a code with enough procedures so that the procedure browser can be scrolled.
2. Select the last procedure.
3. Start typing.
4. The procedure browser resets its scrolling position to 0.

I think this bug has been introduced with 6.30. It's annoying because the whole point of highlighting the ...
by Joubarbe
Thu Jan 15, 2026 9:32 am
Forum: General Discussion
Topic: PureBasic jobs?
Replies: 15
Views: 2950

Re: PureBasic jobs?

Thank you all for your answers. I'm glad some of you managed to make money with PB :D

I do in a certain way with my game (signature), but that's not a huge success! (sold 1000 in a year, which is decent compared to 50% of the games on Steam)

@Caronte3D: I agree with you; I think some companies ...
by Joubarbe
Wed Jan 14, 2026 3:26 pm
Forum: General Discussion
Topic: PureBasic jobs?
Replies: 15
Views: 2950

PureBasic jobs?

Did any of you ever had a programming job in PureBasic? I don't see the advantage for a company to lean towards this language, but I'd be interested to know.

(and if you have a job to offer, that's even better! :D )
by Joubarbe
Wed Dec 10, 2025 9:29 am
Forum: Announcement
Topic: PureBasic 6.30 is out !
Replies: 187
Views: 55567

Re: PureBasic 6.30 beta 5 is ready !

#PB_2DDrawing_FastText
If this flag is set then the DrawText() and DrawRotatedText() commands will use a faster text rendering method but with less precise unicode support (Windows only).

When I use this mode, I see a slight difference in performance, but no visual difference. I don't really ...
by Joubarbe
Tue Dec 09, 2025 6:23 pm
Forum: Coding Questions
Topic: [SOLVED] Switch mouse cursor from arrow to hand
Replies: 4
Views: 663

Re: Switch mouse cursor from arrow to hand

Thank you RASHAD! :)
by Joubarbe
Tue Dec 09, 2025 4:18 pm
Forum: Coding Questions
Topic: [SOLVED] Switch mouse cursor from arrow to hand
Replies: 4
Views: 663

Re: Switch mouse cursor from arrow to hand

The problem is that it's very glitchy when used with a screen:


If InitSprite() = #Null
MessageRequester("Error", "InitSprite failed.", #PB_MessageRequester_Error)
End
EndIf

#_WINDOW_WIDTH = 720
#_WINDOW_HEIGHT = 640
OpenWindow(0, 0, 0, #_WINDOW_WIDTH, #_WINDOW_HEIGHT, "", #PB_Window ...
by Joubarbe
Tue Dec 09, 2025 4:11 pm
Forum: Announcement
Topic: PureBasic 6.30 is out !
Replies: 187
Views: 55567

Re: PureBasic 6.30 beta 5 is ready !

I don't see the ScreenGadget doc in the gadget section of the manual (F1)?
Is it normal that compiling a program now opens a console window?