Search found 17 matches
- Mon Sep 23, 2024 11:01 am
- Forum: eXpress++ Support
- Topic: HttpClient() Chilkat replacement code
- Replies: 3
- Views: 9439
Re: HttpClient() Chilkat replacement code
Roger, I found a Chilkat solution for this and it works very well... LOCAL pcSubjectCN:='ABCD Megasoft' LOCAL cUr:l='https://api.sandbox.suf.purs.gov.rs/api/v3/sdc/commands' loHttp := CreateObject('Chilkat_9_5_0.Http') *--certificate from card (working....) *loCert := CreateObject('Chilkat_9_5_0.Cer...
- Thu Aug 29, 2024 9:30 am
- Forum: eXpress++ Support
- Topic: HttpClient() Chilkat replacement code
- Replies: 3
- Views: 9439
HttpClient() Chilkat replacement code
Hello everybody! Does anyone know a chilkat replacement for this Xbase++ code: *------------Xbase++ code LOCAL pcSubjectCN:='ABCD Megasoft' cUrl='https://api.sandbox.suf.purs.gov.rs/api/v3/sdc/commands' oHC:=HttpClient():new( cURL ) oHC:setTimeout(,10000,,10000) oHC:httpRequest:setHeader( "Accept", ...
- Thu Jul 25, 2024 9:37 am
- Forum: eXpress++ Support
- Topic: Google Drive
- Replies: 2
- Views: 9657
- Thu Mar 14, 2024 2:41 pm
- Forum: eXpress++ Support
- Topic: Postgre ISAM command
- Replies: 9
- Views: 22429
Postgre ISAM command
I am working on switching my application to postgresql. Most things work fine but I have a problem with the isam command "SET FILTER TO...".
Does anyone have any replacement for this ISAM command?
Does anyone have any replacement for this ISAM command?
- Thu Jan 18, 2024 5:38 am
- Forum: eXpress++ Support
- Topic: DCBROWSE HELP
- Replies: 2
- Views: 8192
Re: DCBROWSE HELP
Problem solved, thank you very much...
- Wed Jan 17, 2024 1:18 pm
- Forum: eXpress++ Support
- Topic: DCBROWSE HELP
- Replies: 2
- Views: 8192
DCBROWSE HELP
Hello everybody I started developing software using MySQL as a database... It mostly works well but there is a problem with displaying data in DCBROWSE... When I first filter the data (before the create a browse object), everything is ok cQuery:="SELECT * FROM dbo WHERE id = 1" oTbl := MyResult():Ne...
- Sat Jul 22, 2023 8:12 am
- Forum: eXpress++ Support
- Topic: I NEED A UNIQUE NUMBER GENERATOR FUNCTION
- Replies: 8
- Views: 13980
Re: I NEED A UNIQUE NUMBER GENERATOR FUNCTION
Try
nNum:=RandomInt(0,9999999999) //--for 10 digit number
nNum:=RandomInt(0,999999999999) //--for 12 digit number
nNum:=RandomInt(0,9999999999) //--for 10 digit number
nNum:=RandomInt(0,999999999999) //--for 12 digit number
- Tue Jan 11, 2022 2:14 pm
- Forum: eXpress++ Support
- Topic: Email Importing
- Replies: 2
- Views: 4703
Re: Email Importing
Donnay is in right.... You can use only one xml file as 1 attachment in which you can store content of many (1,2,3,4....) pdf documents using the function Bin2Base64() ... e.g *------content of test.xml (attachment) <?xml version="1.0" encoding="UTF-8"?> <eMail> <AdditionalDocumentReference> <Docume...
- Mon Jan 03, 2022 12:14 pm
- Forum: Xbase++ 2.0
- Topic: dbAppend() spurious errors
- Replies: 4
- Views: 7263
Re: dbAppend() spurious errors
maybe this will help: 5xxx - ???: =========== 5381 - [BASE] - ??? Associated with (non-standard) Gen Error: "8999" Can be caused by: "OrdCreate()" when Tag Name is longer than allowed (e.g. 11 characters for a CDX Index) Can be caused by: "DbAppend()" when database (session) is opened via PGDBE Rema...
- Tue Dec 07, 2021 4:09 am
- Forum: eXpress++ Support
- Topic: Command to change the database structure
- Replies: 13
- Views: 13062
Re: Command to change the database structure
LOCAL astructure := {} aStructure := { { "KOD_OpSc" , "N", 15, 0 }, ; { "NAME_OpSc" , "C",250, 0 }, ; { "INT_INF" , "N", 19, 7 }, ; { "SUM_II" , "N", 19, 7 }, ; { "SII_PERC" , "N", 19, 7 }, ; { "RANG" , "N", 15, 0 }, ; { "ABS" , "N", 15, 0 }, ; { "PERC_FIZ" , "N", 19, 7 }, ; { "Sum_ZnGr" , "N", 19, ...