Search found 473 matches

by loulou2522
Tue Apr 23, 2024 1:03 pm
Forum: Coding Questions
Topic: Droopy lib and Purebasic 6.11 beta 1
Replies: 3
Views: 136

Re: Droopy lib and Purebasic 6.11 beta 1

https://www.purebasic.fr/english/viewtopic.php?t=46047
These library was working well in purebasic 6.10 LTS
by loulou2522
Tue Apr 23, 2024 12:31 pm
Forum: Coding Questions
Topic: Droopy lib and Purebasic 6.11 beta 1
Replies: 3
Views: 136

Droopy lib and Purebasic 6.11 beta 1

I have this error when compiling programm with droopylib
Line 2275 byte.b=PeekB(@tempipinfo\Address+i)
Error message
with PB 6.11 beta 1
Can someone help Me ?
by loulou2522
Fri Apr 12, 2024 9:20 am
Forum: Coding Questions
Topic: Software update in progress
Replies: 1
Views: 427

Software update in progress

HI all,
I seem to remember that a coder had developed a piece of purebasic programming that could update a running purebasic program. If anyone remembers the address of the post, please let me know.
Have a nice day!
by loulou2522
Wed Apr 10, 2024 8:00 pm
Forum: Coding Questions
Topic: EditorGadget Problem with RTF
Replies: 6
Views: 377

Re: EditorGadget Problem with RTF

in MY FIRST POST the code is runable.
Thanks
by loulou2522
Wed Apr 10, 2024 6:15 pm
Forum: Coding Questions
Topic: EditorGadget Problem with RTF
Replies: 6
Views: 377

EditorGadget Problem with RTF

Here is my programm wich show the problem Before version PB 10 LTS all was good Declare.l OpenWindow_2() Declare Window_2_Events(event,GadgetID) Global.l histo_0 Global.l Window_2 Global.l quitform2 = #False Global.l Eventdeux,WindowIDdeux,GadgetIDdeux ,EventTypedeux Global Button_6 Procedure Window...
by loulou2522
Fri Apr 05, 2024 10:08 am
Forum: Coding Questions
Topic: Beginner searching for his learning path
Replies: 16
Views: 846

Re: Beginner searching for his learning path

Sorry Fred,
This link you provide dosen't work Error 404
http://www.kalekold.net/pb-beginners/Pu ... 0Guide.zip
by loulou2522
Sun Mar 31, 2024 8:06 am
Forum: Coding Questions
Topic: Compress a string
Replies: 1
Views: 171

Compress a string

Hi all,
My problem
I want to compress a string and after saving this string on an sqlite database. After i want to decompress this string from sqlite each time i need the content. Is-it possible ?
Thanks
by loulou2522
Fri Mar 29, 2024 8:18 am
Forum: Coding Questions
Topic: Sorting editor Gadget
Replies: 2
Views: 173

Sorting editor Gadget

Is-it possible to sort a gadget editor on the first 8 characters on each line?
example
23/05/90 deux
23/04/90 trois
23/06/90 quatre

to get
23/0'4/90 trois
23/05/90 deux
23/06/90 quatre
by loulou2522
Sat Mar 16, 2024 8:39 am
Forum: General Discussion
Topic: Free direct debit software
Replies: 2
Views: 314

Re: Free direct debit software

No, this software doesn't generate more sales. It simply offers the possibility of collecting any payment throughout the euro zone, as long as you have a bank account and a direct debit issuer number. This software is interesting for recurring subscriptions, such as a subscription to a fitness compa...
by loulou2522
Fri Mar 15, 2024 3:00 pm
Forum: General Discussion
Topic: Free direct debit software
Replies: 2
Views: 314

Free direct debit software

He Fred, if you wish, I can provide you free of charge with a complete software package for managing direct debits to be closed in the bank, with an automatic emailing system developed in either sqlite or postgresql. If you're interested, I can send you a PDF tutorial file of my software so you can ...
by loulou2522
Fri Mar 15, 2024 2:49 pm
Forum: Announcement
Topic: PureBasic 6.10 LTS is out !
Replies: 334
Views: 41929

Re: PureBasic 6.10 beta 8 is out !

Jacdelad +1
by loulou2522
Thu Mar 14, 2024 9:46 am
Forum: Coding Questions
Topic: Help with macro
Replies: 3
Views: 175

Help with macro

Hi all
Here is what i want to do
toto.s="variable1"
variable1= 100 assigning the value of variable1 to 100 , the var variable1 is given by toto
debug variable1 --> result 100
It's posssible with VB but i don't know hos to do in purebasic
THanks in advance
by loulou2522
Fri Mar 08, 2024 10:08 am
Forum: Coding Questions
Topic: Possible bug with Linker and PB 10 B7
Replies: 2
Views: 125

Re: Possible bug with Linker and PB 10 B7

thanks Fred,
I don't understand what you say becaus i never use pruepdf.lib in my programm i only use
modulepdf.pbi
Can you give me more explain to solve my problem please ?
Thanks
by loulou2522
Fri Mar 08, 2024 8:07 am
Forum: Coding Questions
Topic: Possible bug with Linker and PB 10 B7
Replies: 2
Views: 125

Possible bug with Linker and PB 10 B7

my programm works perfectly on PB 6.04 LTS and cause linking error with PB 6.10 B7 Here is the message PurePDF.lib(PurePDFShared_THREAD.obj) : warning LNK4006: _PB_MemoryBase_THREAD already defined in PV_Gadgets.lib(PV_GadgetsShared_THREAD.obj); second definition ignored PurePDF.lib(PurePDFShared_TH...
by loulou2522
Tue Mar 05, 2024 1:01 pm
Forum: Coding Questions
Topic: Drawtext and PB
Replies: 8
Views: 393

Drawtext and PB

Since the new version Procedure updateProgressBar(barNum, imageNum, amount, max, fColor, bColor, tColor, txt.s ) Protected iw = ImageWidth(imageNum), ih = ImageHeight(imageNum), tw, th StartDrawing(ImageOutput(imageNum)) Box(0, 0, iw, ih, fColor) Box(0, 0, amount / (max / iw), ih, bColor) DrawingMod...