Search found 18 matches
- Sat Jan 17, 2026 12:06 pm
- Forum: eXpress++ Support
- Topic: dc_browse will not write data
- Replies: 0
- Views: 882
dc_browse will not write data
why dc_browse will not write data in cell: * ---- ARTIKLI (GROUP) ---- dbselectArea(cDbfSt) dbsetfilter({||alltrim(doc_id)==alltrim(cId)}) dbgotop() @ 10.5,0 DCGROUP oGroup2 CAPTION ' Artikli sa otpremnice ' SIZE 74, 6 * ---- ARTIKLI (BROWSE) ---- @ 0.5,0.5 DCBROWSE oBrowse ALIAS cDbfSt SIZE 73,5 PR...
- Mon Sep 23, 2024 11:01 am
- Forum: eXpress++ Support
- Topic: HttpClient() Chilkat replacement code
- Replies: 3
- Views: 17275
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: 17275
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: 15094
- Thu Mar 14, 2024 2:41 pm
- Forum: eXpress++ Support
- Topic: Postgre ISAM command
- Replies: 9
- Views: 34182
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: 12878
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: 12878
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: 24046
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: 8277
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: 11464
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...