Search found 274 matches

by le_magn
Sun Sep 07, 2025 4:12 pm
Forum: Feature Requests and Wishlists
Topic: Expand toolbar max items
Replies: 0
Views: 231

Expand toolbar max items

Please expand maximum number of toolbar item:

Image
by le_magn
Tue Aug 19, 2025 9:32 pm
Forum: The PureBasic Editor
Topic: Toolbar icon size
Replies: 2
Views: 283

Toolbar icon size

Hi everyone, I wanted to know if there is a way to increase the size of the icons on the PureBasic editor toolbar and also the size of the TAB labels (I have already increased the dpi in Windows but the PB elements are still too small). I'm getting older and between the problem of the light-colored ...
by le_magn
Thu Aug 14, 2025 8:09 pm
Forum: Tricks 'n' Tips
Topic: An alternative MessageRequester [Windows]
Replies: 28
Views: 7282

Re: An alternative MessageRequester [Windows]

Thank you very much ZapMan..
by le_magn
Tue Aug 12, 2025 5:50 pm
Forum: General Discussion
Topic: Speed on PB is slow ?!
Replies: 14
Views: 715

Re: Speed on PB is slow ?!


With Debugger

Start ...
Done 48950 milliseconds


Without Debugger

Start ...
Done 1881 milliseconds



Hi MK-SOFT, I’d like to ask which CPU you have. Without a debugger, I get 1400ms, but with a debugger, it takes twice your time, 85000ms, PB 6.21 32/64

UPDATE: I repeated the test with C ...
by le_magn
Tue May 20, 2025 11:26 am
Forum: Feature Requests and Wishlists
Topic: Dark mode
Replies: 20
Views: 2224

Re: Dark mode


I've got Darkmode in Linux. Just switch to the "Dark Mode" color scheme in the IDE settings. And of course also enabled your preferred dark mode in Linux too.
Isn't the same possible on Windows?

Yes, it change the editor color, tool panel color etc.. but all other part of the windows(windows ...
by le_magn
Mon May 19, 2025 11:28 pm
Forum: Feature Requests and Wishlists
Topic: Dark mode
Replies: 20
Views: 2224

Dark mode

Please add dark mode for all windows, including the various debugger windows, Preferences etc..., light windows bother my eyes and I think many other users would prefer to have all parts of the windows with dark colors, thank you
by le_magn
Wed Apr 09, 2025 10:47 am
Forum: The PureBasic Editor
Topic: Templates Backup Tool
Replies: 3
Views: 1712

Re: Templates Backup Tool

Thanks for this nice tool, added It to my PB...
by le_magn
Tue Apr 01, 2025 6:00 pm
Forum: Feature Requests and Wishlists
Topic: Detachable Tabs for MultiScreen support
Replies: 0
Views: 1562

Detachable Tabs for MultiScreen support

As a user of two screens, I would like to see the possibility added in the editor to detach the tabs and open them on the other screen, as happens with web browsers, so as to optimise the use of the multiscreen, opening the IDE several times and then putting one on each screen is not a good solution ...
by le_magn
Mon Mar 24, 2025 3:54 pm
Forum: The PureBasic Editor
Topic: A complete code browser for PureBasic [Windows]
Replies: 81
Views: 41542

Re: A complete code browser for PureBasic [Windows]

Hi, i try again, deleting all pbbrowser source, download it again and same error on compiling, i try also with a clean Purebasic installation and same result, TOM_Functions is version 1.3
p.s. this is not a real problem, i can modify the code by removing ".i" or compile it with 6.12

UPDATE: I ...
by le_magn
Sun Mar 23, 2025 5:59 pm
Forum: General Discussion
Topic: PB6.20+ Native types can't be used with pointers.
Replies: 16
Views: 2464

Re: PB6.20+ Native types can't be used with pointers.

mk-soft wrote: Sun Mar 23, 2025 3:44 pm
Remove ".i"

Code: Select all

InRange(*pTextRange, prop.i)
[/quote]

:D Thanks MKSoft, but so far I can see that if I remove ‘.i’ I don't get the error (maybe I can't explain it well as I speak English very poorly), but I just wanted to know why with versions prior to 6.20 I don't get the error
by le_magn
Sun Mar 23, 2025 3:00 pm
Forum: The PureBasic Editor
Topic: A complete code browser for PureBasic [Windows]
Replies: 81
Views: 41542

Re: A complete code browser for PureBasic [Windows]

Hi Zapman, i take a screenshot of the error:
Image
by le_magn
Sun Mar 23, 2025 1:10 pm
Forum: The PureBasic Editor
Topic: A complete code browser for PureBasic [Windows]
Replies: 81
Views: 41542

Re: A complete code browser for PureBasic [Windows]

Hi Zapman, if you try to compile the sources with PB6.20 or later, you'll get an error. It works fine with 6.12. Check this thread:https://www.purebasic.fr/english/viewto ... 76#p637976
by le_magn
Sun Mar 23, 2025 1:08 pm
Forum: General Discussion
Topic: PB6.20+ Native types can't be used with pointers.
Replies: 16
Views: 2464

Re: PB6.20+ Native types can't be used with pointers.

jacdelad wrote: Sun Mar 23, 2025 7:01 am Try the brand-new 6.21 Beta 2.
Same error with 6.21Beta2
by le_magn
Sat Mar 22, 2025 8:30 pm
Forum: General Discussion
Topic: PB6.20+ Native types can't be used with pointers.
Replies: 16
Views: 2464

Re: PB6.20+ Native types can't be used with pointers.


Yes it is normal. Just remove the native type on the pointer variable (i.e. the '.i' part). In previous versions of PureBasic having a native type didn't make sense and wasn't needed, because pointers always held an integer value, but no error was thrown. Now it throws an error.


Ok thank's :)
by le_magn
Sat Mar 22, 2025 7:33 pm
Forum: General Discussion
Topic: PB6.20+ Native types can't be used with pointers.
Replies: 16
Views: 2464

PB6.20+ Native types can't be used with pointers.

Hi all, in PB6.20 AND PB6.21Beta1 i get this error "Native types can't be used with pointers", at this line:

Code: Select all

InRange(*pTextRange.i, prop.i)
But with 6.12 it compile ok, is this normal?