Search found 28 matches
- Mon Apr 10, 2017 6:37 pm
- Forum: Xbase++ 2.0
- Topic: PGDBE testing
- Replies: 9
- Views: 26422
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...
- Sat Feb 11, 2017 4:07 pm
- Forum: Xbase++ 2.0
- Topic: Using Universal SQL with FOXCDX databases
- Replies: 7
- Views: 22078
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
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
- Mon Sep 05, 2016 6:11 pm
- Forum: Xbase++ 2.0
- Topic: Alaska Updates
- Replies: 1
- Views: 12361
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.
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.
- Tue Mar 08, 2016 9:00 pm
- Forum: Xbase++ Support
- Topic: How to create a WSDL web service
- Replies: 36
- Views: 81658
- Sun Feb 28, 2016 8:23 pm
- Forum: eXpress++ Support
- Topic: DC_WorkArea2Excel() size limit
- Replies: 26
- Views: 52844
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...
- Tue Feb 16, 2016 9:32 pm
- Forum: Business Opportunities
- Topic: Xbase++/Express++/FoxPro Staff Programmer needed
- Replies: 8
- Views: 72252
- Sat Feb 13, 2016 6:37 pm
- Forum: Business Opportunities
- Topic: Xbase++/Express++/FoxPro Staff Programmer needed
- Replies: 8
- Views: 72252
Re: Xbase++/Express++/FoxPro Staff Programmer needed
One question, can be work by internet ?
I ask, because I'm not in the US.
I ask, because I'm not in the US.
- Mon Dec 07, 2015 4:43 pm
- Forum: Xbase++ Support
- Topic: Testing internet connection
- Replies: 15
- Views: 36263
Re: Testing internet connection
Always, Your Welcome
- Sun Dec 06, 2015 8:17 pm
- Forum: Xbase++ Support
- Topic: Testing internet connection
- Replies: 15
- Views: 36263
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
FUNCTION VerifyInternet()
LOCAL lReturn
IF InternetGetConnectedState(0,0) <> 0
lReturn := .T.
ELSE
lReturn := .F.
ENDIF
RETURN lReturn
- Thu Aug 13, 2015 9:31 am
- Forum: User Contributions
- Topic: DXE LIB : enhance native Controls for Xbase++
- Replies: 16
- Views: 65783
Re: DXE LIB : enhance native Controls for Xbase++
Great, Thanks !!