Search found 42 matches

by messaoudlazhar
Tue Sep 15, 2020 9:43 am
Forum: eXpress++ Support
Topic: Excel
Replies: 5
Views: 8180

Re: Excel

You must start each header column with character ASCII <'> (27 HEX, 39 DEC) for numeric fields to say that it is a text and not a number

good work

Messaoud Mohamed Lazhar
by messaoudlazhar
Fri Sep 04, 2020 8:55 am
Forum: phpBB Board Support
Topic: Testing
Replies: 6
Views: 12450

Re: Testing

Good,
by messaoudlazhar
Mon Aug 24, 2020 1:02 pm
Forum: Xbase++ 2.0
Topic: xBase++ QR Code print for tax authorities pruposes.
Replies: 14
Views: 18054

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

Sample tested with xbase++, controlled with QR Scanner *********************** Functions BarCodeLibrary.DLL ******************************** DLLFUNCTION SetConfiguration(nSize,nType); USING STDCALL FROM BarCodeLibrary.DLL DLLFUNCTION GenerateFile(cText,cFileOut); USING STDCALL FROM BarCodeLibrary.DL...
by messaoudlazhar
Mon May 25, 2020 12:28 pm
Forum: eXpress++ Support
Topic: How to make the system use its own font
Replies: 8
Views: 11695

Re: How to make the system use its own font

It doesn't work for vector fonts (versions 5 and later) which are based on Unicode. You need another solution. Micosoft applications such as Office, Microsoft 365, Sql Server etc. use the Unicode fonts. But several software and development tools do not always allow these options, especially since th...
by messaoudlazhar
Sun Mar 29, 2020 3:40 am
Forum: Xbase++ Support
Topic: Database access errors
Replies: 19
Views: 34076

Re: Database access errors

I encountered this problem with cdx indexes and ADS, I solved it by creating indexes with a different name than the data file (example: parts.dbf -> parts0.cdx ...) and eliminating parts.cdx
by messaoudlazhar
Sun Feb 09, 2020 1:16 am
Forum: eXpress++ Support
Topic: DcXml Encoding options
Replies: 3
Views: 6959

Re: DcXml Encoding options

I suggest function to this : METHOD DC_XmlNode:WriteXML( cFileName, lCanon, lSuppressIndent, cEncodage ) LOCAL nHandle DEFAULT cEncodage TO 'UTF-8' nHandle := FCreate(cFileName) IF nHandle <= 0 RETURN .F. ENDIF FWrite(nHandle,'<?xml version="1.0" encoding="'+cEncodage+'"?>'+CRLF) ::writeNode( nHandl...
by messaoudlazhar
Sun Jul 15, 2018 11:50 pm
Forum: Xbase++ 2.0
Topic: How to use vector fonts from ISO / IEC 8859-?
Replies: 0
Views: 7577

How to use vector fonts from ISO / IEC 8859-?

Someone used the vector fonts of ISO / IEC 8859- (1-16) to select the desired font example 8859-1 (Latin-1 or Western Europe) or 8859-6 (Latin / Arabic).
thank you
by messaoudlazhar
Mon Apr 02, 2018 11:32 am
Forum: eXpress++ Support
Topic: dbEval()
Replies: 4
Views: 8511

Re: dbEval()

False logic suppose the table is sorted on the variable JVN The array aBT contains the last values of the table corresponding to the last value of JVN since aBT is reinitialized with each change of the value of JVN. to have the same result: Static Function _GetBatchTotals() Local aBT[0], cJVN Select...
by messaoudlazhar
Mon Feb 12, 2018 4:04 am
Forum: Xbase++ 2.0
Topic: DCBROWSE headboards
Replies: 5
Views: 12162

Re: DCBROWSE headboards

hy,

See in Dc_BrowPres()
Fix height Header : XBP_PP_COL_HA_HEIGHT

Example

aBrowPres := DC_BrowPres()
AAdd(aBrowPres,{XBP_PP_COL_HA_HEIGHT, 20 }) // Height header
.
.
.


Messaoud Mohamed Lazhar
by messaoudlazhar
Tue Jun 28, 2016 4:30 am
Forum: Xbase++ Support
Topic: Update Performance Using Different DBESYS
Replies: 7
Views: 18241

Re: Update Performance Using Different DBESYS

hi, When converting my dbase since NTX to CDX, I created a procedure that converts DBT base toward FPT Procedure ConverT_NTXCDX Local FileDbf,kn,ixi,fichdbf If ! DbeSetDefault() $ "FOXDBE*FOXCDX" RETURN Endif FileDbf:=Directory("*.DBT") If len(FileDbf)>0 kn=len(FileDbf) For ixi=1 to kn BEGIN SEQUENC...