Search found 110 matches

by Irwin
Thu Feb 20, 2025 10:00 am
Forum: Product
Topic: XIDE: Case synchronisation with "Void"
Replies: 7
Views: 2066

Re: XIDE: Case synchronisation with "Void"


Hi Irwin,

Does it happen also in every other place where you use "VOID"? And if you change (edit) the casing manually, does XIDE cahnge it back to "Void" again?


Hi Chris,

As soon as I type "as" the intellisense shows up this options: https://gcdnb.pbrd.co/images/O2BLMSU2VLFN.png?o=1

But if ...
by Irwin
Wed Feb 19, 2025 6:05 pm
Forum: Product
Topic: XIDE: Case synchronisation with "Void"
Replies: 7
Views: 2066

Re: XIDE: Case synchronisation with "Void"


Hi Irwin,

Yeah, XIDE voids the selection for void :)

Seriously though, I can't reproduce this, does it happen with the word void everywhere, or does it need to be in specific places for it to happen? Also what does it convert it to, lower,UPPER,Proper case?

Is "void" included also in keywords ...
by Irwin
Wed Feb 19, 2025 4:06 pm
Forum: Product
Topic: XIDE: Case synchronisation with "Void"
Replies: 7
Views: 2066

XIDE: Case synchronisation with "Void"

Hi Chris,

I have set my "Keywords" and "Functions" with "None" in my Preferences->Editor settings but I noticed the "Void" keyword skips my settings :-)
by Irwin
Fri Feb 14, 2025 12:19 pm
Forum: Product
Topic: XIDE: Unexpected behavior in the editor
Replies: 2
Views: 1267

XIDE: Unexpected behavior in the editor

Hi Chris,

Look at this picture https://snipboard.io/lFvOdM.jpg

I suspect the editor believes I'm performing a TEXT / END TEXT (because of the variable name) operation because is highlighting everything as a string but that's not true. When I delete or comment this line text := row["text ...
by Irwin
Thu Feb 13, 2025 11:30 am
Forum: Product
Topic: Enabling Nullable Annotations in X# Projects
Replies: 3
Views: 1478

Re: Enabling Nullable Annotations in X# Projects


Irwin,

We are not really supporting the nullable compiler flag.
Since our compiler source inherits from Roslyn, you can indeed add the command line option -nullable+, and it may work, but we did not properly test this yet.
We also do not yet support the #nullable preprocessor command

Robert ...
by Irwin
Thu Feb 13, 2025 11:12 am
Forum: Product
Topic: Enabling Nullable Annotations in X# Projects
Replies: 3
Views: 1478

Enabling Nullable Annotations in X# Projects

Hi Chris and Robert,

I've encountered an issue with nullable annotations. Here's what's happening:

Nullable Type Warning: I'm using a nullable type in my code, and I'm getting a warning about it ( warning XS8632: The annotation for nullable reference types should only be used in code within a ...
by Irwin
Wed Feb 05, 2025 5:09 pm
Forum: Product
Topic: XIDE: Modify value in debug mode
Replies: 1
Views: 1088

XIDE: Modify value in debug mode

Hi Chris,

I modified a string variable value in debug mode (Locals Tab->Right Click->Modify Value) but the change doesn't get applied. What am I doing wrong?
by Irwin
Fri Jan 31, 2025 3:55 pm
Forum: Product
Topic: XIDE: Rename file
Replies: 2
Views: 1576

Re: XIDE: Rename file

wriedmann wrote: Fri Jan 31, 2025 1:14 pm Hi Irwin,
in this case you should change the name adding a normal character to it, and then remove that character after the successful rename.
Wolfgang
Thanks Wolfgang, nice trick but I'm still thinking this should be enhanced someway.
by Irwin
Fri Jan 31, 2025 1:05 pm
Forum: Product
Topic: XIDE: Rename file
Replies: 2
Views: 1576

XIDE: Rename file

Hi Chris,

I have created a file but I added (by mistake, copy & paste) a blank space at the beginning of the name, egg: " File.prg" so I tried to rename it by pressing F2 and removing the blank space but when I save (hit enter) it doesn't change the name. I think XIDE thinks the name hasn't changed ...
by Irwin
Tue Jan 28, 2025 6:35 pm
Forum: Product
Topic: XIDE: IIF() function
Replies: 4
Views: 2000

Re: XIDE: IIF() function


Guys,

That's because this isn't a keyword nor a function, not sure if it can be even called an intrinsic function or an operator (handled directly by the compiler, it's not defined anywhere). Have you tried adding it in keywords.cfg so it will be highlighted as a keyword?


Hi Chris,

I put the ...