Search found 82 matches

by VR
Tue May 28, 2024 9:40 am
Forum: Product
Topic: Windows on ARM and X#
Replies: 3
Views: 119

Re: Windows on ARM and X#

Aside from the laptops, that were announced, there a developer kit, directly from Qualcomm. It can be pre-ordered now and should be available on June 18.

https://www.qualcomm.com/news/releases/ ... -snapdrago

Could be a nice device for tests.
by VR
Wed May 22, 2024 12:36 pm
Forum: Product
Topic: VS 2017 Debugger from c# Solution "The X# runtime is NOT loaded"
Replies: 13
Views: 399

Re: VS 2017 Debugger from c# Solution "The X# runtime is NOT loaded"

You could try to migrate from VS 2017 to VS 2019.
by VR
Wed Feb 28, 2024 9:10 am
Forum: Product
Topic: Native image generation
Replies: 4
Views: 550

Re: Native image generation

NGen helps to reduce the start time of the application. Here's a blogpost from microsoft and a tutorial from devexpress: https://devblogs.microsoft.com/dotnet/an-easy-solution-for-improving-app-launch-performance/ https://docs.devexpress.com/GeneralInformation/400286/build-deploy/reduce-application-...
by VR
Fri Nov 24, 2023 9:43 am
Forum: 3rd party products
Topic: Poorer performance compared to VO to X# when using the bBrowser
Replies: 4
Views: 1870

Re: Poorer performance compared to VO to X# when using the bBrowser

One benefit of using dotnet is, that you can use a Performance Profiler... Visual Studio has one, which is quite good. https://learn.microsoft.com/en-us/visualstudio/profiling/beginners-guide-to-performance-profiling?view=vs-2022 I personally use DotTrace and DotMemory from JetBains. They are payed ...
by VR
Tue Nov 07, 2023 11:25 am
Forum: Deutsches Forum
Topic: Welche Version von Visual Studio ist für 2.18 zu empfehlen
Replies: 11
Views: 2865

Re: Welche Version von Visual Studio ist für 2.18 zu empfehlen

I remember an issue, that I created some time ago regarding the Winforms Designer in VS 2022 and 32Bit component libraries... https://github.com/X-Sharp/XSharpPublic/issues/959 So the combination of VS2022 (which is 64bit) + Winforms Designer + Components imported from a 32Bit assembly doesn't work....
by VR
Wed Oct 11, 2023 8:38 am
Forum: Product
Topic: How to get an array with XML tags within only 1 node
Replies: 6
Views: 2096

Re: How to get an array with XML tags within only 1 node

Hi...

The "one-liner" for this operation is

Code: Select all

var posElements = doc.Root.Element("Zoom200")?.Elements("pos").Select(e => e.Value).ToArray() ?? Array.Empty<string>();
ChatGPT tends to write code in a more verbose way.
by VR
Tue Oct 10, 2023 8:03 am
Forum: Product
Topic: How to get an array with XML tags within only 1 node
Replies: 6
Views: 2096

Re: How to get an array with XML tags within only 1 node

Hi Dick var posElements = zoomElement.Elements("pos").Select(e => e.Value.ToArray()); e.Value is a string -> e.Value.ToArray() gives you every char of the string as array. Try this instead: var posElements = zoomElement.Elements("pos").Select(e => e.Value).ToArray(); Volkmar
by VR
Mon Oct 09, 2023 10:32 am
Forum: Product
Topic: How to get an array with XML tags within only 1 node
Replies: 6
Views: 2096

Re: How to get an array with XML tags within only 1 node

Hi, this is how ChatGPT would do it... using System; using System.Linq; using System.Xml.Linq; class Program { static void Main() { // Load the XML data from your file or string string xmlData = @"<?xml version=""1.0"" encoding=""utf-8"" standalone="...
by VR
Thu Aug 24, 2023 7:30 am
Forum: Welcome
Topic: X# Newbie
Replies: 4
Views: 1946

X# Newbie

Here's a GitHub Repo with some x# Examples, that show how to use dotnet classes.

​​​​​​​https://github.com/InfomindsAg/XSharpExamples
by VR
Mon Aug 07, 2023 5:03 pm
Forum: Chit-Chat
Topic: .NET Open source report engine and designers... what are XSHARP developers usin
Replies: 4
Views: 2197

.NET Open source report engine and designers... what are XSHARP developers usin

Hi,

there is FastReport, which has a payed and an open source offering. https://opensource.fast-report.com/

Volkmar