Difference between revisions of "Category:VFP Function Differences"

From Lianjapedia
Jump to: navigation, search
(Created page with "This is a list of known function differences between Lianja and Visual FoxPro.")
 
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
This is a list of known function differences between Lianja and Visual FoxPro.
 
This is a list of known function differences between Lianja and Visual FoxPro.
 +
 +
 +
 +
* [[CURDIR()]]
 +
VFP does not return the drive letter and required SYS(5), Lianja includes the drive letter as part of the result.
 +
 +
VFP returns: \Lianja\data\southwind
 +
 +
Lianja returns: C:\Lianja\data\southwind
 +
 +
* [[GETFILE()]]
 +
Argument syntax difference in listing desired file type. Certain other parameters ignored.
 +
 +
VFP example: getfile('CSV:csv;DBF:dbf', 'Load CSV or DBF File', 'Load File', 0, 'Load Monthly Update')
 +
 +
Lianja example: getfile('CSV(*.csv);;DBF(*.dbf);;', 'Load CSV or DBF File', 'Load File', 0, 'Load Monthly Update')
 +
 +
[[Category:Documentation]]

Latest revision as of 04:47, 3 June 2013

This is a list of known function differences between Lianja and Visual FoxPro.


VFP does not return the drive letter and required SYS(5), Lianja includes the drive letter as part of the result.

VFP returns: \Lianja\data\southwind

Lianja returns: C:\Lianja\data\southwind

Argument syntax difference in listing desired file type. Certain other parameters ignored.

VFP example: getfile('CSV:csv;DBF:dbf', 'Load CSV or DBF File', 'Load File', 0, 'Load Monthly Update')

Lianja example: getfile('CSV(*.csv);;DBF(*.dbf);;', 'Load CSV or DBF File', 'Load File', 0, 'Load Monthly Update')

This category currently contains no pages or media.