Search found 97 matches

by drgolf
Sat Oct 25, 2025 1:36 pm
Forum: Bugs - Windows
Topic: PB 6.30 Beta 4 - ScreenGadget library - bug report
Replies: 7
Views: 384

Re: PB 6.30 Beta 4 - ScreenGadget library - bug report

Hello Pf, me again :

Screenwindowanimation bug : the window n-ui appear with animation.
Click buttons close and show : no animation !

PB 6.30 b4 x64 CBE, windows 11 pro

I know, i know, i am the only one to have this bug...


#HelloWindow = 0
#QuitButton = 0
;
#nwind=1
#showwindow=1
#closewindow ...
by drgolf
Sat Oct 25, 2025 9:00 am
Forum: Bugs - Windows
Topic: ScreenGadget bugs
Replies: 22
Views: 2297

Re: ScreenGadget bugs

Hello,

Another bug (???) with ScreenWindowAnimation :

On ScreenGadgetMultipleWindow example, launch the code, move window 1, then click button show / hide w2 = no animation !

If you launch code without move window1 : animation is visible.

Tested with PB 6.30 B4 x64 C BE, windows 11 pro.

Have a ...
by drgolf
Thu Oct 16, 2025 3:13 pm
Forum: Tricks 'n' Tips
Topic: Password protect zip
Replies: 0
Views: 251

Password protect zip

Hello,

For create zip files with protected content :


; PB6.30 B3 x64 - Windows 11 Pro
; DrGolf - Oct 2025
; Creation zip file with password protect
; Files needed : libzip.dll and libzip.dll.a
; Here : https://www.freebasic-portal.de/downloads/bibliotheken/libzip-For-freebasic-417.html ...
by drgolf
Tue Oct 07, 2025 12:11 pm
Forum: Bugs - Windows
Topic: ScreenGadget bugs
Replies: 22
Views: 2297

Re: ScreenGadget bugs

Hello Pf,

Here an example of the splitter bug (windows 11 pro) : ima (freeze the exe)

Click bug left or bug right button, on win2.

There is no event of the splitter : not detected by eventscreengadget

AND

getscreengadgetstate for the splitter is always 0



#HelloWindow = 0
#QuitButton = 0 ...
by drgolf
Mon Oct 06, 2025 10:11 am
Forum: Bugs - Windows
Topic: ScreenGadget bugs
Replies: 22
Views: 2297

ScreenGadget bugs

Hello,

In the example : screengadgetmultiplewindow, on window2, tab splitter, move splitter on max right or max left : the app freeze.

I have an error message : accès mémoire invalide, ligne 217.

Very good lib.

Tested with pb 6.30 b3 x64 windows 11 pro.
by drgolf
Sat Sep 13, 2025 10:01 am
Forum: Bugs - Windows
Topic: [Done] OpenFTP not work on 6.21
Replies: 18
Views: 2233

Re: OpenFTP not work on 6.21

Hello Infratec,

As i always said, with anonymous and no pw : work ok.

But with : ftpperso.free.fr, ident and pw, i have on debug Not open, and in console :



* timeout on name lookup is not supported
* Trying 212.27.63.3:21...
* TCP_NODELAY set
* Connected to ftpperso.free.fr (212.27.63.3) port ...
by drgolf
Sat Sep 13, 2025 8:13 am
Forum: Bugs - Windows
Topic: [Done] Stringgadget bug
Replies: 8
Views: 1412

Re: [Done] Stringgadget bug

Thanx !!!
by drgolf
Sat Sep 13, 2025 8:11 am
Forum: Bugs - Windows
Topic: [Done] OpenFTP not work on 6.21
Replies: 18
Views: 2233

Re: OpenFTP not work on 6.21

Hello Fred,

I have tested the new flag #pb_ftp_debug, like this :


serveur.s = "ftpperso.free.fr"
user.s = "mylogin"
pw.s = "mypassword"
port.i = 21

If OpenFTP(0, serveur, user, pw, #PB_FTP_Passive | #PB_FTP_Debug, port)
Debug "Open"

If ExamineFTPDirectory(0)
While NextFTPDirectoryEntry(0 ...
by drgolf
Wed Sep 03, 2025 2:59 pm
Forum: Coding Questions
Topic: Linker error with LibCurl.pbi
Replies: 4
Views: 488

Re: Linker error with LibCurl.pbi

Thanx Infratec, you save my day !

My FTP app, works again ! Cool !
by drgolf
Wed Sep 03, 2025 2:37 pm
Forum: Bugs - Windows
Topic: [Done] Stringgadget bug
Replies: 8
Views: 1412

Re: Stringgadget bug

Hello Fred,

The #es_multiline style dont work with Setwindowlongptr_().

See windows api doc here : https://learn.microsoft.com/fr-fr/windows/win32/controls/edit-control-styles

The stringgadget multiline is usefull because of contextmenu with clipboard functions.

I need to create the control and ...
by drgolf
Wed Sep 03, 2025 9:28 am
Forum: Bugs - Windows
Topic: [Done] Stringgadget bug
Replies: 8
Views: 1412

[Done] Stringgadget bug

Hello again,

With PB 6.30 B1, this code no longer work :


If OpenWindow(0, 0, 0, 322, 205, "StringGadget BUG !", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
StringGadget(0, 10, 10, 200, 150, "aaaaaaa ",#ES_MULTILINE|#WS_BORDER|#WS_VSCROLL|#ES_AUTOVSCROLL|#PB_String_ReadOnly|#ES_WANTRETURN ...
by drgolf
Wed Sep 03, 2025 9:24 am
Forum: Coding Questions
Topic: Linker error with LibCurl.pbi
Replies: 4
Views: 488

Re: Linker error with LibCurl.pbi

Yes, its true but the libcurl on pb is broken since PB 6.12...

My FTP app works great with PB 6.11 and cant access ftp on FREE since version 6.12.

Sorry... In french :

Mon application de FTP marche parfaitement depuis des années jusqu'à la version PB 6.11 en upload et download.
Elle se connecte ...
by drgolf
Wed Sep 03, 2025 8:57 am
Forum: Coding Questions
Topic: Linker error with LibCurl.pbi
Replies: 4
Views: 488

Linker error with LibCurl.pbi

Hello,

with PB6.30 B1 x64, CBE, on windows 10 pro, i have linker error with Libcurl.pbi :


IncludeFile "libcurl.pbi"

Debug "bug !!!"



Message box : error : undefined symbol : zlib version
lld link error ; undefined symbol inflate

I need the libcurl.pbi because the integrated version in PB ...
by drgolf
Wed Jul 23, 2025 9:38 am
Forum: Bugs - Windows
Topic: [Done] OpenFTP not work on 6.21
Replies: 18
Views: 2233

Re: OpenFTP not work on 6.21

Hi Infratec,

Thanx for examples using libcurl for rmdir and creaye dir...

Not easy to change my app with libcurl... big work...

My problem is for delete recursive dir not empty...
by drgolf
Sat Jul 19, 2025 10:16 am
Forum: Coding Questions
Topic: Drop-down menu on hover (?)
Replies: 16
Views: 1096

Re: Drop-down menu on hover (?)

Hello,

With this i have a popup... maybe this help...


EnableExplicit

#Window = 0
Enumeration
#Menu1
#Menu2
EndEnumeration

Enumeration
#btn1
#btn2
EndEnumeration

Structure Point64
StructureUnion
p.POINT
q.q
EndStructureUnion
EndStructure

Global hGUI

Procedure ChangeButton ...