Search found 180 matches

by dcr3
Fri Aug 29, 2025 2:58 pm
Forum: General Discussion
Topic: Is PureBasic dead?
Replies: 21
Views: 2119

Re: Is PureBasic dead?

It's only dead, when we die. :mrgreen:
by dcr3
Tue Aug 12, 2025 12:24 pm
Forum: Coding Questions
Topic: why I cannot write a procedure in the loop event
Replies: 19
Views: 1015

Re: why I cannot write a procedure in the loop event

det_uio wrote: Mon Aug 11, 2025 11:42 am (it crashes after 5-10 second)
One observation , different .wav size,the crash happens at different intervals.
by dcr3
Sun Aug 10, 2025 9:12 pm
Forum: Tricks 'n' Tips
Topic: Windows Media Player Control
Replies: 47
Views: 17867

Re: Windows Media Player Control

=Bisonte post_id=643917 time=1754843946 user_id=3820]
sorry, but WHAT should I download there ? I am old, I need help ;)



1. Download
https://globalcdn.nuget.org/packages/videolan.libvlc.windows.3.0.21.nupkg?packageVersion=3.0.21

2. Rename

videolan.libvlc.windows.3.0.21.nupkg
To
videolan ...
by dcr3
Sat May 31, 2025 5:55 pm
Forum: Coding Questions
Topic: OK on PB6.20 and ERROR on PB6.21b9
Replies: 6
Views: 499

Re: OK on PB6.20 and ERROR on PB6.21b9


Does the solution exist with this beta 9?


Yes? :?


As written in the error message:

add #PB_Sprite_AlphaBlending at all CreateSprite() procedures.


Just add #PB_Sprite_AlphaBlending

CreateSprite(0, zoom/rang,zoom/rang,#PB_Sprite_AlphaBlending)

CreateSprite(1000, zoom/rang,zoom/rang,#PB ...
by dcr3
Mon Mar 03, 2025 4:34 pm
Forum: Tricks 'n' Tips
Topic: Sort ListIconGadget [Windows only]
Replies: 50
Views: 6368

Re: Sort ListIconGadget [Windows only]

May be something like this.It's your call.

Global Dim dates.s(4)

Global CSLI_DateFormat$

Select CSLI_DateFormat$
Case dates(0)
CSLI_DateFormat$="%dd.%mm.%yyyy"
Case dates(1)
CSLI_DateFormat$="%dd-%mm-%yyyy"
Case dates(2)
CSLI_DateFormat$="%dd/%mm/%yyyy"
Case dates(3)
CSLI_DateFormat ...
by dcr3
Mon Mar 03, 2025 1:01 pm
Forum: Tricks 'n' Tips
Topic: Sort ListIconGadget [Windows only]
Replies: 50
Views: 6368

Re: Sort ListIconGadget [Windows only]

I haven't tested everything thoroughly in this sort module.

These format dates sort properly.

"%yyyy/%mm/%dd"
"%yyyy.%mm.%dd"
"%dd/%mm/%yyyy

But the following dates format don't sort properly.

"%yyyy-%mm-%dd"
"%dd-%mm-%yyyy"
"%dd.%mm.%yyyy"

Also list of dates, like.
25 Jan 2025 ...
by dcr3
Mon Feb 24, 2025 2:55 pm
Forum: Tricks 'n' Tips
Topic: Sort ListIconGadget [Windows only]
Replies: 50
Views: 6368

Re: Sort ListIconGadget [Windows only]


Sorry, I don't understand. It's working fine with a french setting. What happens for you? What do you see?


I don't know about your settings. For me dates don't sort correctly. :!:

May be someone else can vouch for it.

Anyway try the following.
Add different dates to the listicongadget , sort ...
by dcr3
Sun Feb 23, 2025 9:15 pm
Forum: Tricks 'n' Tips
Topic: A very simple SetGadgetColorEx() function [Windows]
Replies: 41
Views: 12800

Re: A very simple SetGadgetColorEx() function [Windows]

Realy nice, that you come back to it, not only added color to the others gadgets,but also improved it. :D
by dcr3
Sun Feb 23, 2025 9:05 pm
Forum: Tricks 'n' Tips
Topic: Sort ListIconGadget [Windows only]
Replies: 50
Views: 6368

Re: Sort ListIconGadget [Windows only]

I think your date routine needs to be fixed. :?:
by dcr3
Mon Dec 30, 2024 7:58 pm
Forum: Coding Questions
Topic: how to view a CHM file?
Replies: 21
Views: 6186

Re: how to view a CHM file?


Your answers indicate that you do not understand what I write. I've been using 7zip to extract CHM for over 15 years.


Right then,

https://github.com/Bioruebe/UniExtract2

https://github.com/Bioruebe/UniExtract2/releases/download/v2.0.0-rc.3/UniExtractRC3.zip

The sources are available in ...
by dcr3
Mon Dec 30, 2024 7:25 pm
Forum: Coding Questions
Topic: how to view a CHM file?
Replies: 21
Views: 6186

Re: how to view a CHM file?

AZJIO wrote: Mon Dec 30, 2024 2:14 am but the 7zip program cannot open it.
7zip can decompile CHM files.
by dcr3
Tue Dec 17, 2024 12:51 pm
Forum: Tricks 'n' Tips
Topic: PureLibrary Creator - PB 6.20
Replies: 48
Views: 20400

Re: Lib - PB 6.20

I created other libs successfully.

I decided to use this procedure on it's own and missed
to use DisablePureLibrary LibraryName. :oops:
pf shadoko wrote: Mon Dec 16, 2024 11:45 pm but since you have to put :
DisablePureLibrary LibraryName
Thanks for pointing that out.

Thanks for a great tool. :D
by dcr3
Mon Dec 16, 2024 10:00 pm
Forum: Tricks 'n' Tips
Topic: PureLibrary Creator - PB 6.20
Replies: 48
Views: 20400

Re: Lib - PB 6.20


no, these limitations no longer apply
Have you tested it?


Yes.I have tested.

Tell me why the following doesn't work?

ProcedureDLL Split(String.s, Array StringArray.s(1), Separator.s = " ")

Protected S.String, *S.Integer = @S
Protected.i asize, i, p, slen
asize = CountString(String ...
by dcr3
Mon Dec 16, 2024 7:37 pm
Forum: Tricks 'n' Tips
Topic: PureLibrary Creator - PB 6.20
Replies: 48
Views: 20400

Re: Lib - PB 6.20

Although this is a great tool, this should be taken into consideration.

List, Array and Map parameters can cause issues when exported with ProcedureDLL.

Otherwise the tool will hang.
by dcr3
Mon Nov 25, 2024 9:45 pm
Forum: Tricks 'n' Tips
Topic: A very simple SetGadgetColorEx() function [Windows]
Replies: 41
Views: 12800

Re: A very simple SetGadgetColorEx() function

Very nice and compact. 8)

I like the new additions. To be able to set and save themes.

To make it complete.You should try to add colour to the other gadgets. :wink: