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...
Search found 1865 matches
- 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
- 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.
- Sat Jul 19, 2025 10:26 pm
- Forum: Coding Questions
- Topic: Drop-down menu on hover (?)
- Replies: 16
- Views: 649
- 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?
- 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).
- 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
...in a chicken costume.Little John wrote: Wed Jul 16, 2025 10:03 amYou have to hop around the cemetery on one leg when the moon is full.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?
- 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 ...
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 ...
- 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?
- 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.
- 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?
- 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.
- 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...
- 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 ...
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 ...
- 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?
- 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?