XSharpPublic
XSharpPublic copied to clipboard
Public repository for the source code for the XSharp Compiler, Runtime, Project System and Tools.
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...
All COPY STRUCTURE commands below result to error XS9002: Parser: unexpected input 'STRUCTURE' ``` FUNCTION Start( ) AS VOID LOCAL cDbf AS STRING cDbf := "test" ? DbCreate(cDbf,{{"FLD","C",30,0},{"FLD2","N",10,0},{"FLD3","N",10,0}},"DBFVFP") ? DbUseArea(TRUE,,cDbf)...
Following results to an array bound error at runtime, because of the existence of the field of type "G". Without it, it works as expected. Problem is caused because DbCopyToArray()...
https://www.xsharp.info/forum/public-product/2140-rp-2-35-expression-editor-line-breaks-solved 1. there's a bug in the parsing of the expression editor. If e.g. i put this in: "23.09.2020 Flügelschlagquartett (2 Klaviere + 2 Schlagzeuger)" + CRLF + "11.11.2020 Trio...
See https://www.xsharp.eu/forum/public-3rdpart/2479-rp3-designer-sample-application-for-x Do this both in RP3 for VO and Rp3 for X#
The USE command already exists in X# and the NEW clause is valid. However, in VFP, the command that accomplishes the same thing is ```foxpro *!* 0 is the next...