Search found 287 matches

by wayne-c
Tue Mar 26, 2024 7:50 pm
Forum: Feature Requests and Wishlists
Topic: Additional WebGadget Flags
Replies: 1
Views: 252

Re: Additional WebGadget Flags

This does the trick: SetEnvironmentVariable("WEBVIEW2_ADDITIONAL_BROWSER_ARGUMENTS", "--allow-insecure-localhost --ignore-certificate-errors") OpenWindow(0, 0, 0, 800, 600, "Edge insecure localhost", #PB_Window_SystemMenu | #PB_Window_MaximizeGadget | #PB_Window_Minimiz...
by wayne-c
Sat Mar 16, 2024 11:22 am
Forum: Feature Requests and Wishlists
Topic: Additional WebGadget Flags
Replies: 1
Views: 252

Additional WebGadget Flags

Please add the following flags to the WebGadget:

Code: Select all

#PB_HTTP_NoSSLCheck
#PB_HTTP_WeakSSL
Without these it is not possible to connect to self-signed certificates for testing purposes!
by wayne-c
Thu Nov 09, 2023 10:13 pm
Forum: Feature Requests and Wishlists
Topic: PureBasic Pro
Replies: 24
Views: 3314

Re: PureBasic Pro

infratec wrote: Thu Nov 09, 2023 9:31 pm
the.weavster wrote: Thu Nov 09, 2023 12:06 pm Ooh, I missed that. Fingers crossed for a WebViewGadget 🤞
Here you are:
viewtopic.php?t=75898&start=135
I'm looking for a native PB WebView ;-)
by wayne-c
Thu Nov 09, 2023 6:00 pm
Forum: Feature Requests and Wishlists
Topic: PureBasic Pro
Replies: 24
Views: 3314

Re: PureBasic Pro

the.weavster wrote: Thu Nov 09, 2023 12:06 pm
skywalk wrote: Wed Nov 08, 2023 4:04 pm Fred already said the next PB version will be feature driven.
Ooh, I missed that. Fingers crossed for a WebViewGadget 🤞
I have already offered Fred to help sponsor the development of the new WebViewGadget...
by wayne-c
Sun Apr 30, 2023 4:41 pm
Forum: Coding Questions
Topic: AbortMail()
Replies: 5
Views: 306

Re: AbortMail()

infratec wrote: Sun Apr 30, 2023 4:34 pm There should be send a RSET command maybe followed bye a QUIT.
I don't think that FreeMail() does this.

If you really need this ... libcurl.
We move this to Features and Requests?
by wayne-c
Sun Apr 30, 2023 2:07 pm
Forum: Coding Questions
Topic: AbortMail()
Replies: 5
Views: 306

Re: AbortMail()

Well it might do it, but I am not sure - should be confirmed by @Fred. I'd prefer a real AbortMail() function that then gives #PB_Mail_Aborted as return value of MailProgress()
by wayne-c
Sun Apr 30, 2023 11:17 am
Forum: Coding Questions
Topic: AbortMail()
Replies: 5
Views: 306

AbortMail()

Howdy I am sending asynchronous mail and want to timeout after 15s - how to abort the operation? There is AbortFTPFile() and AbortHTTP() but no AbortMail()? Timeout = ElapsedMilliseconds() + 15000 Result = SendMail(0, "smtp.free.fr", 25, #PB_Mail_Asynchronous) Repeat Progress = MailProgres...
by wayne-c
Mon Apr 17, 2023 1:51 pm
Forum: Announcement
Topic: PureBasic 6.02 LTS is out !
Replies: 89
Views: 17074

Re: PureBasic 6.02 beta 1 is out !

PureBasic x64 Windows can no longer be installed on a Windows 11 running in Parallels on macOS ARM with the new installer? Installer error message: This program can only be installed on versions of Windows designed for the following processor architectures: x64 (I could install the regular x64 versi...
by wayne-c
Thu Feb 09, 2023 3:13 pm
Forum: Coding Questions
Topic: JSON, Only Include Applied Data
Replies: 2
Views: 336

Re: JSON, Only Include Applied Data

maybe off-topic but in Go it's implemented like this: type test struct { a string b string `json:",omitempty"` } a will always be present, also ""; b will only be present in the JSON when != "" In PB we might have an additional parameter in ComposeJSON : #PB_JSON_OmitEm...
by wayne-c
Thu Feb 02, 2023 10:11 am
Forum: Coding Questions
Topic: [SOLVED] Finding cause of a crashing application
Replies: 10
Views: 694

Re: Finding cause of a crashing application

@Fred maybe?

Should this check not be included in the SendNetworkString / SendNetworkData functions?
by wayne-c
Sat Dec 10, 2022 7:55 pm
Forum: Coding Questions
Topic: Enumeration Name for #PB_Web_....
Replies: 9
Views: 574

Re: Enumeration Name for #PB_Web_....

infratec wrote: Sat Dec 10, 2022 10:41 am I want to implement additional features to a WebView2 Gadget.
Yes please :D
by wayne-c
Sun Jun 26, 2022 8:19 am
Forum: Linux
Topic: Ubuntu 20.04.2 ARM64
Replies: 3
Views: 593

Re: Ubuntu 20.04.2 ARM64

Dear mk-soft Yes, that worked now! Thank you! But that raises a few more questions: - wouldn't it make sense to have the following downloads available for Ubuntu? Download PureBasic 6.00 LTS for Linux (Ubuntu 20.04 - x64) Download PureBasic 6.00 LTS for Linux (Ubuntu 20.04 - arm64) - when I compile ...
by wayne-c
Sat Jun 25, 2022 4:37 pm
Forum: Linux
Topic: Ubuntu 20.04.2 ARM64
Replies: 3
Views: 593

Ubuntu 20.04.2 ARM64

Will PureBasic v6 run on Ubuntu 20.04.2 ARM64? I am trying to get it running with Parallels on my M1 MacBook and always getting the error "binary invalid"...
by wayne-c
Wed Jun 08, 2022 10:35 am
Forum: Coding Questions
Topic: How to create a PureBasic SOAP request with a certificate?
Replies: 4
Views: 465

Re: How to create a PureBasic SOAP request with a certificate?

I have done this many times using the excellent companion for Purebasic IMHO: Chilkat library REST with PFX Client Certificate: https://www.example-code.com/purebasic/rest_client_certificate.asp Digital Signatures Examples: https://www.example-code.com/purebasic/xmldsig.asp https://www.chilkatsoft.c...
by wayne-c
Sun Jun 05, 2022 4:12 pm
Forum: Announcement
Topic: PureBasic 6.00 released !
Replies: 626
Views: 148376

Re: PureBasic 6.00 Beta 9 released !

As mentioned earlier in this thread, why not just add a new generic function HttpTimeout() that sets the timeout for all subsequent calls to all the different Http...() functions, for the current thread? This will not break existing code and is similar to the already existing HttpProxy()-function.