Search found 2955 matches

by Chris
Thu Apr 16, 2026 9:52 am
Forum: Welcome
Topic: New User Form X#
Replies: 10
Views: 441

Re: New User Form X#

Hi Marcel,

The absolute minimum is to include references to ReportPro3.Designer.dll and Classmate.Gui.dll, but to be usre, better add references to all dlls with names starting with "ReportPro3" and "Classmate".

Just in case, adding references does not mean to add the dlls as regular files ...
by Chris
Tue Apr 14, 2026 12:20 pm
Forum: Welcome
Topic: New User Form X#
Replies: 10
Views: 441

Re: New User Form X#

Hi Marcel,

I don't think you need any of that in X#, can't you just use the RpReport class to load and print the report?
by Chris
Mon Apr 13, 2026 6:36 am
Forum: Welcome
Topic: New User Form X#
Replies: 10
Views: 441

Re: New User Form X#

Hi Marcel and welcome here!

About the problem you mentioned, what is this class that you mentioned used for in the VO app code?
by Chris
Sun Mar 29, 2026 12:18 pm
Forum: Product
Topic: Handling Single versus doubleclick (WPF)
Replies: 10
Views: 655

Re: Handling Single versus doubleclick (WPF)

Hi Dick,


I don't know your company's size but the rather generous 10 developer and $ million turnover until which you can use the Community License for free works out perfectly. I get all support and new versions.

If your company is not exceeding these numbers I'd say you should apply for that ...
by Chris
Mon Mar 23, 2026 3:44 pm
Forum: Product
Topic: Documentation issues
Replies: 16
Views: 967

Re: Documentation issues

Hi Kees,

That's true, but in this case it's just cheating :)



StrToFloat() might return a FLOAT, but it is actually calling Val() which returns a usual already and then this is converted to a float. So in this particular case, by using StrToFloat() you are only adding an extra implicit conversion ...
by Chris
Mon Mar 23, 2026 11:50 am
Forum: Product
Topic: Documentation issues
Replies: 16
Views: 967

Re: Documentation issues

Hi Kees,

Not sure why this function even exists, it's an undocumented function in VO, has different parameters than the X# implementation and it is never used at all in the SDK or anywhere else in the runtime.

All it does is to call Val(), so no point using it at all. Not sure if we should add a ...
by Chris
Wed Mar 18, 2026 3:52 pm
Forum: Product
Topic: Documentation issues
Replies: 16
Views: 967

Re: Documentation issues

Hi Kees,

That's not a "regular" delegate (which is a definition of a method's parameters and argument types), but an "anonymous" delegate, or anonymous method using the delegate syntax.

I suspect this was a language feature that was introduced earlier in c#, but later a better/cleaner feature was ...
by Chris
Wed Mar 18, 2026 12:01 pm
Forum: Product
Topic: Documentation issues
Replies: 16
Views: 967

Re: Documentation issues

Guys,

I see the problem, will investigate. But I think the best way to do this is this:

Code: Select all

oPersons:Sort( {o1 AS Person, o2 AS Person => 
	LOCAL nResult AS INT
	nResult := o1:Name:CompareTo(o2:Name)
	RETURN nResult
	})
by Chris
Tue Mar 03, 2026 9:25 am
Forum: Product
Topic: XIDE Dark Mode?
Replies: 11
Views: 1394

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: 1394

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.