Search found 3785 matches

by skywalk
Sat Dec 13, 2025 9:17 pm
Forum: Bugs - Windows
Topic: [Done] BUG-v630b5] WebViewGadget example code crashes w/Purifier(Win11)
Replies: 17
Views: 4678

Re: [Done] BUG-v630b5] WebViewGadget example code crashes w/Purifier(Win11)

Yes, example code crashes only with Purifier enabled.
by skywalk
Wed Dec 10, 2025 3:01 pm
Forum: Bugs - Windows
Topic: [Done] BUG-v630b5] WebViewGadget example code crashes w/Purifier(Win11)
Replies: 17
Views: 4678

Re: [Done] BUG-v630b1] WebViewGadget example code crashes w/debugger(Win11)

I think yes when using debugger.
I will confirm tonight.
by skywalk
Wed Dec 10, 2025 12:01 am
Forum: Coding Questions
Topic: Opening and calling DLL functions from inside a Purebasic DLL [SOLVED]
Replies: 7
Views: 316

Re: Opening and calling DLL functions from inside a Purebasic DLL

Yes, just put all code in procedures.
If windows, there are attach and detach dll procedures you can run init codes. Or just make an init() proceduredll you call from your app.
by skywalk
Fri Dec 05, 2025 1:03 am
Forum: General Discussion
Topic: My First Post - Hello
Replies: 18
Views: 1024

Re: My First Post - Hello

Yes, roll your own guis until you have a better understanding of the event loop and callbacks or bindgadgetevents.
So much easier than VB6.
You can see it all in your source text instead of miles of property boxes and trees.

Also have a look at threading examples early to avoid your gui appearing ...
by skywalk
Fri Dec 05, 2025 12:54 am
Forum: Coding Questions
Topic: Simple PB code editor
Replies: 28
Views: 1648

Re: Simple PB code editor

Whew!
Good to hear. Everyone deserves some retiring time after many years of hard, productive work.
by skywalk
Thu Dec 04, 2025 4:47 am
Forum: Coding Questions
Topic: Simple PB code editor
Replies: 28
Views: 1648

Re: Simple PB code editor

Sorry to hear about srod :(
He was a big influence on me when I started using PB.
My app is too customized to break out the scripting part.
It's really a sequence compiler.
The sequence is English instructions targeted to my users.
Lua is an interesting choice, but I would have to educate the users ...
by skywalk
Wed Dec 03, 2025 10:23 pm
Forum: Coding Questions
Topic: Simple PB code editor
Replies: 28
Views: 1648

Re: Simple PB code editor

Ha! You make it sound special?
It was necessary to allow users to execute variable actions within my app. I wrote a compiler that digests their requests and executes them or explains any syntax or logical errors. This is highly specific to an engineering setup involving many instruments and ...
by skywalk
Wed Dec 03, 2025 7:44 pm
Forum: Coding Questions
Topic: Simple PB code editor
Replies: 28
Views: 1648

Re: Simple PB code editor

Nice!
I'll give a look also.
I have a custom scripting language for my app and I use richtext edit, but it is rudimentary.
I prefer to implement the syntax highlighting of Notepad++ or Scite but was thwarted with GoScintilla. The IDE code is better, but it has dependencies spread out.
by skywalk
Wed Dec 03, 2025 2:10 am
Forum: Coding Questions
Topic: Simple PB code editor
Replies: 28
Views: 1648

Re: Simple PB code editor

I had no luck with GoScintilla due to multi-threading errors.
Thanks for the post on 2D/3D editor.
I will also have a look. 8)
by skywalk
Tue Dec 02, 2025 8:07 pm
Forum: Coding Questions
Topic: Simple PB code editor
Replies: 28
Views: 1648

Re: Simple PB code editor

Hi Kwai
That is not a simple editor.
But what you describe is in the open source PB IDE.
by skywalk
Sun Nov 30, 2025 7:56 pm
Forum: Bugs - IDE
Topic: [v630b4] all about UTF-8 +- BOM?
Replies: 0
Views: 303

[v630b4] all about UTF-8 +- BOM?

I am tidying up some projects and wanted to conform to whichever is preferred?
PB IDE
New .pb file saves as UTF-8-BOM.
New .rc file saves as UTF-8-BOM.
New .txt file saves as ANSI.
New .ini file saves as ANSI.

I think all files should be stored as UTF-8-BOM.

The IDE does not mention BOM in the ...
by skywalk
Sun Nov 30, 2025 5:53 pm
Forum: General Discussion
Topic: PB Discord Link
Replies: 12
Views: 873

Re: PB Discord Link

Discord is noisy.
I prefer this forum which does lack upvotes and file storage.
Super annoying when stumbling upon dead links.
by skywalk
Fri Nov 28, 2025 5:01 pm
Forum: Feature Requests and Wishlists
Topic: Windows real dark theme.
Replies: 6
Views: 653

Re: Windows real dark theme.

Nice, I didn't know you made the dark theme.
It was easy to edit a few of the colors for more focus.
The debug line background was hiding the text for me.
And the edit background was slightly blurry.
These are subjective terms, so anyone can modify according to their eyeballs. ;)
by skywalk
Thu Nov 27, 2025 10:51 pm
Forum: Feature Requests and Wishlists
Topic: Windows real dark theme.
Replies: 6
Views: 653

Re: Windows real dark theme.

Ha!
I also had to modify the Dark theme colors. I felt it was too blurry.
I also use Cascadia Mono regular font. It replaced Consolas.
Very nice on the eyes.
Try importing below as colors only.

; PureBasic IDE Exported Preferences
;
[Sections]
IncludeColors = 1
;
; Color settings
;
[Colors ...
by skywalk
Sat Nov 22, 2025 11:54 pm
Forum: Feature Requests and Wishlists
Topic: [UPGRADE LIBS] zlib, libpng memory errors
Replies: 0
Views: 444

[UPGRADE LIBS] zlib, libpng memory errors

libpng
zlib
CompilerIf 1
UsePNGImageDecoder()
ImportC ""
png_access_version_number()
zlibVersion()
EndImport
Debug "; #PB_Compiler_Version = " + Str(#PB_Compiler_Version)
Debug "; png_access_version_number() = " + Str(png_access_version_number())
Debug "; zlibVersion() = " + PeekS ...