xsharp.eu • State of VFP in X#? - Page 2
Page 2 of 2

State of VFP in X#?

Posted: Tue Nov 12, 2019 3:51 am
by lumberjack
FoxProMatt_MattSlay wrote:IvyLeague, Kevin Clark and Cecil

Great!! Welcome aboard

State of VFP in X#?

Posted: Sun Nov 24, 2019 1:46 pm
by cecilchamp
I feel the same way, that XSharp is a viable alternative to VFP-32-bit and also can integrate developers into .NET a bit more easily than C#.

Although I have completed three C# "academic" classes/courses in different colleges, not one instructor ever addressed how to access and display data. Every time I would ask them, I got blank stares. They were strictly academics, nothing more. They only demonstrated WinForms and controls, no data.

This is a bit of a learning curve for me, but I am sure things will come together. Part of the l;earning curve is how to do FoxPro things in a language that isn't 100% compatible yet. It may never be 100% compatible, but at least there is some concrete progress in that direction.

State of VFP in X#?

Posted: Mon Nov 25, 2019 3:22 am
by wriedmann
Hi Cecil,
Although I have completed three C# "academic" classes/courses in different colleges, not one instructor ever addressed how to access and display data. Every time I would ask them, I got blank stares. They were strictly academics, nothing more. They only demonstrated WinForms and controls, no data.
Maybe this is a more common approach in the Xbase language: the importance of the data.
Normally business applications (and that is from what I'm living) are centered about the data, and very often I have seen the same behavior as you describe.

But in fact, both a Windows Forms application and a WPF application can deal with data very well, through the databinding facilities (they are more evolved in WPF, but they also work very well with Windows Forms).
There should be samples around how to use databinding in Windows Forms and WPF with DBF databases - maybe I could put a few things together.

Unfortunately these samples are not using the "command" language approach that is common to the VFP world, but the object oriented approach (common to languages like C#, Java, VO, ... ).

Wolfgang

State of VFP in X#?

Posted: Mon Nov 25, 2019 11:01 pm
by cecilchamp
Wolfgang, that would actually be very helpful. Thank you!

State of VFP in X#?

Posted: Tue Nov 26, 2019 5:02 am
by wriedmann
Hi Cecil,
I will put some things together the next days.
Wolfgang