Hi Wolfgang,
It can also return VOID in X#. But doesn't the VOXporter do the necessary change?
Search found 2647 matches
- Wed Sep 11, 2024 12:49 pm
- Forum: Suggestions
- Topic: Possibly error message when starting program with missing included DLL
- Replies: 43
- Views: 6619
- Wed Sep 11, 2024 11:16 am
- Forum: Suggestions
- Topic: Possibly error message when starting program with missing included DLL
- Replies: 43
- Views: 6619
Re: Possibly error message when starting program with missing included DLL
Hi Wolfgang, Ah, thanks for sending the sample, I see what's causing the problem. It's because of the enabled /vo5 (implicit CLIPPER calling convention) compiler option, which makes all methods that have no parameters be emitted as CLIPPER calling convention methods, for compatibility with VO. To ...
- Wed Sep 11, 2024 10:17 am
- Forum: VO & Vulcan
- Topic: DBF with keyword "REF"
- Replies: 7
- Views: 131
Re: DBF with keyword "REF"
That's fine of course, I think the problem will have been fixed until the release of the next public build and will be included in there. Unless it proves very difficult to fix it (it's a problem in the macro compiler and might be a bit complicated), but I don't expect so. Link to the reported issue ...
- Tue Sep 10, 2024 3:33 pm
- Forum: Product
- Topic: [RP2.40] Filter
- Replies: 8
- Views: 170
Re: [RP2.40] Filter
Hi Karl,
How about
"AScan( { "123","456", "789" } , Person.Pno) != 0 .and. ...."
to see if a pno is inside the array?
Of course you will need to construct the string array expression with code.
How about
"AScan( { "123","456", "789" } , Person.Pno) != 0 .and. ...."
to see if a pno is inside the array?
Of course you will need to construct the string array expression with code.
- Tue Sep 10, 2024 2:40 pm
- Forum: Product
- Topic: [RP2.40] Filter
- Replies: 8
- Views: 170
Re: [RP2.40] Filter
Hi Karl,
And what would the filter expression look like exactly? As plain string I mean.
And what would the filter expression look like exactly? As plain string I mean.
- Tue Sep 10, 2024 2:08 pm
- Forum: Product
- Topic: [RP2.40] Filter
- Replies: 8
- Views: 170
Re: [RP2.40] Filter
Hi Karl, What would the filter expression look like in this case, which array items would you use in them? All or some of them and how? Would you need to do something like this: LOCAL aPnos AS ARRAY FilterExpression := i"Person.PNo = '{aPnos[1]}' .AND. Person.FNo = '{aPnos[3]}' .AND. Person.CNo ...
- Tue Sep 10, 2024 1:22 pm
- Forum: Examples
- Topic: Creating COM modules/ActiveX controls in X# for use from other languages
- Replies: 5
- Views: 108
Re: Creating COM modules/ActiveX controls in X# for use from other languages
Thanks a lot Irwin!
As for the XIDE plugins, we will create a section in the downloads area for that. But it has to wait till the next official X# release, which will contain the new IDE as well (which includes plugin system additions that your plugin probably depends on).
As for the XIDE plugins, we will create a section in the downloads area for that. But it has to wait till the next official X# release, which will contain the new IDE as well (which includes plugin system additions that your plugin probably depends on).
- Tue Sep 10, 2024 1:19 pm
- Forum: VO & Vulcan
- Topic: DBF with keyword "REF"
- Replies: 7
- Views: 131
Re: DBF with keyword "REF"
Ah, right, sorry about that. Are you a FOX subscriber? If yes, I will send you a fix as soon as this is fixed.
- Tue Sep 10, 2024 12:09 pm
- Forum: Suggestions
- Topic: Possibly error message when starting program with missing included DLL
- Replies: 43
- Views: 6619
Re: Possibly error message when starting program with missing included DLL
Hi Wolfgang,
They don't, I have it working here without the parameters. Can you please post the .xiaef that gives you the error? Maybe I'm not doing something else that you have in your app.
They don't, I have it working here without the parameters. Can you please post the .xiaef that gives you the error? Maybe I'm not doing something else that you have in your app.
- Tue Sep 10, 2024 11:20 am
- Forum: XSharp Tools Library
- Topic: EntityViewer Plugin
- Replies: 4
- Views: 76
Re: EntityViewer Plugin
Hi Irwin, Hmmm, good question... ToolPad is a relatively new class in the PluginSystem and it does not have much functionality in it yet, but this will change. It also inherits directly from the System.Windows.Forms.Panel class (so you can put controls in it and do any drawing you want), but this is ...