Search found 229 matches

by PedroAlex
Sat May 20, 2023 3:24 am
Forum: eXpress++ Support
Topic: example of combobox + checkbox combined
Replies: 10
Views: 5044

Re: example of combobox + checkbox combined

Maybe 'DCListBox' can be useful for your case!
by PedroAlex
Sat Mar 18, 2023 5:00 am
Forum: eXpress++ Support
Topic: Help with Chilkat
Replies: 8
Views: 2758

Re: Help with Chilkat

Bob, Try This: loGlob = CreateObject('Chilkat_9_5_0.Global') IF Valtype( loGlob ) != 'O' MsgBox( 'Object not Created!' ) MsgBox( 'Error : ' + Var2Char( ComLastError() ) , ComLastMessage() ) Return Nil Endif Note: This type of problems occurs more frequently with Chilkat 64-bit. If you install the 32...
by PedroAlex
Fri Dec 09, 2022 7:52 am
Forum: SqlQuery
Topic: SQL Queries of a remote server from a Web Browser
Replies: 6
Views: 7924

Re: SQL Queries of a remote server from a Web Browser

Hello Roger.

Can i use SqlQuery to create a query to a dbf/cdx file and display the result in a browser on an android tablet?
Can you provide a sample to do this!?
many thanks.
by PedroAlex
Tue Oct 18, 2022 11:43 am
Forum: Announcements
Topic: Windows 11 22H2 speed
Replies: 4
Views: 3148

Re: Windows 11 22H2 speed

skiman wrote: Wed Oct 12, 2022 1:47 am Hi,

I installed the new update of Windows 11. The speed problem isn't solved.

Meanwhile my fingerprint reader isn't working anymore, and I have problems on the network. Thanks Microsoft... :(
Hi Chris!
what kind of problems are you experiencing on the windows network?
by PedroAlex
Mon Oct 17, 2022 11:17 am
Forum: Xbase++ 2.0
Topic: xBase++ QR Code print for tax authorities pruposes.
Replies: 14
Views: 17437

Re: xBase++ QR Code print for tax authorities pruposes.

Hello,
I´m using this component.
It can be the solution for your 1.9 xbase customers.
https://www.mw6tech.com/fonts/qrcode/qrcode.html
by PedroAlex
Wed Oct 05, 2022 1:42 am
Forum: Xbase++ 2.0
Topic: xBase++ QR Code print for tax authorities pruposes.
Replies: 14
Views: 17437

Re: xBase++ QR Code print for tax authorities pruposes.

Hi Pedro attached qrcode program in xbase++ using visual foxpro dll best regard Hector Pezoa Problems with the second barcode generated. STATIC FUNC Genera(pText,pFile) ******************************* LOCAL nHandle := DllPrepareCall("BarCodeLibrary.DLL",DLL_CDECL,"SetConfiguration") LOCAL nSize := ...
by PedroAlex
Fri Jul 08, 2022 7:25 am
Forum: Xbase++ 2.0
Topic: use xbase to communicate with a rest API
Replies: 8
Views: 4313

Re: use xbase to communicate with a rest API

Roger and Chris.

both are right: The username and password must be in the header and in JSON format
I will continue to try to find a solution.

Thanks!
by PedroAlex
Fri Jul 08, 2022 7:17 am
Forum: eXpress++ Support
Topic: DcBrowse SelectItem on a touchscreen
Replies: 9
Views: 3649

Re: DcBrowse SelectItem on a touchscreen

Found a solution for this problem!

ITEMMARKED is the solution!

dataArea:lbClick does not upgrade de mouse position cursor and causes the problem I reported!

Attached the sample working correctly.
Teste_2033.rar
(286.77 KiB) Downloaded 219 times
by PedroAlex
Fri Jul 08, 2022 4:15 am
Forum: Xbase++ 2.0
Topic: use xbase to communicate with a rest API
Replies: 8
Views: 4313

Re: use xbase to communicate with a rest API

I made these changes but I still don't get the first step. //============================================================================ Function Teste_SAPHETY() LOCAL oPost LOCAL cResult LOCAL cFile := 'Token.txt' payload = { {'Username', "comercial@algarbytes.pt"}, {'Password', "ab917007041**"} }...
by PedroAlex
Fri Jul 08, 2022 3:00 am
Forum: Xbase++ 2.0
Topic: use xbase to communicate with a rest API
Replies: 8
Views: 4313

Re: use xbase to communicate with a rest API

Hi, You send the username and password as a parameter and not as a json in the body? Is this allowed by the server? With most rest-API you need to send the username and password as a base64encoded string for basic authentication. What tells the documentation of the rest-api about the authentication...