Search found 2366 matches
- Wed Sep 11, 2024 12:55 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
Wolfgang, Your code works very well. I added the following to the Start() function and the error is caught and shown correctly nExitCode := 1/nExitCode An unhandled exception has occurred =================================== Exception: Attempted to divide by zero. Callstack: at Functions.Start() in C ...
- Tue Sep 10, 2024 7:52 pm
- Forum: Product
- Topic: [RP2.40] Filter
- Replies: 8
- Views: 170
Re: [RP2.40] Filter
Karl,
'a' is a local variable. This variable is not accessible in a macro.
To solve this you can:
- make 'a' a global variable
- make 'a' a dynamic variable (public or private). You will have to enable support for memory variables in the compiler options for this.
Robert
'a' is a local variable. This variable is not accessible in a macro.
To solve this you can:
- make 'a' a global variable
- make 'a' a dynamic variable (public or private). You will have to enable support for memory variables in the compiler options for this.
Robert
- Tue Sep 10, 2024 7:17 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
Wolfgang, The executable is "DictEdit.exe", and therefore I would assume the fully specified entry point class name is "DictEdit.Exe.XStartupCode". That is an incorrect assumption. The only namespace that is derived from the assembly name is the namespace from the Functions class. Your own classes ...
- Tue Sep 10, 2024 6:28 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
Wolfgang, When you migrate a VO app with the name DictEdit, then the generated Assembly name by the Exporter is DictEdit.EXE and the Default Namespace is also DictEdit Please note that this default namespace is only used with: - when you enable the option "Prefix classes with Default Namespace". In ...
- Mon Sep 09, 2024 6:23 pm
- Forum: Product
- Topic: bBrowser availability or an Alternative
- Replies: 21
- Views: 566
Re: bBrowser availability or an Alternative
People,
I'll contact Joachims company to find out what's happening.
If they no longer wish to support bBrowser, then we'll adopt it, like we have also done for ReportPro
Robert
I'll contact Joachims company to find out what's happening.
If they no longer wish to support bBrowser, then we'll adopt it, like we have also done for ReportPro
Robert
- Sat Sep 07, 2024 10:00 pm
- Forum: Product
- Topic: String literal with special symbols inside
- Replies: 5
- Views: 167
Re: String literal with special symbols inside
Guys, There are 3 versions of TEXT .. ENDTEXT. There is one version for the Core dialect: TEXT TO <VariableName> [ADDITIVE] TextLines ENDTEXT This does need any runtime support. There a version for all other dialects except FoxPro TEXT [INTO <VariableName> [TRIMMED]] | [INTO <VariableName> WRAP ...
- Thu Sep 05, 2024 7:50 pm
- Forum: VO & Vulcan
- Topic: Button class
- Replies: 39
- Views: 811
Re: Button class
Guys, Just to be clear: this will not be the first Xbase++ application running in X#. In the Netherlands a fairly large Xbase++ is running in X#. However, this app did not use the Xbase++ GUI classes. It is basically a console app that runs as backend for a web app and processes a lot of data. To ...
- Mon Sep 02, 2024 7:32 am
- Forum: VO & Vulcan
- Topic: Button class
- Replies: 39
- Views: 811
Re: Button class
Radim,
I agree with Johan.
And also: private email support is for subscribers only.
Robert
I agree with Johan.
And also: private email support is for subscribers only.
Robert
- Mon Aug 26, 2024 3:21 pm
- Forum: VO & Vulcan
- Topic: I want to create a dynamic (sub)menu in a given window
- Replies: 7
- Views: 262
Re: I want to create a dynamic (sub)menu in a given window
The Hyperlabel class expects a Symbol as first parameter. So Hyperlabel{ #DoSomething(cFile,.T.) is not allowed. If you want to pass parameters to the method, I recommend that you create a parameter less event handler, and call the method from that event handler self:RegisterItem( nID, Hyperlabel ...
- Thu Aug 15, 2024 7:02 am
- Forum: Product
- Topic: X# VS integration changes
- Replies: 3
- Views: 363
Re: X# VS integration changes
John,
Thanks for the report.
It looks like Microsoft has changed something without notifying the 3rd party.
I'll take a look at this.
Robert
Thanks for the report.
It looks like Microsoft has changed something without notifying the 3rd party.
I'll take a look at this.
Robert