Search found 3158 matches

by wriedmann
Wed Apr 15, 2026 5:14 am
Forum: Welcome
Topic: New User Form X#
Replies: 10
Views: 414

Re: New User Form X#

Hi Marcel,
unfortunately I'm not using ReportPro myself, but you should add the ReportPro library to the dependencies of your application, and then the compiler should find the RpReport class.
In X# you don't need OLE/COM for ReportPro at all.
Wolfgang
by wriedmann
Tue Apr 14, 2026 7:07 pm
Forum: Welcome
Topic: New User Form X#
Replies: 10
Views: 414

Re: New User Form X#

Hi Marcel,
do you have ReportPro 3 for X#?
Wolfgang
by wriedmann
Fri Mar 27, 2026 8:38 pm
Forum: Chit-Chat
Topic: epDBU DBF Administration tool
Replies: 11
Views: 653

Re: epDBU DBF Administration tool

Hi Dick,
you have defined cSep as array of char.
Therefore you have to assign a char, and in the VO dialect both " and ' can be delimiters for strings.
So, if you would like to define a char, you have to write

Code: Select all

cSep[1] := c'|'
Wolfgang
by wriedmann
Fri Mar 27, 2026 11:42 am
Forum: Product
Topic: Handling Single versus doubleclick (WPF)
Replies: 10
Views: 645

Re: Handling Single versus doubleclick (WPF)

Hi Dick,
currently we are 4 people, and only 2 of them are working in the Windows environment - the other 2 are working mainly in PHP.
Wolfgang
by wriedmann
Fri Mar 27, 2026 6:25 am
Forum: Chit-Chat
Topic: epDBU DBF Administration tool
Replies: 11
Views: 653

Re: epDBU DBF Administration tool

Hi Dick,
do you have tried to port that software to X#?
Wolfgang
by wriedmann
Fri Mar 27, 2026 6:24 am
Forum: Product
Topic: Handling Single versus doubleclick (WPF)
Replies: 10
Views: 645

Re: Handling Single versus doubleclick (WPF)

Hi Dick,
I had a single (paid) license, and then they killed the single licences and asked for a minimum of 5 user license.
But since I didn't knew about their community license, I have contracted with them and I'm paying a 250 USD monthly fee for a 5 user licence of all their products.
Wolfgang
by wriedmann
Thu Mar 26, 2026 5:12 am
Forum: Product
Topic: Handling Single versus doubleclick (WPF)
Replies: 10
Views: 645

Re: Handling Single versus doubleclick (WPF)

Hi Dick,
maybe it is better to ask the Syncfusion support. You are paying a lot of money every month, and their support is really good - every time I have asked their have delivered a working solution (in C#).
Wolfgang
by wriedmann
Wed Mar 25, 2026 2:14 pm
Forum: Product
Topic: Handling Single versus doubleclick (WPF)
Replies: 10
Views: 645

Re: Handling Single versus doubleclick (WPF)

Hi Dick,
what we have learned in VO, can also be applied to .NET and WPF, even when using 3rd party controls.
Simply subclass the Syncfusion control and add a handler of the double click.
I have done similar things in the sfDataGrid, not only for double clicks, but also for other things.
Wolfgang
by wriedmann
Tue Mar 24, 2026 8:14 am
Forum: Deutsches Forum
Topic: RegisterHotKey
Replies: 2
Views: 226

Re: RegisterHotKey

Hallo Franz,
Tastendrücke musst Du im Control abfangen, nicht im Window.
Wolfgang
by wriedmann
Fri Mar 20, 2026 5:08 pm
Forum: Deutsches Forum
Topic: FPT File korrupt
Replies: 2
Views: 284

Re: FPT File korrupt

Hallo Horst,
um das zu überprüfen, lesen ich die DBF sequentiell mit allen Feldern, und sobald ein Lesefehler auftritt, weiß ich den Datensatz, der korrupt ist.
Wolfgang