Search found 34 matches

by Bernhard Mayer
Fri Oct 17, 2025 12:07 pm
Forum: 3rd party products
Topic: ReportPro 2.x .NET PDF export with wingdings
Replies: 2
Views: 5914

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

Hi Robert!

Created https://github.com/X-Sharp/XSharpPublic/issues/1751, I hope it was done properly.

BR,
Bernhard
by Bernhard Mayer
Tue Oct 14, 2025 10:07 am
Forum: 3rd party products
Topic: ReportPro 2.x .NET PDF export with wingdings
Replies: 2
Views: 5914

ReportPro 2.x .NET PDF export with wingdings

Dear fellow X#'ers,

I want to use some symbols of the Wingdings/Wingdings 2/Wingdings 3/Webdings charset in one of our reports; whereas those symbols are printed fine when doing the direct printout, the PDF export does not show the proper symbols.

Sample: The string "OPR" is supposed to show 3 ...
by Bernhard Mayer
Fri May 16, 2025 5:01 am
Forum: Deutsches Forum
Topic: Windows 11 Drucker auslesen
Replies: 26
Views: 20811

Re: Windows 11 Drucker auslesen

Hi Martin,

what about using the.NET classes? I suppose they know how to read their own settings. :-)


// using System.Drawing.Printing
LOCAL aPrinters AS PrinterSettings.StringCollection
aPrinters := PrinterSettings.InstalledPrinters


I think the other code was taken from the famous Ivo Wessel ...
by Bernhard Mayer
Tue Sep 17, 2024 5:25 am
Forum: Product
Topic: Session proposals for the X# Summit
Replies: 20
Views: 11640

Re: Session proposals for the X# Summit

Hi Chris!

This is my list; a-sessions are of more importance, b-sessions are nice-to-have.

BR,
Bernhard

3. Github Copilot - a
4. Using X# to the max - a
8. X# Notebooks - a
10. Git for Dummies - a
11. New Language Features - a
12. Consuming AI models - a
13. From VOGUI to XGUI (VOGUI compatible ...
by Bernhard Mayer
Mon Aug 05, 2024 1:02 pm
Forum: Product
Topic: X# shop: Links do not respond
Replies: 2
Views: 2017

Re: X# shop: Links do not respond

It did work now, thx.
by Bernhard Mayer
Wed Jul 31, 2024 10:34 am
Forum: Product
Topic: X# shop: Links do not respond
Replies: 2
Views: 2017

X# shop: Links do not respond

I just wanted to renew our X# subscription via shop page but unfortunately the links do not respond although I'm logged in.
by Bernhard Mayer
Thu Aug 11, 2022 3:06 pm
Forum: Product
Topic: End of Visual Studio 2017 support
Replies: 6
Views: 3253

End of Visual Studio 2017 support

Hi Robert!
Currently VS 2017 is still my preferred development environment.
BR,
Bernhard
by Bernhard Mayer
Wed Feb 02, 2022 4:34 pm
Forum: Product
Topic: X# 2.10 and String2Psz() in struct members
Replies: 1
Views: 1867

X# 2.10 and String2Psz() in struct members

<r>Dear X# DevTeam!<br/>
<br/>
The new X# 2.10 compiler has a new warning "String2Psz() and Cast2Psz() should only be used for variables that have a 'local' scope. The allocated PSZ will be automatically released once the current function/method ends."<br/>
<br/>
Imagine a struct (Either global or ...
by Bernhard Mayer
Tue Jan 25, 2022 8:14 am
Forum: Product
Topic: Multidimensional array syntax
Replies: 3
Views: 2264

Multidimensional array syntax

Interesting, it does compile now ... well, the problem is definitely located before the computer :oops:

THX & best regards,
Bernhard
by Bernhard Mayer
Tue Jan 25, 2022 7:54 am
Forum: Product
Topic: Multidimensional array syntax
Replies: 3
Views: 2264

Multidimensional array syntax

<r>Dear fellow X#'ers!<br/>
<br/>
In times of collections and lists I barely have any need for it but what's the syntax for creating and initializing a multidimensional .NET array?<br/>
<br/>
I tried something like
<CODE><s>[code]</s><i>
</i>LOCAL aData AS STRING[,]
aData := <STRING>{ {"OneOne ...