Search found 111 matches

by Irwin
Sun Jun 07, 2026 4:41 pm
Forum: Product
Topic: VO and Core mixed
Replies: 4
Views: 90

Re: VO and Core mixed

Hi Horst,

Yes it's possible. The dialect is set at project level, not per file. In X#, Core is the base dialect and all specific dialects (VO, FoxPro, Vulcan, etc) are supersets that include Core syntax.

Regards,

Irwin
by Irwin
Tue Apr 21, 2026 6:48 am
Forum: Visual FoxPro
Topic: future of VFP 9.0
Replies: 5
Views: 951

Re: future of VFP 9.0

Hi Elke,

We are working actively to get the most compatibility of the FoxPro dialect. The next 3.0 version will include a lot of changes regarding 2.x series including new built-in functions, fixes and improvements on auto-array creation.

Our plan is simple:

- Implement all built-in and OOP to ...
by Irwin
Tue Mar 03, 2026 11:24 am
Forum: Product
Topic: XIDE Dark Mode?
Replies: 14
Views: 3065

Re: XIDE Dark Mode?


Hi Isaac,

Oh, you're right, indeed the themes functionality is not included in the plugins in the downloads area. Not sure where I had downloaded it from, maybe Irwin had sent it directly to me.. I don't see this in Irwin's git repo either. Irwin, can you please check?


Hi Chris,

I noticed ...
by Irwin
Sun Feb 08, 2026 1:25 pm
Forum: Product
Topic: Use AI to explore XSharp (across the entire GitHub repository)
Replies: 5
Views: 1213

Re: Use AI to explore XSharp (across the entire GitHub repository)

Hi xinjie,

Thanks for sharing the link. That's really amazing.

Irwin.
by Irwin
Fri Jan 09, 2026 7:53 am
Forum: Product
Topic: XIDE Dark Mode?
Replies: 14
Views: 3065

Re: XIDE Dark Mode?

You're right. The wxThemes.json is not included in the zipped folder. Please use the version I've attached and let me know if it works.

Irwin.
by Irwin
Fri Jan 02, 2026 7:02 pm
Forum: Product
Topic: XIDE Dark Mode?
Replies: 14
Views: 3065

Re: XIDE Dark Mode?

Hi mindfulvector,

Do you like this style?

https://gcdnb.pbrd.co/images/uGTaK0IipA0G.png?o=1

If so, go to the download section and download the "Xide Plugins from Irwin". Here's the direct link: https://www.xsharp.eu/itm-downloads/download?path=XIDE%2BPlugins%252FwxPlugins_v002.zip

Inside the ...
by Irwin
Sat Dec 27, 2025 6:41 pm
Forum: Product
Topic: Translating C# to X#
Replies: 10
Views: 3462

Re: Translating C# to X#

Hi Kees,

In X#, the => operator is not a general lambda operator like in C#. That's why this fails:

FirstOrDefault(r => r:Checked) // parser error


However, X# does allow LINQ-style shorthand inside a codeblock { }, so this is valid:

FirstOrDefault({ r => r:Checked })


This shorthand is ...
by Irwin
Thu Dec 18, 2025 3:49 pm
Forum: Product
Topic: Path gets messed up on XSharp reinstall
Replies: 3
Views: 1139

Re: Path gets messed up on XSharp reinstall

Thanks for reporting this.

The merged PATH entries clearly indicate that the ; separator is being lost during the reinstall; which points to an installer issue when updating the PATH variable. We'll take a closer look at how the installer modifies PATH during reinstall/update.

Irwin.
by Irwin
Tue Dec 16, 2025 8:47 pm
Forum: Visual FoxPro
Topic: Manejador de Reportes
Replies: 1
Views: 669

Re: Manejador de Reportes

Hola Gerardo,

Muy buena pregunta, y además muy habitual entre los Foxeros donde el sistema de reportes forma parte del mismo lenguaje y del runtime. Actualmente no existe un migrador automático "one-click" de reportes FoxPro a un reporteador concreto de .NET; el motivo principal es que, a ...
by Irwin
Sun Dec 14, 2025 8:47 pm
Forum: Visual FoxPro
Topic: STRCONV(), take #2
Replies: 4
Views: 947

Re: STRCONV(), take #2

Hi Antonio,

I have great news! I have just submitted the PR with the full implementation of STRCONV(), heavily based on your code.

I want to thank you for providing such a complete logic foundation. It saved us a lot of time.

Implementation Notes:
To align your code with the current X# Runtime ...