Search found 2505 matches

by robert
Sun Feb 08, 2026 1:22 pm
Forum: Product
Topic: Use AI to explore XSharp (across the entire GitHub repository)
Replies: 5
Views: 495

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

Xinjie,
This is fascinating. I find the descriptions overall very good. Is this based on the source code only, or does this include information from others sources as well?

Robert
by robert
Tue Jan 20, 2026 5:19 pm
Forum: Product
Topic: Event handler changes not in GIT
Replies: 10
Views: 744

Re: Event handler changes not in GIT

Dick,
Git does not "know" anything about event handlers or any kind of code.
It works at the file level and compares changes between the original and the changed code.
When your event handlers are no longer there, then there was an error when merging the changed code and the original code.

Robert
by robert
Sun Jan 18, 2026 10:29 pm
Forum: Product
Topic: Macro code in preprocessor?
Replies: 1
Views: 229

Re: Macro code in preprocessor?

Isaac,
If you are building with VS/MdBuild then you can create a build task that generates a file with this info and add that file as Compile Item to the build script.

Robert
by robert
Wed Jan 14, 2026 4:08 pm
Forum: VO & Vulcan
Topic: OLEAutoObject question
Replies: 2
Views: 311

Re: OLEAutoObject question

Dick,

Apparently, Chilcat has registered the COM component . The OleAutoObject class searches the registry for the progid "Chilkat_9_5_0.Global"
and from there finds the DLL that implements this com component.

Similarly Microsoft Word is registered here:

HKEY_CLASSES_ROOT\Word.Application

It ...
by robert
Thu Dec 11, 2025 2:05 pm
Forum: Product
Topic: XIDE high DPI support
Replies: 12
Views: 1295

Re: XIDE high DPI support

Chris,
I was having some problems with my eyes last week and had to work with my multi focal glasses.
I found the fonts in XIDE difficult to read.
Can you add an option to change the fonts of the menu, project window etc?
That would be really nice.
It would be enough to be able to increase/decrease ...
by robert
Sun Nov 23, 2025 9:13 pm
Forum: VO & Vulcan
Topic: Olewebbrowser exception despite errorhandler
Replies: 5
Views: 831

Re: Olewebbrowser exception despite errorhandler

Dick,


1 How can the exact same error re-appear despite the error handler>


No idea. Are you sure that the customer is running the new version of the EXE?


> And even better, is there a way to find the cause of the error? There is no reason to assume anything has changed or anything wrong is ...
by robert
Fri Nov 21, 2025 8:32 am
Forum: Product
Topic: VS 2026
Replies: 9
Views: 960

Re: VS 2026

Guys,
Our installer runs a tool to check which versions of VS are installed on your machine (see attachment).
When the last installer was created, there was no VS 2026 and the installer API does not include the "name" of the VS version.
So the installer "guesses" VS 2022. This will not be a problem ...
by robert
Thu Oct 16, 2025 11:36 am
Forum: 3rd party products
Topic: ReportPro 2.x .NET PDF export with wingdings
Replies: 2
Views: 5614

Re: ReportPro 2.x .NET PDF export with wingdings

Bernhard,
Can you create a ticket in our X# repo on Github for this, so this will not be forgotten and so you will be notified when we work on this?

Robert
by robert
Tue Oct 14, 2025 8:09 am
Forum: Product
Topic: VO vs X# performance
Replies: 10
Views: 2822

Re: VO vs X# performance

Wolfgang,
That is an excellent idea. I will write something and will produce an article in November

Robert
by robert
Mon Oct 13, 2025 4:26 pm
Forum: Product
Topic: VO vs X# performance
Replies: 10
Views: 2822

Re: VO vs X# performance

Basile,



From my understanding :
- any method using USUAL parameters will generate late bound code


No that is not correct. This will not generate late bound code, but will generate a method call with usual parameters. If the method is known at compile time (the variable left of the ...