XSharpPublic icon indicating copy to clipboard operation
XSharpPublic copied to clipboard

Public repository for the source code for the XSharp Compiler, Runtime, Project System and Tools.

Results 197 XSharpPublic issues
Sort by recently updated
recently updated
newest added

VO menu objects are registered in the __WCMenuList array. Because this reference remains, these objects are never released. We have to adjust the Window:Destroy(), Control:Destroy() methods, as well as the...

bug
Runtime
VO

Attached simple (Dialog) window in VO has set the options "Type" to "Tab Page" and "Tab key" to "Include Parent". - After porting this to X# and opening the window...

bug
VS VO binary editor

When /vo7 is disabled, the following code results to a compiler error for all assignments from OBJECT to a typed var. VO does the same. When /vo7 is enabled, only...

bug
Compiler

In the following code, in X# build 2.20, the compiler no longer uses the enum, but the internal property Test and reports error XS1061: 'int' does not contain a definition...

bug
Compiler

The following code compiles fine. However if you replace the type in the declaration of Foo with `USUAL` then the code fails at runtime. ``` using System.Collections.Generic FUNCTION Start() AS...

Runtime

Actually the code exists in ComboBox.prg, but is commented out

bug
TypedSDK

There are the following issues with Intellisense: 1. After opening a solution, the quick info is not always working immediately. 2. Static field in combination with the static using. 3....

bug
enhancement
vs editor

The VO WED creates the code ``` oDCPassSys := comboboxex{self,ResourceID{_PASSWDEDIT_PASSSYS,_GetInst()}} ``` when a ComboBoxEx is used. With the XSharp.VOGUIClasses, the following compile error is thrown: ``` error XS1729: 'XSharp.VO.SDK.ComboBoxEx' does...

bug
TypedSDK

Following results to 3 bogus warnings on using the Test() function. It is reported only when all 3 compiler options memvar, undeclared and fox2 are enabled ``` // warning XS9073:...

bug
Compiler
FoxPro

Following VO code stores array to dbv file ``` FUNCTION Start() AS VOID LOCAL cFileName AS STRING LOCAL blob AS USUAL LOCAL a AS ARRAY cFileName := "c:\test\rdd\dbfblob" a :=...

enhancement
RDD