XSharpPublic
XSharpPublic copied to clipboard
Public repository for the source code for the XSharp Compiler, Runtime, Project System and Tools.
See below for some issues of intellisense with generics in the VS editor. I know some of those are not working in the new XIDE with Mono.Cecil either, I was...
**Is your feature request related to a problem? Please describe.** When using the VS performance profiler, we cannot select an XSharp project as a Startup target. We can choose an...
Please make it possible to fill a DataTable from an AdoRecordSet as discussed via e-mail on Feb. 11, 2025. "Dat vullen van een datatable uit een AdoRecordSet, daar moet ik...
With X# version 2.23, subscriber version, "Uncomment the selected lines" in Visual Studio 2019 removes not only the double slashes (//) but also all the preceding tabs and spaces. So...
From https://www.xsharp.eu/forum/topic?p=33785#p33785 ``` FUNCTION Start() AS VOID LOCAL cDbf AS STRING LOCAL cTarget AS STRING cDbf := "c:\dbf\testcopy" cTarget := "c:\dbf\target" DbCreate(cDbf,{{"FLD1","N",10,5},{"FLD2","C",10,0}}) DbUseArea(TRUE,,cDbf,"source") DbAppend();FieldPut(1,1);FieldPut(2,"A") DbAppend();FieldPut(1,2);FieldPut(2,"B") COPY TO c:\dbf\target VIA "DBFCDX"...
So far I detected 7 problems running a script via execscript: **1. parameters - only 3 parameters are recognized** parameters a,b,c,d,e,f,g,h a,b,c //=> ok d,e,f,g,h //=> NIL return 0 **2....
Messages for XGUI classes only go through the wndproc event handler on the underlying forms but are not passed to the windows dispatch methods. Migrated code relying on processing the...
Intellisense (member completion, mouse tooltips etc) does not include information about class fields defined with no visibility modifier. Of course not an urgent problem. ``` DEFINE CLASS TestClass AS Custom...
https://www.xsharp.eu/forum/topic?p=33727#p33727 Wolfgang suggests: Personally I could see several possibilities: - XPorter recnognizes the end class that is present in the conditional compilation and does not creates a new one -...
https://www.xsharp.eu/forum/topic?p=33738#p33738 Probably need to create a separate page for VOXporter. Make sure the code tags are explained: {VOXP:COM} : Comment current line {VOXP:UNC} : Uncomment {VOXP:DEL} : Delete line TEXTBLOCK...