XSharpPublic
XSharpPublic copied to clipboard
Public repository for the source code for the XSharp Compiler, Runtime, Project System and Tools.
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...
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...
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...
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...
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...
Actually the code exists in ComboBox.prg, but is commented out
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....
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...
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:...
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 :=...