Search found 28 matches

by pedroah
Mon Apr 10, 2017 6:37 pm
Forum: Xbase++ 2.0
Topic: PGDBE testing
Replies: 9
Views: 21416

Re: PGDBE testing

Dear Chris The first thing you have to do is migrating your actual table to Postgresql with the dbfupzise tool from Alaska. It needs a xml structure to do the job, here is a tool to make it http://bb.donnay-software.com/donnay/viewtopic.php?f=7&t=1403 You can use universal sql for dbf and postgresql...
by pedroah
Sat Feb 11, 2017 4:07 pm
Forum: Xbase++ 2.0
Topic: Using Universal SQL with FOXCDX databases
Replies: 7
Views: 18470

Re: Using Universal SQL with FOXCDX databases

Thanks Roger, This is a Excellent Sample

One Question

May we use a variable in where condition, like this :

Local dDate := ctod('02/11/2017')

Select * from Invoice where ship_date = dDate

Thanks in advanced
by pedroah
Mon Sep 05, 2016 6:11 pm
Forum: Xbase++ 2.0
Topic: Alaska Updates
Replies: 1
Views: 10675

Re: Alaska Updates

Hi bwolfsohn

I recommended to you update, especially if you use PGDBE.

Note: If you need to rollback, just use workbench (Help + Update Manager ), is very easy, and works.
by pedroah
Sun Feb 28, 2016 8:23 pm
Forum: eXpress++ Support
Topic: DC_WorkArea2Excel() size limit
Replies: 26
Views: 45941

Re: DC_WorkArea2Excel() size limit

Try this, I placed notes, as best I could, I hope this help // aHeader = Array of tittles // aFields = Array of Fields // Note : Need excel to work ( Tested from Excel 2003 to 2016) PROCEDURE ExportTableToExcel( aHeader,aFields ) LOCAL oExcel LOCAL i := 1 LOCAL j := 1 LOCAL xValorColumna LOCAL nRegi...
by pedroah
Sat Feb 13, 2016 6:37 pm
Forum: Business Opportunities
Topic: Xbase++/Express++/FoxPro Staff Programmer needed
Replies: 8
Views: 48685

Re: Xbase++/Express++/FoxPro Staff Programmer needed

One question, can be work by internet ?

I ask, because I'm not in the US.
by pedroah
Mon Dec 07, 2015 4:43 pm
Forum: Xbase++ Support
Topic: Testing internet connection
Replies: 15
Views: 29195

Re: Testing internet connection

Always, Your Welcome
by pedroah
Sun Dec 06, 2015 8:17 pm
Forum: Xbase++ Support
Topic: Testing internet connection
Replies: 15
Views: 29195

Re: Testing internet connection

DLLFUNCTION InternetGetConnectedState( Integer1, Integer2 ) USING STDCALL FROM WinInet.DLL



FUNCTION VerifyInternet()
LOCAL lReturn
IF InternetGetConnectedState(0,0) <> 0
lReturn := .T.
ELSE
lReturn := .F.
ENDIF
RETURN lReturn