Search found 1363 matches

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

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 chec...
by Thorsten1867
Mon Mar 20, 2023 7:34 pm
Forum: Applications - Feedback and Discussion
Topic: [Module] ComboBoxEx Gadget (all OS)
Replies: 25
Views: 8210

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: 8210

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 / #Multi...
by Thorsten1867
Mon Mar 20, 2023 12:42 pm
Forum: Applications - Feedback and Discussion
Topic: [Module] ComboBoxEx Gadget (all OS)
Replies: 25
Views: 8210

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: 24235

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: 5784

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>"...
by Thorsten1867
Fri Jul 15, 2022 9:41 am
Forum: General Discussion
Topic: DesktopUnscaleX() BIG bug
Replies: 3
Views: 420

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: 542

[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 for eas...
by Thorsten1867
Sat Jul 09, 2022 11:02 am
Forum: Applications - Feedback and Discussion
Topic: Simple Stegano Watermarker
Replies: 4
Views: 701

Re: Simple Stegano Watermarker

I have developed a complete module for this, if you are interested.
  • Embed files, XML, JSON and strings as (encrypted) data in images with lossless compression.
  • Encryption for the use of images as a licence code.
https://www.purebasic.fr/english/viewto ... 27&t=73582
by Thorsten1867
Wed Jul 06, 2022 8:15 am
Forum: Announcement
Topic: QoiImagePlugin
Replies: 3
Views: 927

Re: QoiImagePlugin

by Thorsten1867
Tue Jul 05, 2022 3:05 pm
Forum: Coding Questions
Topic: Print in columns
Replies: 9
Views: 625

Re: Print in columns

I create a PDF (pbPDFModule.pbi) for such things.
by Thorsten1867
Fri Jul 01, 2022 8:59 am
Forum: Coding Questions
Topic: Simple SQL data base
Replies: 2
Views: 377

Re: Simple SQL data base

by Thorsten1867
Mon Jun 27, 2022 1:57 pm
Forum: Applications - Feedback and Discussion
Topic: [Module] Extended ToolBar-Gadget (all OS / DPI)
Replies: 44
Views: 10564

Re: [Module] Extended ToolBar-Gadget (all OS / DPI)

The solution is unfortunately Windows only