Search found 110 matches

by Irwin
Wed Apr 09, 2025 1:34 pm
Forum: Product
Topic: XIDE Plugin System: Delete all BreakPoints
Replies: 2
Views: 1391

XIDE Plugin System: Delete all BreakPoints

Hi Chris,

Please add an independent method in the plugin system that deletes all Breakpoints, Watches and Bookmarks. That would be cool because I'm working in a large project and I put several break points in the code to debbug.

thanks.
by Irwin
Wed Apr 02, 2025 7:40 am
Forum: Product
Topic: X#: compiler error
Replies: 4
Views: 1713

Re: X#: compiler error

Chris wrote: Tue Apr 01, 2025 10:45 pm Hi Irwin,

Thanks! Still can't reproduce it though (compiler properly reports error XS9002: Parser: mismatched input 'Method'), so apparently this is fixed already in our current build. New version should be out in a couple weeks.
Thank you Chris, good to know it is fixed already.

regards.
by Irwin
Tue Apr 01, 2025 7:38 pm
Forum: Product
Topic: X#: compiler error
Replies: 4
Views: 1713

Re: X#: compiler error

Hi Chris,

I'm attaching the Test.[txt] xipef file showing the error. I've even unchecked all compiler options and the error persists.

regards.
by Irwin
Tue Apr 01, 2025 1:06 pm
Forum: Product
Topic: X#: compiler error
Replies: 4
Views: 1713

X#: compiler error

Hi Robert,

I accidentally discovered this issue:


class Test
private @@Method
constructor
var test1 := i"Method is: {Method}"
end constructor
end class


I have set the /enforceself compiler option but I forgot to prefix the Method property inside the interpolation string and the compiler ...
by Irwin
Sat Mar 29, 2025 11:50 am
Forum: Product
Topic: XIDE: case synchronisation
Replies: 1
Views: 1065

XIDE: case synchronisation

Hi Chris,

I have my keywords and functions set to "Lower" in the Editor->Case sinchronisation group panel. But this setting does not allow me to write Func<T> because is setting the Func to lowercase "func<T>" and the compiler complais because I use the /cs (case sensitive type names) compiler ...
by Irwin
Mon Mar 17, 2025 8:29 am
Forum: Product
Topic: XIDE: Collapse all tree nodes
Replies: 4
Views: 1681

Re: XIDE: Collapse all tree nodes

FFF wrote: Sat Mar 15, 2025 9:54 am Irwin,
the "+" in front of the root projekt node?
Hi FFF, yes, this looks like the most logical option and actually it collapses all nodes but keeping their state (collapsed, expanded) which means it really doen't collapse each node (like VS).

regards.
by Irwin
Sat Mar 15, 2025 9:42 am
Forum: Product
Topic: XIDE: Collapse all tree nodes
Replies: 4
Views: 1681

XIDE: Collapse all tree nodes

Hi Chris,

Do we have a (button, shortcut, submenu) to Collapse all tree nodes? I so please tell me where it is. If doesn't then please put this request in the wish list of XIDE :)

PD: I'm looking for a similar behaviour in the XIDE Plugin system but I rather asking before doing some dirty and ...
by Irwin
Tue Mar 04, 2025 11:57 am
Forum: Product
Topic: OT: Successfully Implemented an ATM Application with X# and WinForms
Replies: 3
Views: 1471

Re: OT: Successfully Implemented an ATM Application with X# and WinForms

robert wrote: Tue Mar 04, 2025 11:52 am Irwin,
Thanks for sharing. Do you have some images to show what it looks like?

Robert
Hi Robert,

I'm sorry but this is a private ATM, and I’m not allowed to share any images :( However, the interface and behavior are similar to standard ATM interfaces you see today :)
by Irwin
Tue Mar 04, 2025 11:26 am
Forum: Product
Topic: OT: Successfully Implemented an ATM Application with X# and WinForms
Replies: 3
Views: 1471

OT: Successfully Implemented an ATM Application with X# and WinForms

Hello everyone,

I wanted to share an achievement with the community: I have successfully developed, implemented, and tested an ATM application using X# with WinForms. This project was built for a private ATM system and is now running smoothly in a production environment.

Coming from a Visual ...
by Irwin
Wed Feb 26, 2025 12:42 pm
Forum: Product
Topic: XIDE: Color in escaped strings
Replies: 2
Views: 1077

Re: XIDE: Color in escaped strings

Chris wrote: Wed Feb 26, 2025 11:19 am Hi Irwin,

Ah right, it's the "ColorEscaped" option in XIDE.cfg, but I forgot to add a Preferences color entry for it, will do that now. Through the plugin system, you can access this through EditorColor.EscapedLiteral
Thanks Chris, I'll update the plugin :)