Search found 1369 matches

by Thorsten1867
Sat Oct 05, 2024 9:16 am
Forum: Applications - Feedback and Discussion
Topic: [Modules] ListEx (all OS / DPI)
Replies: 485
Views: 208007

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

Ich habe es mit dem Beispielcode getestet und konnte kein Problem feststellen.
Du könntest vielleicht diesen Befehl mal ausprobieren.

I have tested it with the sample code and could not find any problem.
You could perhaps try this command.

Code: Select all

Listex::Refresh(#List)
by Thorsten1867
Thu Oct 03, 2024 2:49 pm
Forum: Applications - Feedback and Discussion
Topic: [Modules] ListEx (all OS / DPI)
Replies: 485
Views: 208007

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

Should actually work as long as only integer numbers are entered.
by Thorsten1867
Thu Sep 05, 2024 3:32 pm
Forum: Applications - Feedback and Discussion
Topic: [Module] SpellCheck (all OS)
Replies: 12
Views: 17917

Re: [Module] SpellCheck (all OS)

Sorry, had only updated GIT-Hub.
Hope the download works now.
by Thorsten1867
Tue Sep 03, 2024 10:41 am
Forum: Applications - Feedback and Discussion
Topic: [Module] SpellCheck (all OS)
Replies: 12
Views: 17917

Re: [Module] SpellCheck (all OS)

There was apparently a conflict during synchronisation and the procedures are missing from the file.

I have uploaded the correct file again and hope it works now.
by Thorsten1867
Sun Jun 09, 2024 10:05 am
Forum: Applications - Feedback and Discussion
Topic: [Module] pbPDF-Module
Replies: 145
Views: 119339

Re: [Module] pbPDF-Module

I can hardly correct errors in procedures that do not exist in my module.

You should post your problems at PurePDF and not at pbPDF.

As mk-soft has already described, the code must be adapted to 64Bit, as I have done with pbPDF.
by Thorsten1867
Fri May 03, 2024 5:17 pm
Forum: Applications - Feedback and Discussion
Topic: [Module] pbPDF-Module
Replies: 145
Views: 119339

Re: [Module] pbPDF-Module

Bugfix: Unicode-Font
by Thorsten1867
Tue Mar 21, 2023 12:29 pm
Forum: Applications - Feedback and Discussion
Topic: [Module] QRCode (all OS)
Replies: 8
Views: 8666

Re: [Module] QRCode (all OS)


Just a note, there is a bug in this Module where if you set the frontcolor using
QRCode::SetColor(#Gadget, QRCode::#FrontColor, $800000)
but do not set any text using
QRCode::SetText(#Gadget, "Hello World")
it will cause a crash.


An easy fix is to edit the Procedure Draw_()
and add a check ...
by Thorsten1867
Mon Mar 20, 2023 7:34 pm
Forum: Applications - Feedback and Discussion
Topic: [Module] ComboBoxEx Gadget (all OS)
Replies: 25
Views: 11233

Re: [Module] ComboBoxEx Gadget (all OS)

jak64 wrote: Mon Mar 20, 2023 4:18 pm I think there is an error, I published several game programs but on the French forum and two or three on the English forum
A bit too little information to find a bug;-)
by Thorsten1867
Mon Mar 20, 2023 1:21 pm
Forum: Applications - Feedback and Discussion
Topic: [Module] ComboBoxEx Gadget (all OS)
Replies: 25
Views: 11233

Re: [Module] ComboBoxEx Gadget (all OS)

maxListHeight : Hauteur maximale de la liste de sélection avant l'utilisation d'une barre de défilement.
Content : Le texte qui s'affiche avant que quelque chose ne soit sélectionné.
Flags : #Borderless / #Editable / #UpperCase / #LowerCase / #Image / #AutoResize / #Left / #Right / #Center ...
by Thorsten1867
Mon Mar 20, 2023 12:42 pm
Forum: Applications - Feedback and Discussion
Topic: [Module] ComboBoxEx Gadget (all OS)
Replies: 25
Views: 11233

Re: [Module] ComboBoxEx Gadget (all OS)

Code: Select all

ComboBoxEx::Gadget(GNum.i, X.i, Y.i, Width.i, Height.i, maxListHeight.i, Content.s="", Flags.i=#False, WindowNum.i=#PB_Default)
by Thorsten1867
Sun Jul 31, 2022 7:13 pm
Forum: Applications - Feedback and Discussion
Topic: [Module] EditorEx (Custom Editor Gadget)
Replies: 60
Views: 31443

Re: [Module] EditorEx (Custom Editor Gadget)

Bugfixes

The error had unfortunately hidden itself very well.
by Thorsten1867
Sun Jul 17, 2022 8:29 am
Forum: Applications - Feedback and Discussion
Topic: StringBetween()
Replies: 23
Views: 9601

Re: StringBetween()

The whole thing minimalist:

Procedure.s StringBetween(String.s, StartString.s, EndString.s)
String = StringField(String, 2, StartString)
ProcedureReturn StringField(String, 1, EndString)
EndProcedure

String$ = "<title>Example String</title>"
Debug StringBetween(String$, "<title>", "</title ...
by Thorsten1867
Fri Jul 15, 2022 9:41 am
Forum: General Discussion
Topic: DesktopUnscaleX() BIG bug
Replies: 3
Views: 987

Re: DesktopUnscaleX() BIG bug

I can't find any problem with my modules.

Try this: DPI-Module.pbi
by Thorsten1867
Tue Jul 12, 2022 1:41 pm
Forum: Applications - Feedback and Discussion
Topic: [Program] Generate licence code images
Replies: 0
Views: 1214

[Program] Generate licence code images

Generate licence code images

The licence code is stored encrypted in the image using LSB (Least Significant Bit Embedding) and can then be read out and checked by the program.

Insert name and validity into the template image.
Encryption of the data
Reading the data directly into a structure ...