Search found 28 matches

by GogaII
Mon Feb 10, 2025 3:26 am
Forum: Coding Questions
Topic: Is it currently possible to add ssl to tcp socket connections?
Replies: 19
Views: 6586

Re: Is it currently possible to add ssl to tcp socket connections?

Unfortunately, FTPS in PB v 6.20 doesn't work. I have to use a solution from RSBasic. But the FTPProgress() doesn't work in his library
If someone wants to test FTPS I can provide such a server.
by GogaII
Mon Sep 09, 2024 8:52 am
Forum: Coding Questions
Topic: processing of buttons on a bluetooth headphone
Replies: 0
Views: 900

processing of buttons on a bluetooth headphone

Could you advice me how to catch a press of buttons (Play/Stop, next and etc) on a Bluetooth headphone?
by GogaII
Mon Dec 11, 2023 3:22 am
Forum: Applications - Feedback and Discussion
Topic: PB.Ex Speech (Windows)
Replies: 42
Views: 26392

Re: PB.Ex Speech (Windows)

Native MS recognition works on my computer under W10 pretty well. But this app actually works not well. What is the reason of it?
by GogaII
Tue Oct 31, 2023 8:15 am
Forum: Applications - Feedback and Discussion
Topic: PB.Ex FTP (Windows)
Replies: 43
Views: 34285

Re: PB.Ex FTP (Windows)


Please use the previous version.


- It's impossible to use version Dll library v. 1.0.6.0 because it doesn't work with FTP servers with TSL 1.2 or higher

In addition I'd like to add some points which I found.
- there is confusion with the value @ErrorOutput and @ErrorOutput$ in the description ...
by GogaII
Tue Oct 31, 2023 8:09 am
Forum: Tricks 'n' Tips
Topic: libcurl.pbi
Replies: 134
Views: 55943

Re: libcurl.pbi

I tried to launch the file FTPS_download.pb and received "invalid memory access (write error at address 0)" in the line curl_global_init(#CURL_GLOBAL_DEFAULT)
I compiled the file in exe, launched it as an Administrator, and set my path for #LOCAL_FILE, but it didn't help.
Could you show an example ...
by GogaII
Wed Sep 20, 2023 1:49 pm
Forum: Applications - Feedback and Discussion
Topic: PB.Ex FTP (Windows)
Replies: 43
Views: 34285

Re: PB.Ex FTP (Windows)

Sorry. I've missed this warning (
Ok, I'll look forward to a fix.
by GogaII
Tue Sep 19, 2023 2:02 pm
Forum: Applications - Feedback and Discussion
Topic: PB.Ex FTP (Windows)
Replies: 43
Views: 34285

Re: PB.Ex FTP (Windows)

Hi RSBasic,
I think the function FTPProgressEx() doesn't work correctly.
To check it I even used your examples from the archive and I've always received 0.
Except my coding I also used this code from the archive:

....

Define ErrorOutput$ = Space(128)
Define FileName$ = Space(#MAX_PATH)

Debug ...
by GogaII
Mon Sep 11, 2023 1:48 am
Forum: Applications - Feedback and Discussion
Topic: PB.Ex FTP (Windows)
Replies: 43
Views: 34285

Re: PB.Ex FTP (Windows)

RSBasic wrote: Sun Sep 10, 2023 9:23 pm Thank you for the test access. With this version it works.
Great! Thank you too!
by GogaII
Sun Sep 10, 2023 2:26 am
Forum: Applications - Feedback and Discussion
Topic: PB.Ex FTP (Windows)
Replies: 43
Views: 34285

Re: PB.Ex FTP (Windows)

RSBasic wrote: Sat Sep 09, 2023 1:19 pm That would be helpful if you could set up test access for me.
I've sent a private message to you.
by GogaII
Sat Sep 09, 2023 8:02 am
Forum: Applications - Feedback and Discussion
Topic: PB.Ex FTP (Windows)
Replies: 43
Views: 34285

Re: PB.Ex FTP (Windows)

You're welcome!
I tried to use your ftp-library. I think it has a problem with working with some ftp-servers like FileZilla.
I checked the working of several famous FTP clients ( such as FileZilla, Total Commander, and WinSCP) with my FileZilla server, and they all worked perfectly. But I couldn't ...
by GogaII
Fri Sep 08, 2023 2:23 am
Forum: Applications - Feedback and Discussion
Topic: PB.Ex FTP (Windows)
Replies: 43
Views: 34285

Re: PB.Ex FTP (Windows)

Hi RSBasic!
change, please, the link to PB.Ex_FTP.zip on your first message (on the first page) from http to https. Otherwise browsers are not happy of http, write different nonsense and don't allow downloading.
by GogaII
Mon May 22, 2023 6:08 am
Forum: Coding Questions
Topic: EditiorGadget stopped to understand RTF format in 6.02
Replies: 3
Views: 757

EditiorGadget stopped to understand RTF format in 6.02

Hi everyone
As I understood, the EditorGadget stopped to understand the RTF format in 6.02 version
Check, please, its working in 6.01 and 6.02

OpenWindow(#PB_Any, 0, 0, 500, 150, "bug", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
EditorGadget(0, 10, 10, 300, 100)
pp$="{\rtf\ansi\ansicpg1251 ...
by GogaII
Mon Nov 28, 2022 2:49 pm
Forum: Windows
Topic: How to make Uninstaller?
Replies: 18
Views: 3468

Re: How to make Uninstaller?


.....
RunProgram(GetEnvironmentVariable("Comspec"),"/C Timeout 2 && Del /F /Q " +#DQUOTE$+ Program +#DQUOTE$+ " && Rd /S /Q " +#DQUOTE$+ ProgramPath +#DQUOTE$, GetEnvironmentVariable("Windir") + "\System32", #PB_Program_Hide)
...

Thanks, I'll check this string, but I don't know why , but ...
by GogaII
Fri Nov 25, 2022 2:21 pm
Forum: Windows
Topic: How to make Uninstaller?
Replies: 18
Views: 3468

Re: How to make Uninstaller?

Bitblazer wrote: Sun Nov 20, 2022 5:34 pm
GogaII wrote: Sun Nov 20, 2022 11:59 am Could anyone advice me something?
Check NSIS and how they do it.
Thanks, I'll have a look at.
by GogaII
Fri Nov 25, 2022 2:16 pm
Forum: Windows
Topic: How to make Uninstaller?
Replies: 18
Views: 3468

Re: How to make Uninstaller?

idle wrote: Sun Nov 20, 2022 11:57 pm Did you try to copy your uninstaller.exe to GetTemporaryDirectory() and run it from there?
This method doesn't work with me ((. The Windows defender shouts that this is a virus (
I'm going to communicate with MS. Probably, they will suggest any solution.