Search found 88 matches

by baramuse
Wed Oct 29, 2025 12:06 pm
Forum: Product
Topic: VOXPorter and description field in fieldspec
Replies: 3
Views: 161

Re: VOXPorter and description field in fieldspec


Hi Basile,

Did a quick test and seems to work ok here, there must be some difference that I'm not thinking of. Does this happen with all fieldspecs in your app(s). Can you please send me a VO module .mef (or app) with dbservers from your app to test with it here?


Hi Chris I have the .mef but I ...
by baramuse
Tue Oct 28, 2025 5:03 pm
Forum: Product
Topic: VOXPorter and description field in fieldspec
Replies: 3
Views: 161

VOXPorter and description field in fieldspec

Hi,

we've noticed that we lost one information when porting ou database definitons to X# using VOXPorter.

It looks like the "Description" field in VO does get lost and nowhere to be found in the .xsdbs nor .xsfs generated files :

in VO DB designer :
https://ibb.co/DdSpm4C

and resulting ported ...
by baramuse
Tue Oct 14, 2025 6:34 am
Forum: Product
Topic: VO vs X# performance
Replies: 10
Views: 1866

Re: VO vs X# performance

Thanks a lot for your answers !

I will dig into late bound calls using the pragma.

@VR yes I've used the performance monitor with the memory usage to detect the memory leaks, I'll have another go to try to find the bottlenecks

Fun ahead !


Thanks again.
by baramuse
Mon Oct 13, 2025 2:28 pm
Forum: Product
Topic: VO vs X# performance
Replies: 10
Views: 1866

Re: VO vs X# performance


Basile,
ADS should be almost as fast in both VO and X#.
The handling of the indexes is done by the server and not by the client.
The macro compiler could be a bit slower, but that would not explain the speed difference that you're seeing.

Thanks for clearing that


I suspect that your app has a ...
by baramuse
Mon Oct 13, 2025 1:30 pm
Forum: Product
Topic: VO vs X# performance
Replies: 10
Views: 1866

Re: VO vs X# performance


One thing for certain is that for many reasons dbf operations are slower in X# than in VO, so this could be your bottleneck.

Do you have any idea how slower ?
A lot of our customers are on ADS, shouldn't be quite the same as most of the work is done on the server side ?
Is is proportional ...
by baramuse
Mon Oct 13, 2025 12:13 pm
Forum: Product
Topic: VO vs X# performance
Replies: 10
Views: 1866

VO vs X# performance

Hi all,

I'd like to know if anyone already compared app performance with a VO pored app in X#.
Our app is pretty big and ou X# porting is almost complete (always some glitches here and there) so we have the VO app running alongside with the X# one (sharing the same data) for a smooth transition ...
by baramuse
Thu Jul 17, 2025 8:34 am
Forum: Chit-Chat
Topic: Xsharp summit 2025
Replies: 1
Views: 6477

Xsharp summit 2025

Hi everyone,

is there any plan yet for Xsharp summit 2025 ?


Cheers !
by baramuse
Thu Jan 02, 2025 11:42 am
Forum: Product
Topic: Optional parameters from X# to C#
Replies: 3
Views: 1548

Re: Optional parameters from X# to C#

Hi Chris !

and thanks for your answer but my understanding was that if I do pass a NULL to the c# function, then it should use default ?
So you're saying that as null is valid for the string argument, it does not take the default value right ?

I learned something then thanks :)
by baramuse
Wed Jan 01, 2025 2:30 pm
Forum: Product
Topic: Optional parameters from X# to C#
Replies: 3
Views: 1548

Optional parameters from X# to C#

Hi and a very happy new year to everyone !

I stumble upon a strange behaviour when calling c# functions from a x# project:

I have a c# function having an optional string parameter with a default value:

public static void DefaultParameterTest(string defautvalue = "default")
{
Console.WriteLine ...
by baramuse
Mon Nov 18, 2024 2:55 pm
Forum: Product
Topic: Calling convention of overriden methods
Replies: 4
Views: 1799

Re: Calling convention of overriden methods


Basile,
If the class is a DbServer subclass then it has to be:

PUBLIC METHOD SetFilter( cFiltre ) AS USUAL

Robert


I tried that but then it's complaining about not having a type :

Severity Code Description Project File Line Suppression State
Error XS1031 Type expected Locasyst.WebServices ...