Additional runtime functions and classes

Have some feedback and input to share?
Don't be shy and drop us a note. We want to hear from you and strive to make our site better and more user friendly for our guests and members a like.
User avatar
wriedmann
Posts: 3754
Joined: Mon Nov 02, 2015 5:07 pm
Location: Italy

Additional runtime functions and classes

Post by wriedmann »

Hi Rene,

yes, I remember that lib - I have never used it because I had all what I needed already in my libs.

But yes, there is something like this needed.

And very often I see that non-VO people seems to think in a different manner.

Wolfgang
Wolfgang Riedmann
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
FFF
Posts: 1580
Joined: Fri Sep 25, 2015 4:52 pm
Location: Germany

Additional runtime functions and classes

Post by FFF »

Hi Rene,
Press? Yes, at least parts of it still are incorporated in my "base lib"...
Ah, memories ;)

Karl
Regards
Karl
(on Win8.1/64, Xide32 2.20, X#2.20.0.3)
User avatar
Chris
Posts: 4898
Joined: Thu Oct 08, 2015 7:48 am
Location: Greece

Additional runtime functions and classes

Post by Chris »

Hi Dick,

Yes, it's not always better to use FOREACH and some times it is not practical, for example if you need to know also the next item in the iteration in advance. But usually it's much better because I think makes the code more readable, it avoids any problems in using the correct amount of loop length and indexing of each element, it requires one LOCAL less, not to mention that for some cases it's the only way to iterate through the items of some complex collections, for example in HashTable/Dictionary collections.

Chris
Chris Pyrgas

XSharp Development Team
chris(at)xsharp.eu
Fab64
Posts: 63
Joined: Mon Nov 23, 2015 12:26 pm

Additional runtime functions and classes

Post by Fab64 »

Hi Wolfgang,

great idea,
however, a distinction must be made
1) extension of the runtime should be added to the runtime dll
2) classes and additional features ok to our dll

Fabrizio
User avatar
wriedmann
Posts: 3754
Joined: Mon Nov 02, 2015 5:07 pm
Location: Italy

Additional runtime functions and classes

Post by wriedmann »

Ciao Fabrizio,

For sure the development team has the possibility to add new functions to the runtime DLLs xsharp.core.dll and xsharp.vo.dll, and I'm pretty sure they will.

But I don't think these DLLs should contain code for WinForms or WPF, and I think we all will need a solid fundament of functions and classes that enhance the classes of the .NET framework.

Of course I would prefer to have the development team write such classes and functions, but AFAIK they currently don't have the time as they need to accomplish a lot of things this year to help us move our VO applications to X#.

Wolfgang
Wolfgang Riedmann
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
User avatar
softdevo@tiscali.it
Posts: 191
Joined: Wed Sep 30, 2015 1:30 pm

Additional runtime functions and classes

Post by softdevo@tiscali.it »

I agree with Wolfgang, the most urgent thing is to allow everyone to migrate their applications. The rest if it arrives is obviously useful.

Danilo
Fab64
Posts: 63
Joined: Mon Nov 23, 2015 12:26 pm

Additional runtime functions and classes

Post by Fab64 »

HI Wolfgang, Danilo,

ok.

unfortunately I do not have VO code to carry in X # but only from CLIPPER 5.2e.

In particular what kind of functions or classes do you need?
In .Net there are a thousand classes and it seems difficult for me to miss something.

Fabrizio
User avatar
rjpajaron
Posts: 364
Joined: Fri Nov 06, 2015 12:01 am

Additional runtime functions and classes

Post by rjpajaron »

Hello,

Just a request for follow up info.


Where can I find the tool (and guide) to allow me to build my own VO runtime to X#?


Thanks in advance,

Rene
User avatar
wriedmann
Posts: 3754
Joined: Mon Nov 02, 2015 5:07 pm
Location: Italy

Additional runtime functions and classes

Post by wriedmann »

Ciao Fabrizio,
In particular what kind of functions or classes do you need?
In .Net there are a thousand classes and it seems difficult for me to miss something.
if you are coming from Clipper, you may miss the picture clause from input controls.

For VO programmers, I have two more samples where I feel .NET is not as powerful as VO:
  • in VO we are used to name our controls with the field names from the database. Non-VO programmers tend to assign the correct database field to every input control in their window editor
  • in VO, we can assign a value to an edit control and have back a value of the same time after editing - numeric, date, string. .NET controls have only a text value.
It seems VO programmers have a different "education" than others, and in some places the .NET framework seems to miss functionality we are used to.
But yes, generally the .NET framework offers a lot more classes and functionality than the VO Class library ever had.

Wolfgang
Wolfgang Riedmann
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
User avatar
wriedmann
Posts: 3754
Joined: Mon Nov 02, 2015 5:07 pm
Location: Italy

Additional runtime functions and classes

Post by wriedmann »

Hi Rene,
Where can I find the tool (and guide) to allow me to build my own VO runtime to X#?
Please note that what you may call "runtime" in VO really are 3 different parts:
  • the real runtime: functions and macrocompiler: these are already in the X# runtime, currently in beta
  • the RDDs: these are in development and will be probably released in beta in the next weeks - please look at the official release plan for 2018
  • the VO class libraries: GUI, RDD, SQL, System classes: a this moment there is no utility available to convert them from VO. Currently, the System Classes and the Win32 API library can be transported with the XPorter/VO and will compile with very few changes.
Wolfgang
Wolfgang Riedmann
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
Post Reply