Search found 4553 matches

by mk-soft
Thu Mar 28, 2024 10:41 am
Forum: Linux
Topic: How to solve these Linker errors?
Replies: 2
Views: 56

Re: How to solve these Linker errors?

Do you have some executable code to reproduce this.
Looks like maybe an external old user lib is used or a developer lib was not installed.

What PB version ?
by mk-soft
Wed Mar 27, 2024 7:56 pm
Forum: Coding Questions
Topic: Problem with Mouse and F10 key ...
Replies: 16
Views: 404

Re: Problem with Mouse and F10 key ...

I still work on old projects with old versions, because sometimes the effort is too great to adapt all external libraries, or they no longer exist.

New projects of cource with new version ..
by mk-soft
Wed Mar 27, 2024 7:38 pm
Forum: Coding Questions
Topic: What is the maximum length a string variable can hold?
Replies: 15
Views: 377

Re: What is the maximum length a string variable can hold?

I think unlimit means a meaningful range. So more than 64 kb and less than 1 mb with which the string management can also process well. Anything in the gigabyte range should be processed directly with memory areas as ArrayOfChar. #GByte = 1024 * 1024 * 1024 Structure ArrayOfChar c.c[0] EndStructure ...
by mk-soft
Tue Mar 26, 2024 11:01 pm
Forum: Off Topic
Topic: Ads by Google
Replies: 11
Views: 459

Re: Ads by Google

The small advert below would also be ok and Fred can earn something from it. Every now and then there is also something interesting.
So if the problem with the big adverts is solved, you can switch off the adblock again.
by mk-soft
Tue Mar 26, 2024 9:56 pm
Forum: Bugs - Linux
Topic: PB v6.x CanvasGadget Container and Event #PB_EventType_MouseWheel
Replies: 0
Views: 98

PB v6.x CanvasGadget Container and Event #PB_EventType_MouseWheel

The event #PB_EventType_MouseWheel does not occur if the CanvasGaget is a container. Report from german forum Define flags flags = #PB_Canvas_Container OpenWindow(0, #PB_Ignore, #PB_Ignore, 500, 500, "Canvas Test") CanvasGadget(0, 0, 0, 500, 500, flags) ButtonGadget(1, 0, 0, 50, 30, "...
by mk-soft
Tue Mar 26, 2024 9:50 pm
Forum: Off Topic
Topic: Ads by Google
Replies: 11
Views: 459

Re: Ads by Google

For Chrome, etc found 'AdBlock Plus'
and for macOS 'Adblock Pro'

;)
by mk-soft
Tue Mar 26, 2024 11:52 am
Forum: Off Topic
Topic: Ads by Google
Replies: 11
Views: 459

Ads by Google

Fat advertising windows in the forum all at once.
Everywhere between all the posts.
This doesn't have to be in a forum and is extremely nerdy.

One Ad-blocker helps ..
by mk-soft
Tue Mar 26, 2024 12:38 am
Forum: Linux
Topic: SDL on Raspberry Pi
Replies: 1
Views: 142

Re: SDL on Raspberry Pi

Not all extended libraries are implemented in the PB. So implement them yourself ... Update 2 ;) ;-TOP by mk-soft ; ---- #SDL_WINDOWEVENT = $200; Enumeration #SDL_WINDOWEVENT_NONE #SDL_WINDOWEVENT_SHOWN #SDL_WINDOWEVENT_HIDDEN #SDL_WINDOWEVENT_EXPOSED #SDL_WINDOWEVENT_MOVED #SDL_WINDOWEVENT_RESIZED ...
by mk-soft
Mon Mar 25, 2024 9:02 pm
Forum: Bugs - 3D Engine
Topic: [Done] InitEngine3D() crashes in windows with PB32bit version!
Replies: 7
Views: 1251

Re: [Done] InitEngine3D() crashes in windows with PB32bit version!

Maybe ... CompilerIf #PB_Compiler_OS Macro CocoaString(NSString) PeekS(CocoaMessage(0, NSString, "UTF8String"), -1, #PB_UTF8) EndMacro CompilerEndIf Procedure.s GetProgramPath() CompilerIf #PB_Compiler_OS = #PB_OS_MacOS Static bundlePath.s Protected bundlePathPtr If Not Bool(bundlePath) bu...
by mk-soft
Mon Mar 25, 2024 7:32 pm
Forum: Coding Questions
Topic: IniEngine3D let's the computer go black for a fraction of a second
Replies: 2
Views: 112

Re: IniEngine3D let's the computer go black for a fraction of a second

Could it be that you have an advanced graphics card? This can lead to hardware switching.
Or you are using different resolutions between Windows and Game Mode
by mk-soft
Mon Mar 25, 2024 7:28 pm
Forum: Feature Requests and Wishlists
Topic: Html 2 PBsource
Replies: 4
Views: 222

Re: Html 2 PBsource

Maybe write a PB tool. But I would store it as external files. So you can use an HTML editor. Only as tip Macro GetHtml(_label:) PeekS(_label_, -1, #PB_UTF8) EndMacro DataSection htmlscript1: IncludeBinary "script1.html" Data.w #Null htmlscript2: IncludeBinary "script2.html" Data...
by mk-soft
Mon Mar 25, 2024 6:31 pm
Forum: Bugs - IDE
Topic: [Done] FormDesigner Added Missing WebViewGadget
Replies: 2
Views: 181

Re: FormDesigner Added Missing WebViewGadget

After consultation with Fred an update FormDesigner WebViewGadget Update 2 - Change: Common variable / constant name and counter for WebGadget and WebViewGadget. So compatible for old form files. - Change: Control name WebView to Web for WebGadget - Change: Control name Webkit to WebView for WebView...
by mk-soft
Sun Mar 24, 2024 5:51 pm
Forum: Bugs - IDE
Topic: [Done] FormDesigner Added Missing WebViewGadget
Replies: 2
Views: 181

[Done] FormDesigner Added Missing WebViewGadget

Added WebViewGadget to FormDesigner

- Since the name WebView is already used for the WebGadget, the name for the WebViewGadget is WebKit
- Flags for WebGadget updated
- EventType for ListIconGadget and ExplorerListGadget updated

Pull Request: https://github.com/fantaisie-software/p ... c/pull/267
by mk-soft
Sat Mar 23, 2024 4:55 pm
Forum: Announcement
Topic: PureBasic 6.10 LTS is out !
Replies: 283
Views: 36212

Re: PureBasic 6.10 beta 9 is out !

Raspberry PI 5 without debugger

PB v6.04 = 8606, opti 4161
PB v6.10 = 8523, opti 4868


P.S.
It is optimized a little less because a little too much has been optimized away.
Link: https://www.purebasic.fr/english/viewto ... 93#p617293