Search found 2947 matches

by Chris
Tue Mar 03, 2026 9:25 am
Forum: Product
Topic: XIDE Dark Mode?
Replies: 11
Views: 892

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?
by Chris
Fri Feb 27, 2026 8:46 pm
Forum: Product
Topic: XIDE Dark Mode?
Replies: 11
Views: 892

Re: XIDE Dark Mode?

HI Isaac,

Which XIDE version are you using? Could be an older one, while the plugin depends on some functionality which was added later.
by Chris
Tue Feb 24, 2026 1:21 pm
Forum: Product
Topic: XIDE Dark Mode?
Replies: 11
Views: 892

Re: XIDE Dark Mode?

Hi Isaac,

Agreed, makes sense to use the background color also for the find results painting, will do that now.

Regarding the themes plugin, are you getting any error, or simply the menu items are not available? Did you put the plugin dll in the XIDE\Plugins folder?
by Chris
Fri Feb 20, 2026 8:24 pm
Forum: Chit-Chat
Topic: Where are you?
Replies: 5
Views: 308

Re: Where are you?

Hi Karl,

Needed a little time to recover :)

Potsdam short review is incoming, about the beta, it's being tested extensively, if you check in github there are plenty tickets opened for it, so we're looking into them. In general it works well enough already, but as expected there are some issues ...
by Chris
Tue Feb 03, 2026 8:37 am
Forum: Deutsches Forum
Topic: Kompatibilität VO vs. X#
Replies: 6
Views: 534

Re: Kompatibilität VO vs. X#

Hi Franz,

Ah, OK, I thought you wanted to use the REF syntax. In .Net, you cannot have strongly typed functions, have parameters typed without REF and then call them with arguments by reference. You have to indicate that the parameters need to be passed by reference:

FUNCTION GetKndText(nKndid ...
by Chris
Wed Jan 28, 2026 11:20 pm
Forum: Chit-Chat
Topic: Info: how to get rid of NuGet references
Replies: 2
Views: 297

Re: Info: how to get rid of NuGet references

Hi DIck,

Don't even get me started about nuget...

Good thing at least is that nuget package files are actually zip files, which contain the dll file which is actually used. So you can just get the dll from it, add a normal reference and get rid of that nuget thing completely...
by Chris
Mon Jan 26, 2026 11:33 am
Forum: Deutsches Forum
Topic: Kompatibilität VO vs. X#
Replies: 6
Views: 534

Re: Kompatibilität VO vs. X#

Hi Franz,

In VO the "@" operator is used for both "pass var by reference" and for "Address of", which are different things in .Net.

The proper way to do this in .Net/X#, is to use the REF keyword instead of "@", to let the compiler know that you are passing a var by reference.

You can also enable ...
by Chris
Mon Jan 26, 2026 11:29 am
Forum: Product
Topic: Event handler changes not in GIT
Replies: 10
Views: 776

Re: Event handler changes not in GIT

Hi Dick,

When you add evenhandlers in the designer (in VS), is like doing anything else code related, the changes are applied directly to code. So either Kees did not commit all the code changes, or you tried to merge yours and his changes and missed his code changes related to the event handlers.
by Chris
Fri Jan 16, 2026 9:48 am
Forum: Product
Topic: Syntax highlighting control
Replies: 10
Views: 1139

Re: Syntax highlighting control

Hi Isaac,

I started looking again into this to implement what we discussed, but I noticed you have not subscribed to the FOX program. We normally do such custom development only to paying customers, as they are the ones that help funding this project to keep it going, so would you be willing to ...
by Chris
Sun Jan 11, 2026 11:25 pm
Forum: Product
Topic: C# and .NET to X# question
Replies: 1
Views: 379

Re: C# and .NET to X# question

Hi Jan,

Sorry for the late response, been offline for a few days.What is the exact error message/exception you are getting? The X# from c# code translation looks good to me, so it's probably a logic error in the code, or a wrong file etc. Hope you did not use ChatGPT to get the original c# code :)