Mario,
It is always good to create issues for things that you are missing.
It helps to remind us of these things, and you will be notified of our work on the issues.
Please try to put 1 item per issue, so it is easier to close issues and follow the progress.
Robert
Search found 2387 matches
- Mon Sep 16, 2024 3:32 pm
- Forum: Visual FoxPro
- Topic: Local Cursor Operations with SQL and INDEX
- Replies: 3
- Views: 659
- Wed Sep 11, 2024 12:55 pm
- Forum: Suggestions
- Topic: Possibly error message when starting program with missing included DLL
- Replies: 46
- Views: 7924
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: 585
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: 46
- Views: 7924
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: 46
- Views: 7924
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: 27
- Views: 2396
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: 493
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: 45
- Views: 2457
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: 45
- Views: 2457
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: 446
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 ...