Search found 108 matches

by GoodNPlenty
Thu Sep 05, 2024 9:49 pm
Forum: Linux
Topic: Running PureBasic on non Ubuntu based distros
Replies: 14
Views: 6899

Re: Running PureBasic on non Ubuntu based distros

I would be interested. Thank You for taking the time to create and share this solution.
by GoodNPlenty
Sun Sep 01, 2024 8:17 pm
Forum: General Discussion
Topic: my new blog about PB
Replies: 8
Views: 2656

Re: my new blog about PB

Erolcum your about page looks great. It's truly amazing the power and flexibility PureBasic offers along with a community of talented people willing to share their knowledge. Welcome to PureBasic.
by GoodNPlenty
Sat Aug 31, 2024 7:19 pm
Forum: Announcement
Topic: ProGUI V3 Alpha 3 Ready for testing!
Replies: 231
Views: 105728

Re: ProGUI V3 Alpha 1.0 Ready for testing!

The tool looks amazing and I appreciate you providing the source. This will help us understand the API and it's capabilities.
by GoodNPlenty
Mon Apr 08, 2024 5:34 pm
Forum: Applications - Feedback and Discussion
Topic: sho.co interpreter
Replies: 7
Views: 3710

Re: sho.co interpreter

Very Impressive. Thank You for sharing. :D
by GoodNPlenty
Wed Mar 27, 2024 3:54 pm
Forum: General Discussion
Topic: PHPBB Problem?
Replies: 2
Views: 920

Re: PHPBB Problem?

Works with Firefox and Internet Download Manager. It appears Internet Download Manager handles the download in the background eliminating the issue. If I turn off Internet Download Manager Firefox reports a security risk and aborts the download. Not sure if this is helpful but I thought I would ...
by GoodNPlenty
Mon Mar 18, 2024 9:59 pm
Forum: Announcement
Topic: ProGUI V3 Alpha Sneak Peek!
Replies: 58
Views: 30464

Re: ProGUI V3 Alpha Sneak Peek!

I purchased the previous version and am looking forward to trying the new version.
by GoodNPlenty
Fri Feb 16, 2024 8:34 pm
Forum: Applications - Feedback and Discussion
Topic: simple oil paint simulator
Replies: 26
Views: 10918

Re: simple oil paint simulator

Very realistic look and feel. Thank You for sharing. :D
by GoodNPlenty
Tue Jan 30, 2024 4:17 pm
Forum: Coding Questions
Topic: Forbidding console resize?
Replies: 3
Views: 1034

Re: Forbidding console resize?

This should work.


Import ""
GetConsoleWindow()
EndImport

If OpenConsole()
hndWnd = GetConsoleWindow()
DeleteMenu_(GetSystemMenu_(hndWnd, #False), #SC_CLOSE, #MF_BYCOMMAND)
DeleteMenu_(GetSystemMenu_(hndWnd, #False), #SC_MINIMIZE, #MF_BYCOMMAND)
DeleteMenu_(GetSystemMenu_(hndWnd, #False ...
by GoodNPlenty
Tue Jan 30, 2024 4:04 pm
Forum: Coding Questions
Topic: PB 6.03: attaching a shortcut to a gadget with & nonfunctional
Replies: 10
Views: 2168

Re: PB 6.03: attaching a shortcut to a gadget with & nonfunctional

Since EventwParam() will be eventually deprecated a SetWindowCallback() example below.


Procedure WinCallback(hWnd, uMsg, WParam, LParam)

Select uMsg
Case #WM_SYSKEYDOWN
Select WParam
Case 70
Debug "First Selected"
Case 83
Debug "Second Selected"
Case 84
Debug "Third Selected"
Case ...
by GoodNPlenty
Fri Dec 22, 2023 8:30 pm
Forum: Announcement
Topic: PureBasic 6.10 LTS is out !
Replies: 344
Views: 113314

Re: PureBasic 6.10 beta 1 - Xmas Release - is out !

Thank You Fred and team for a wonderful Christmas surprise. Merry Christmas to all! :D
by GoodNPlenty
Fri Dec 15, 2023 4:05 pm
Forum: General Discussion
Topic: New Forum section for C Programming!
Replies: 22
Views: 5214

Re: New Forum section for C Programming!


Yes absolute no need for C , or even assembly
Neither as examples. Neither "features" .. we are BASIC
and neen to think and act like basic.

There several C distros out theree for everyone he prefers ....


I understand your point of being strictly BASIC but this limits PureBasic in my opinion ...
by GoodNPlenty
Mon Nov 13, 2023 5:56 pm
Forum: Announcement
Topic: PureComposer - A minimal HTML WYSIWYG editor
Replies: 8
Views: 7050

Re: PureComposer - A minimal HTML WYSIWYG editor

Fast, lightweight and easy to use. Nicely done!
by GoodNPlenty
Mon Oct 09, 2023 3:12 pm
Forum: Applications - Feedback and Discussion
Topic: Ed - A tiny dark-mode editor for basic RTF files.
Replies: 10
Views: 4403

Re: Ed - A tiny dark-mode editor for basic RTF files.

Thank You for sharing. It's a great start, very light and fast. I Like it. :D
by GoodNPlenty
Tue Sep 12, 2023 4:56 pm
Forum: Tricks 'n' Tips
Topic: Read and modify openoffice / libreoffice spreadsheets
Replies: 21
Views: 7189

Re: Read and modify openoffice / libreoffice spreadsheets

Thank You for posting as this will be very helpful. :D
by GoodNPlenty
Thu Sep 07, 2023 5:29 pm
Forum: Bugs - IDE
Topic: Windows: opening a .pb file from Explorer when the IDE is already open doesn't make it take foreground focus
Replies: 5
Views: 5367

Re: Windows: opening a .pb file from Explorer when the IDE is already open doesn't make it take foreground focus

Issue confirmed using 6.03 beta 5. My steps to reproduce this issue listed below.

1. Open PB IDE Preferences Memorize Window positions -> Unchecked
2. If setting changed click Apply, click OK then exit IDE.
3. Open explorer and double click on .pb file -> PureBasic IDE Window opens in front.
4 ...