Search found 2313 matches

by robert
Tue Apr 23, 2024 12:10 pm
Forum: Product
Topic: Miscellaneous questions about converting VO code to X#
Replies: 43
Views: 2174

Re: Miscellaneous questions about converting VO code to X#

Kees,
Kees Bouw wrote: Tue Apr 23, 2024 10:16 am Found it, it is probably String2Symbol("#NULL_DATE") right?
String2Symbol("NULL_DATE")

Robert
by robert
Tue Apr 23, 2024 10:40 am
Forum: 3rd party products
Topic: ReportPro 2.40 for X#: empty report while showing correct in VO ReportPro 2.31
Replies: 10
Views: 452

Re: ReportPro 2.40 for X#: empty report while showing correct in VO ReportPro 2.31

Dick,
This could be something in RP2 or in the RDD system.
An example report + dbfs could help to find this.

Robert
by robert
Tue Apr 23, 2024 9:46 am
Forum: Deutsches Forum
Topic: EXIT in FOR Loop
Replies: 15
Views: 448

Re: EXIT in FOR Loop

Chris, I see what is happening. The compiler option /memvar (/memvars is also supported) enables a part of the parser that recognizes the PRIVATE keyword. At this moment, you MUST set the compiler option globally (as command line argument). The /memvar compiler option also controls if the compiler p...
by robert
Tue Apr 23, 2024 6:18 am
Forum: Deutsches Forum
Topic: EXIT in FOR Loop
Replies: 15
Views: 448

Re: EXIT in FOR Loop

Guys,

I think the pragma should be

Code: Select all

#pragma options ("memvars", on)
Robert
by robert
Tue Apr 23, 2024 6:15 am
Forum: Product
Topic: Open DBF’s not visible in BackgroundWorker second thread.
Replies: 9
Views: 373

Re: Open DBF’s not visible in BackgroundWorker second thread.

Guys, You can indeed (with some programming) access the open DBFs in other threads. But I would not recommend it, especially when indexes or filters are involved: the macro compiler is used to evaluate expressions and these expressions are evaluated in the context of the "current" area. If...
by robert
Mon Apr 22, 2024 12:08 pm
Forum: Deutsches Forum
Topic: EXIT in FOR Loop
Replies: 15
Views: 448

Re: EXIT in FOR Loop

Franz,

The best way for us to help you to detect the error is if you include the complete source code.
With snippets of code, this is not possible.
For example: does your class end with END CLASS?


Robert
by robert
Mon Apr 22, 2024 11:30 am
Forum: Deutsches Forum
Topic: EXIT in FOR Loop
Replies: 15
Views: 448

Re: EXIT in FOR Loop

Franz,

LOPCAL should probably be LOCAL


Robert
by robert
Mon Apr 22, 2024 10:37 am
Forum: Chit-Chat
Topic: ace32.dll I was debugging and searched for some documantation and x#
Replies: 4
Views: 302

Re: ace32.dll I was debugging and searched for some documantation and x#

DBISAM is probably a Delphi component which is linked into the exe:

https://www.elevatesoft.com/products?category=dbisam

You can order it there


Robert
by robert
Fri Apr 19, 2024 2:19 pm
Forum: Product
Topic: Miscellaneous questions about converting VO code to X#
Replies: 43
Views: 2174

Re: Miscellaneous questions about converting VO code to X#

Kees,

You cannot have an EXPORT and ASSIGN with the same name.
If you rename the EXPORT then the syntax created by the Exporter should work.

Robert
by robert
Fri Apr 19, 2024 2:14 pm
Forum: Product
Topic: Miscellaneous questions about converting VO code to X#
Replies: 43
Views: 2174

Re: Miscellaneous questions about converting VO code to X#

Kees,
I think that the code should be changed to:


SELF:PKey[nAUT] := #AUTNO

Most likely this was a bug in VO.

Robert