Search found 1865 matches

by jacdelad
Mon Jul 28, 2025 7:55 am
Forum: Coding Questions
Topic: Issue with converting tiny classifier routine into a macro
Replies: 13
Views: 392

Re: Issue with converting tiny classifier routine into a macro

Piero wrote: Sun Jul 27, 2025 8:50 pm
STARGÅTE wrote: Sun Jul 27, 2025 3:34 pmOf cause
My english is very poor, but please let me say that it seems to me like it was generated by a German AI while scraping pineapple pizza web pages
Bold move accusing Stargate to be a bot (which wouldn't do this error) for using a wrong word which sound similar to the right one...
by jacdelad
Mon Jul 21, 2025 6:45 am
Forum: Coding Questions
Topic: Drop-down menu on hover (?)
Replies: 16
Views: 649

Re: Drop-down menu on hover (?)

Can't test right now, but I believe the button is receiving the entering message (and PB is not processing it for buttons). Don't know whether it's a but or desired behaviour by Windows.
by jacdelad
Sat Jul 19, 2025 10:26 pm
Forum: Coding Questions
Topic: Drop-down menu on hover (?)
Replies: 16
Views: 649

Re: Drop-down menu on hover (?)

Piero wrote: Sat Jul 19, 2025 1:24 pm
AZJIO wrote: Sat Jul 19, 2025 7:46 am What am I doing wrong?
I hate having to be repetitive, but YOU DON'T HAVE A MAC! :x (doesn't compile here)
It contains obvious windows API calls. How about not trying to be funny in every reply?
by jacdelad
Fri Jul 18, 2025 1:36 pm
Forum: Coding Questions
Topic: GetFilePart
Replies: 7
Views: 277

Re: GetFilePart

Maybe because " is not allowed on windows?
by jacdelad
Fri Jul 18, 2025 1:35 pm
Forum: Applications - Feedback and Discussion
Topic: [Modules] ListEx (all OS / DPI)
Replies: 485
Views: 198542

Re: [Modules] ListEx (all OS / DPI)

All kudos go to mk-soft (see linked thread).
by jacdelad
Wed Jul 16, 2025 1:35 pm
Forum: Tricks 'n' Tips
Topic: Japanese ANIME quality up on streming
Replies: 27
Views: 5708

Re: Japanese ANIME quality up on streming

Little John wrote: Wed Jul 16, 2025 10:03 am
Rinzwind wrote: Wed Jul 16, 2025 9:25 am I ran this code and now all ATM's nearby in a 6km radius stopped working. How to fix?
You have to hop around the cemetery on one leg when the moon is full.
...in a chicken costume.
by jacdelad
Sun Jul 13, 2025 5:40 pm
Forum: Applications - Feedback and Discussion
Topic: [Modules] ListEx (all OS / DPI)
Replies: 485
Views: 198542

Re: [Modules] ListEx (all OS / DPI)

Confirmed bug in 6.21: https://www.purebasic.fr/english/viewtopic.php?t=87121

Insert this right after "Module ListEx" in ListExModule.pbi (line 531 or such):
CompilerIf #PB_Compiler_OS = #PB_OS_Windows And #PB_Compiler_Version = 621
Debug "FIX"
Procedure.d _FixDrawText(x.d, y.d, Text ...
by jacdelad
Wed Jul 09, 2025 11:02 am
Forum: Feature Requests and Wishlists
Topic: Packer should return progress
Replies: 13
Views: 576

Re: Packer should return progress

Does anyone want to share the corde for the use of lha, 7zip, xz, the lzma library, etc. (the ones mentioned here), or are they already posted?
by jacdelad
Sat Jul 05, 2025 5:35 am
Forum: Coding Questions
Topic: Potential Form Designer Position and Size Bug
Replies: 3
Views: 159

Re: Potential Form Designer Position and Size Bug

That's one of the reasons why I mostly use dialogs.
by jacdelad
Fri Jul 04, 2025 7:26 pm
Forum: Coding Questions
Topic: Potential Form Designer Position and Size Bug
Replies: 3
Views: 159

Re: Potential Form Designer Position and Size Bug

Any chance your display is set to 125% scaling?
by jacdelad
Thu Jul 03, 2025 9:24 pm
Forum: Feature Requests and Wishlists
Topic: Packer should return progress
Replies: 13
Views: 576

Re: Packer should return progress

+1 for a callback variant.
by jacdelad
Sat Jun 21, 2025 10:53 pm
Forum: Windows
Topic: WaitThread problem
Replies: 7
Views: 278

Re: WaitThread problem

That's basically what I said...
by jacdelad
Sat Jun 21, 2025 6:51 pm
Forum: Windows
Topic: WaitThread problem
Replies: 7
Views: 278

Re: WaitThread problem

1. You don't distinguish between the eventtypes, so, how many times will start_thread() be executed?
2. GUI changes are not meant to be done within threads. Use a custom message.
3. start_thread() is not started within its own thread, so the whole message handling is halted until the procedure is ...
by jacdelad
Sat Jun 21, 2025 8:38 am
Forum: Coding Questions
Topic: ImageMenu : Image changes in menus are no longer updated with PB 6.21 Windows.
Replies: 4
Views: 212

Re: ImageMenu : Image changes in menus are no longer updated with PB 6.21 Windows.

It's definitely not wrong. Looks like the image is cached somewhere after assigning it to the menu. Maybe the Manu has an Image list, like ListViews do?
by jacdelad
Fri Jun 20, 2025 9:38 pm
Forum: Tricks 'n' Tips
Topic: HotKey System(Windows only)
Replies: 2
Views: 138

Re: HotKey System

Thanks, I will try this. Just one thing: Instead of loooooooots of cases, wouldn't it be better with a virtual table or at least map?