Search found 2519 matches

by robert
Fri Jun 12, 2026 2:38 pm
Forum: Product
Topic: Windows Update 27 May causing Report Pro 2 error
Replies: 10
Views: 636

Re: Windows Update 27 May causing Report Pro 2 error

Guys,
We will look into this asap.
It is just that we are very busy finalizing the release of X# 3. That is our own "baby".

We have adopted ReportPro in the past, and we will take care of it, but you will understand that we give priority to our own work.

If someone had contacted us and hired us to ...
by robert
Thu Jun 11, 2026 5:42 am
Forum: Product
Topic: 'Xs$SymbolTable' does not contain a definition for '_flcirc'
Replies: 5
Views: 254

Re: 'Xs$SymbolTable' does not contain a definition for '_flcirc'

John,
I can confirm the problem.
The following very simple code already shows it::

Code: Select all

function start as Void
    ? i"{#symname}"
    return
This will be fixed in X# 3.

Robert
by robert
Fri Jun 05, 2026 5:51 am
Forum: Product
Topic: 'Xs$SymbolTable' does not contain a definition for '_flcirc'
Replies: 5
Views: 254

Re: 'Xs$SymbolTable' does not contain a definition for '_flcirc'

John,
Thanks for the report.
The compiler creates a class that has properties for each of the symbols that it finds in your code.
Each of these properties returns the equivalent of String2Symbol("FLCIRC")
The properties are cached, so they are created only once at runtime.
I am not sure why ...
by robert
Thu Jun 04, 2026 11:20 am
Forum: 3rd party products
Topic: ReportPro 2.34 / VO App
Replies: 10
Views: 694

Re: ReportPro 2.34 / VO App

Guys,

We will try to come with a fix asap.
But we're also very busy getting X# 3 ready, and that is our main product.
RP2 and RP3 are "abandoned" and we have adopted them, but our own "baby" has a higher priority as you will understand.

Robert
by robert
Mon Jun 01, 2026 1:24 pm
Forum: Product
Topic: Migration xbase to X# --> Compiling
Replies: 14
Views: 676

Re: Migration xbase to X# --> Compiling

Alfred,
The error log is very big, but that is because you have compiled with the /verbose compiler option.
Without that option there a limited # of errors:

- error XS1031: Type expected -> Compile with /vo15+
- error XS9091: To use Dynamic variables -> compile with /memvar+
- error XS1633 ...
by robert
Fri May 29, 2026 1:02 pm
Forum: Product
Topic: Migration xbase to X# --> Compiling
Replies: 14
Views: 676

Re: Migration xbase to X# --> Compiling

Alfred
AlfredJanssen wrote: Fri May 29, 2026 12:50 pm Is there a function in X# that sets the code page? Otherwise, the contents of the DBF files cannot be read correctly.
XSharp uses the DBF header to decode the codepage.
If that does not work correctly, then please send us an example table.

Robert
by robert
Fri May 29, 2026 7:21 am
Forum: 3rd party products
Topic: ReportPro 2.34 / VO App
Replies: 10
Views: 694

Re: ReportPro 2.34 / VO App

Neale,

This seems to be happening in the code that reads font descriptors for True Type fonts.
We will look into this, but it would help to see which fonts you are using in the report.
And if they are not standard Windows fonts, then please include the TTF files for these fonts.

Robert
by robert
Fri Apr 17, 2026 2:57 pm
Forum: 3rd party products
Topic: ReportPro Installation Problem
Replies: 5
Views: 584

Re: ReportPro Installation Problem

Zerlauth,
Yes, most likely these are old 16 bit Wise installers.
Do you need ReportPro for VO or for X#?
And for which version of VO?

Robert
by robert
Fri Apr 17, 2026 2:38 pm
Forum: 3rd party products
Topic: ReportPro Installation Problem
Replies: 5
Views: 584

Re: ReportPro Installation Problem

Zerlauth,
Where did you get the ReportPro 2 installer?

Robert
by robert
Mon Mar 30, 2026 10:37 am
Forum: Chit-Chat
Topic: epDBU DBF Administration tool
Replies: 11
Views: 1544

Re: epDBU DBF Administration tool

Dick,

Code: Select all

lBlok1 := {||AScan(aRel,oDBDCSUb:FIELDGET(#relatie))<>0}
This is a compile time code block.
Macros are strings that are converted into a codeblock at runtime
If you change the declaration to

Code: Select all

LOCAL bFor, bWhile AS CODEBLOCK 
then it works

Robert