Search found 92 matches

by drgolf
Sat Sep 13, 2025 10:01 am
Forum: Bugs - Windows
Topic: [Done] OpenFTP not work on 6.21
Replies: 18
Views: 1018

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

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

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

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

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

[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: 301

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

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

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

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 ...
by drgolf
Mon Jul 14, 2025 5:09 pm
Forum: Bugs - Windows
Topic: [Done] OpenFTP not work on 6.21
Replies: 18
Views: 1018

Re: OpenFTP not work on 6.21

@infratec,

There is a change in PB with FTP lib after version 6.11
My application work with PB11 but not with versions after.

So, i work on libcurl FTP... I can have the dir list.
How to create/delete dir with libcurl ?

Thanx by advance...
by drgolf
Sun Jul 13, 2025 5:53 pm
Forum: Bugs - Windows
Topic: [Done] OpenFTP not work on 6.21
Replies: 18
Views: 1018

Re: OpenFTP not work on 6.21

@infratec : all work fine with libcurl.... babababa... Its not easy to implement in my app... and very big dll...

I use libcurl for mail client... but for ftp client...

Thanx for your help.

In the libcurl zip the examples ftps_dir and ftps_getdirectory are the same files.
by drgolf
Sun Jul 13, 2025 4:55 pm
Forum: Bugs - Windows
Topic: [Done] OpenFTP not work on 6.21
Replies: 18
Views: 1018

Re: OpenFTP not work on 6.21

@infratec with your code : same result, BUT with :

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


If OpenFTP(0, serveur, user, pw, #True, port)
Debug "Open"

If ExamineFTPDirectory(0)
While NextFTPDirectoryEntry(0)
Debug FTPDirectoryEntryName(0)
Wend ...
by drgolf
Sun Jul 13, 2025 3:28 pm
Forum: Bugs - Windows
Topic: [Done] OpenFTP not work on 6.21
Replies: 18
Views: 1018

Re: OpenFTP not work on 6.21

Hello,

For me no connexion on ftp serveur FREE.fr with 6.21 : openftp return 0
Connexion with the same app and same param with pb 6.11 on x64 or x86

....
by drgolf
Sun Jul 13, 2025 2:40 pm
Forum: Bugs - Windows
Topic: [Done] OpenFTP not work on 6.21
Replies: 18
Views: 1018

[Done] OpenFTP not work on 6.21

Hello,

On windows 10 PRO x64, this line with :

serveur.s : ftpperso.free.fr
user.s : myident
pw.s : mypassword
port.i :21



If OpenFTP(0,serveur,user,pw,#True,port)



With PB 6.11 : all work well and i can list the files.
On PB 6.21 x64 ASM or C BE : unable to connect !!

With this line ...