Posts by Rodolfo Ghiggi • 111 points
3 posts
-
0
votes1
answer61
viewsA: how to import a file. ofx in VFP
Take a look at this project Ofxsharp (.NET OFX Parser).
-
6
votes5
answers1894
viewsA: Test for string fill
The code version "performatic" will give error System.NullReferenceException if the variable is null, I believe you will have to change to if (ret == null || ret.Length == 0). I took the following…
-
5
votes3
answers1988
viewsA: How many days to a date
Example with Oracle: select to_date('2017-07-21','YYYY-MM-DD') - to_date('2017-07-20','YYYY-MM-DD') from dual;