XSharpPublic
XSharpPublic copied to clipboard
Public repository for the source code for the XSharp Compiler, Runtime, Project System and Tools.
Hi Robert, I'm trying to rebuild a solution with the following commandline: "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\devenv.exe" "D:\Projekte\proMO\proMO.SLN" /rebuild "Release" /Out "BuildTest.log" In the log-file I get: Das Paket "XSharp...
Good morning guys I repeat this requirement here at the request of Robert but I clarify that it is the same error reported in the Xsharp forum for beta testers...
For now will keep one ticket for many issues and will keep updating it. Can later decide to divide in to multiple ones or not. 1. ComboBox:FillUsing( {"one","two","three"} ) results...
In VO, code like this is normally used: ``` method Close( oEvent ) local lClose as logic lClose := super:Close( oEvent ) if lClose oApp:UnregisterWindow( self ) endif return lClose...
See attached solution. Robert I think we can look into those VS_VOWED issues when we can sit together next month. [VOApp.zip](https://github.com/X-Sharp/XSharpPublic/files/3937391/VOApp.zip)
https://www.xsharp.eu/forum/public-product/3619-event-registration-in-class-initializer#27330 This compiles without errors: `oMenuItem := MenuItem{}{ Name := "Exit", Checked := FALSE}` This one: ``` oMenuItem := MenuItem{}{ Name := "Exit", Checked := FALSE, Click += test} FUNCTION...
The attached very simple report has a single field with font set to "Cambria". When trying to export to pdf, RP2 crashes with a System.AccessViolationException in the readUShort() method of...
**Describe the bug** I can't move a class with a method `:ToString()` from XBase++ to X# **To Reproduce .prg** ``` procedure Main() local o o := Example():new(5) ? o:ToString() return...
Attached simplified (in self contained project) form contains this code in designer.prg: ``` PRIVATE dragDropEvents1 AS DevExpress.Utils.DragDrop.DragDropEvents SELF:dragDropEvents1 := DevExpress.Utils.DragDrop.DragDropEvents{SELF:components} SELF:dragDropEvents1:DragDrop += DevExpress.Utils.DragDrop.DragDropEventHandler{ SELF, @dragDropEvents1_DragDrop() } PRIVATE METHOD dragDropEvents1_DragDrop(sender AS...
From Trevor: https://www.xsharp.eu/forum/private-product/3361-vulcan-vo-gui-form#25188 - In a VOGUI window with controls that are assigned various OwnerAlignment settings: - Add some code that repositions/resizes the controls at runtime - Try to resize...