Chris Pyrgas
Chris Pyrgas
https://www.xsharp.eu/forum/topic?p=30411#p30411 I know in Visual Studio there is syntax highlighting that matches things like if/for/while statements and highlights it. This is great for small containing statements where it is easy...
In the following code, none of the RETURN commands cause a warning that the return type is missing. Additionally, the missing return value in the GET produces a bogus error...
See inline for some issues with property/assign. I also think there is a mismatch with the order of arguments/parameters when defining/calling the assign in the wrong order, but the error...
Not sure if this is supposed to work at the moment, but I'm adding it anyway: ``` XSharp.Error Argument error Callstack : [Method XSharp.RT.Functions.__FieldSet(fieldName:System.String, uValue:XSharp.__Usual):XSharp.__Usual] ``` ``` FUNCTION Start() AS...
Following results to a runtime exception: ``` FUNCTION Start( ) AS VOID DIMENSION arr(5, 5) arr[2,3] := 123 // ok ? arr[2,3] arr[1][4] := 456 // exception ? arr[1][4] ```...
https://www.xsharp.eu/forum/topic?p=29347#p29347 Create a dbf with SetAnsi(FALSE) in VO, with this code: ``` FUNCTION Start() AS INT LOCAL cDbf AS STRING SetAnsi(FALSE) cDbf := "C:\dbf\testansi" DbCreate(cDbf,{{"TXT","C",20,0}}) SetAnsi(FALSE) DbUseArea(,,cDbf) DbAppend();FieldPut(1,"öÖäÄ") ? FieldGet(1)...
For c#, VS generates an extra .xs file with a name like "\obj\Debug.NETFramework,Version=v4.8.1.AssemblyAttributes.cs" which contains a TargetFramework attribute, based on the target framework selected in the project settings. Contents of...
Open any RP3 report created with the VO version of RP3, with the (Section) property Header and Footer Bands enabled. In the X# version, this is shown as disabled. This...
The help file topic here https://xsharp.eu/itm-help/foxpro-compatibility-list lists VFP functions that are implemented or yet to be implemented. The list is mostly accurate, except for (at least those the ones I...
BLANK clause is not working correctly together with FIELDS LIKE clause Last SCATTER below with the BLANK clause assigns the actual value to the array element, and not the empty...