Search found 105 matches

by holzhacker
Wed Mar 01, 2023 6:01 pm
Forum: Announcement
Topic: modern style switchgadget
Replies: 9
Views: 1138

Re: modern style switchgadget

Hello good afternoon!
So it needs some tests :oops:
This is the effect that occurred in PB 6.0 running on ubuntu 22.04.

Image
by holzhacker
Wed Jun 08, 2022 12:55 pm
Forum: Coding Questions
Topic: How to create a PureBasic SOAP request with a certificate?
Replies: 4
Views: 473

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

Sending SOAP is more or less a normal POST request. The problem in your case is the signed xml. You need to signe the xml external. This is not possible in PB directly. Yes friend, this is the problem. Here in Brazil, company sales must be communicated to the government in real time, and everything...
by holzhacker
Wed Jun 08, 2022 12:51 pm
Forum: Coding Questions
Topic: How to create a PureBasic SOAP request with a certificate?
Replies: 4
Views: 473

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....
by holzhacker
Tue Jun 07, 2022 7:05 pm
Forum: Coding Questions
Topic: How to create a PureBasic SOAP request with a certificate?
Replies: 4
Views: 473

How to create a PureBasic SOAP request with a certificate?

Friends,

Has anyone ever needed to access some SOAP service, with XMLs digitally signed with type A1 digital certificates (.pfx) :?:

Does anyone have any examples of native code using CURL or the HTTP library to use :?:

Every help is welcome :mrgreen:
by holzhacker
Wed Apr 06, 2022 6:27 pm
Forum: Coding Questions
Topic: REPORTS
Replies: 22
Views: 2282

Re: REPORTS

If you want to produce your own reports, check out this VecVi module. He is very good.

viewtopic.php?f=12&t=69804
by holzhacker
Wed Apr 06, 2022 1:34 pm
Forum: Windows
Topic: Replace internal function
Replies: 10
Views: 1499

Re: Replace internal function

Hello @Rinzwind, how is everything? Wrong thread? All nice and well, but fail to see what that has to do with this topic. As I said STUDY the fantastic module ScaleGadgets, IT REPLACES THE INTERNAL FUNCTIONS that create the gadgets... if this has nothing to do with the topic I don't know what does. ...
by holzhacker
Wed Apr 06, 2022 12:58 pm
Forum: Windows
Topic: Replace internal function
Replies: 10
Views: 1499

Re: Replace internal function

Hi, take a look at mk-soft's ScaleGadgets module, just fantastic https://www.purebasic.fr/english/viewtopic.php?t=71823 , I changed the CanvasGadget to add the #PB_Canvas_Container flag and also the OpenWindows flag so when in the Form Design I set the #PB_Windows_Borderless flag if I create a Conta...
by holzhacker
Sat Jan 29, 2022 1:37 pm
Forum: Raspberry PI
Topic: Problems with libraries and prototypes
Replies: 2
Views: 1326

Re: Problems with libraries and prototypes

Library '*.dll' :?: I think library '*.so' is better Yes my, just tested the operation in version PB6.0-B3 on windows friend to report. :wink: EnableExplicit DeclareModule NFe CompilerSelect #PB_Compiler_Processor CompilerCase #PB_Processor_Arm32 #ACBrLibNFe$ = "libacbrnfearm.so" #Platafo...
by holzhacker
Sat Jan 29, 2022 1:10 pm
Forum: Raspberry PI
Topic: Opening help with problems & autocomplete
Replies: 2
Views: 1117

Re: Opening help with problems & autocomplete

Already reported for all Linux version with Beta 3.
Oops, thanks mk-soft, sorry I hadn't seen it yet, only this week I managed to start testing.
by holzhacker
Sat Jan 29, 2022 1:02 pm
Forum: Raspberry PI
Topic: Opening help with problems & autocomplete
Replies: 2
Views: 1117

Opening help with problems & autocomplete

When pressing F1, the following error occurs: Cannot open file '/home/romerio/Development/purebasic/purebasic.help'! But the file is there. The Help window loads, however, without any content. About the autocomplement: Sometimes only the suggestion box is displayed, but no content is visible inside ...
by holzhacker
Sat Jan 29, 2022 12:53 pm
Forum: Raspberry PI
Topic: Problems with libraries and prototypes
Replies: 2
Views: 1326

Problems with libraries and prototypes

First of all, THANK YOU SO MUCH FRED, I love FANTAISIE Software. As I was hoping for an ARM version for PB <3. Unfortunately with my busy life, only this week I managed to get my ARMs out of the box and start testing. Everything I've seen so far excites me a lot. FRED, put some voluntary donations b...
by holzhacker
Sat Oct 30, 2021 3:42 pm
Forum: Coding Questions
Topic: How To tell If the StringGadget is #PB_String_Numeric
Replies: 7
Views: 1816

Re: How To tell If the StringGadget is #PB_String_Numeric

flag=GetWindowLong_(GadgetID(#YourGadget),#GWL_STYLE)
If flag & #PB_String_Password
Debug "Password flag is set"
EndIf
Hi Paul, thank you so much for your help... I'll look for the Linux and Mac correspondents later... :D :mrgreen:
by holzhacker
Sat Oct 30, 2021 3:38 pm
Forum: Coding Questions
Topic: How To tell If the StringGadget is #PB_String_Numeric
Replies: 7
Views: 1816

Re: How To tell If the StringGadget is #PB_String_Numeric

You defined them, so you should know which Gadget has which flag. I didn't really want to use SetGadgetData to be able to make the module itself automatically identify the flags and react to them. There must be something in the API's... Because by automatically identifying the flags the module usag...
by holzhacker
Sat Oct 30, 2021 3:08 pm
Forum: Coding Questions
Topic: How To tell If the StringGadget is #PB_String_Numeric
Replies: 7
Views: 1816

How To tell If the StringGadget is #PB_String_Numeric

Hello friends, I need to find out if the StringGadget is set with the #PB_String_Password flag to apply the default layout according to the field in this project:

viewtopic.php?f=12&t=78133

Thanks for the help!
by holzhacker
Tue Oct 26, 2021 11:50 am
Forum: Tricks 'n' Tips
Topic: TouchScreenKeyboard
Replies: 8
Views: 2765

Re: TouchScreenKeyboard

How could international keyboard layouts be realized? This project I designed to meet a specific need for a POS software I have in Purebasic, its layout was based on QWERT USA/International available on Android (Jelly Bean) which serves the program in question (identify customers and locate product...