bBrowser.NET migration to X#

Public forum to share code snippets, screen shorts, experiences, etc.
User avatar
nkristensen
Posts: 8
Joined: Sat Feb 24, 2018 6:58 am
Location: South Africa

bBrowser.NET migration to X#

Post by nkristensen »

Hi Johan,

Yes, references in the project to the assemblies from GAC. '

Regards,
Niels
User avatar
wriedmann
Posts: 3655
Joined: Mon Nov 02, 2015 5:07 pm
Location: Italy

bBrowser.NET migration to X#

Post by wriedmann »

hi Niels,

strange..... I'm using XIDE to compile, and I have not done anything strange.
bServer_Compiler_Properties.png
bServer_Compiler_Properties.png (28.08 KiB) Viewed 1067 times
bServer_References.png
bServer_References.png (28.53 KiB) Viewed 1067 times
Do you are usings Visual Studio or XIDE?

Wolfgang

P.S. I'm using self compiled versions of the VO class libraries, therefore the "strange" name
Wolfgang Riedmann
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
User avatar
nkristensen
Posts: 8
Joined: Sat Feb 24, 2018 6:58 am
Location: South Africa

bBrowser.NET migration to X#

Post by nkristensen »

Thanks Wolfgang,

I am also using XIDE, but I have no complier options set. I will try your settings.

Regards,
Niels
User avatar
nkristensen
Posts: 8
Joined: Sat Feb 24, 2018 6:58 am
Location: South Africa

bBrowser.NET migration to X#

Post by nkristensen »

Wolfgang,

Working now using the same compiler options as you.

Thank you very much to you and Johan.

Regards,
Niels
User avatar
wriedmann
Posts: 3655
Joined: Mon Nov 02, 2015 5:07 pm
Location: Italy

bBrowser.NET migration to X#

Post by wriedmann »

Hi Niels,

You're welcome!

If you find other difficulties, please drop a note here. I'll try to answer and to add it also to the X# Documentation Project,

Wolfgang
Wolfgang Riedmann
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
User avatar
lumberjack
Posts: 723
Joined: Fri Sep 25, 2015 3:11 pm
Location: South Africa

bBrowser.NET migration to X#

Post by lumberjack »

Hi Niels,
nkristensen wrote: Thank you very much to you and Johan.
You welcome, but the honor goes to Wolfgang. Glad you got it sorted out.
Regards,
______________________
Johan Nel
Boshof, South Africa
User avatar
nkristensen
Posts: 8
Joined: Sat Feb 24, 2018 6:58 am
Location: South Africa

bBrowser.NET migration to X#

Post by nkristensen »

Sorry to trouble again, but now I am getting:

error XS0426: The type name 'Functions' does not exist in the type 'bBrowser' 6,46 bptrCellGroupMove.prg bBrowser
User avatar
wriedmann
Posts: 3655
Joined: Mon Nov 02, 2015 5:07 pm
Location: Italy

bBrowser.NET migration to X#

Post by wriedmann »

Hi Niels,

strange....do you have applied the same compiler options also to the bBrowser library?

Wolfgang
Wolfgang Riedmann
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
User avatar
Chris
Posts: 4583
Joined: Thu Oct 08, 2015 7:48 am
Location: Greece

bBrowser.NET migration to X#

Post by Chris »

Guys, glad you have all resolved this, without help from us! In general, when you port code from vulcan to X#, you should be using the exact same compiler options in X# that also the vulcan app was using, we have intentionally used the exact same names in the properties pages of VS/XIDE, in order to make this as easy as possible.

Specifically about the "Clipper/Strict" error, the issue is that when you have a method defined as

METHOD Close() // no params or explicit return type

then the compiler does not know if it should be defined as a strongly typed method, or it is a VO-style calling convention method. Using the /vo5 (implicit CLIPPER calling convention) option, tells the compiler to treat such methods as CLIPPER, which is what the rest of the bBrowser code uses.

Chris
Chris Pyrgas

XSharp Development Team test
chris(at)xsharp.eu
User avatar
Chris
Posts: 4583
Joined: Thu Oct 08, 2015 7:48 am
Location: Greece

bBrowser.NET migration to X#

Post by Chris »

Hi Niels,
nkristensen wrote:Sorry to trouble again, but now I am getting:

error XS0426: The type name 'Functions' does not exist in the type 'bBrowser' 6,46 bptrCellGroupMove.prg bBrowser
This is most probably due to a (one of the very few remaining) compiler problem, that you cannot have a class with the same name as the dll. Please check the options for this app, general page, what is the "Assembly Name" option set at? If it's bBrowser, then it will not work correctly, you will need to change it to something different, for example "bBrowserNet". I think the original value there as created by Joachim was "bTools.bBrowser".

Chris
Chris Pyrgas

XSharp Development Team test
chris(at)xsharp.eu
Post Reply