Dear Cristobal,
thank you for your answer. Harbour instead of xHarbour is the solution to the problem. Now I know why it isn't working.
But we have a big legacy application and I don't know if it is possible to transform this "big ball of mud" to Harbour.
We will find a way to work with the .NET ...
Search found 6 matches
- Tue Jul 16, 2019 10:40 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using C# (and .NET) from FWH not working(?)
- Replies: 33
- Views: 5654
- Wed Jul 10, 2019 10:40 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using C# (and .NET) from FWH not working(?)
- Replies: 33
- Views: 5654
Re: Using C# (and .NET) from FWH not working(?)
Thank you for your response, Cristobal.
But the problem remains.
If I compile just this code:
#include "FiveWin.ch"function Main() local oNet ? "Start!" oNet := TDotNet():New() ? IIF(oNet != nil, "Net yes!", "Net no :(") oNet:End() return nil
I see the ...
But the problem remains.
If I compile just this code:
#include "FiveWin.ch"function Main() local oNet ? "Start!" oNet := TDotNet():New() ? IIF(oNet != nil, "Net yes!", "Net no :(") oNet:End() return nil
I see the ...
- Tue Jul 09, 2019 12:55 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using C# (and .NET) from FWH not working(?)
- Replies: 33
- Views: 5654
Using C# (and .NET) from FWH not working(?)
taken from http://forums.fivetechsupport.com/posting.php?mode=edit&f=3&p=222855
Hello!
It would be nice to use a .NET Dll with Fivewin and I tried the sample, but nothing happend, literally nothing. So I created my own .NET Dll and changed the sample dotnet.prg to this:
#include ...
Hello!
It would be nice to use a .NET Dll with Fivewin and I tried the sample, but nothing happend, literally nothing. So I created my own .NET Dll and changed the sample dotnet.prg to this:
#include ...
- Wed Jun 19, 2019 10:33 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: [BUG] in source/font.prg and a question
- Replies: 8
- Views: 1358
Re: [BUG] in source/font.prg and a question
Thank you very much, that works like a charm
But it is possible to create an object of
OBJECT ::oFont AS TFont ::cFaceName = "Segoe UI Bold" ::lBold = .F. ENDOBJECT
With
FUNCTION TestFont()local Self OBJECT ::oFont AS TFont ::cFaceName = "Segoe UI Bold" ::lBold = .F. ENDOBJECTRETURN ...
But it is possible to create an object of
OBJECT ::oFont AS TFont ::cFaceName = "Segoe UI Bold" ::lBold = .F. ENDOBJECT
With
FUNCTION TestFont()local Self OBJECT ::oFont AS TFont ::cFaceName = "Segoe UI Bold" ::lBold = .F. ENDOBJECTRETURN ...
- Wed Jun 19, 2019 9:06 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: [BUG] in source/font.prg and a question
- Replies: 8
- Views: 1358
[BUG] in source/font.prg and a question
Hello,
I'm facing this error in FWH1905:
Time from start: 0 hours 0 mins 0 secs Error occurred at: 06/19/19, 10:53:54 Error description: Warning BASE/1004 Message not found: TFONT:CCLASSNAMEStack Calls=========== Called from: source\rtl\tobject.prg => TFONT:ERROR( 0 ) Called from: source ...
I'm facing this error in FWH1905:
Time from start: 0 hours 0 mins 0 secs Error occurred at: 06/19/19, 10:53:54 Error description: Warning BASE/1004 Message not found: TFONT:CCLASSNAMEStack Calls=========== Called from: source\rtl\tobject.prg => TFONT:ERROR( 0 ) Called from: source ...
- Mon Jun 17, 2019 12:06 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using C# (and .NET) from FWH
- Replies: 15
- Views: 3805
Re: Using C# (and .NET) from FWH
Hello!
It would be nice to use a .NET Dll with Fivewin and I tried the sample, but nothing happend, literally nothing. So I created my own Dll and changed the sample dotnet.prg to this:
#include "FiveWin.ch"function Main() local oNet oNet := TDotNet():New() ? IIF(oNet ...
It would be nice to use a .NET Dll with Fivewin and I tried the sample, but nothing happend, literally nothing. So I created my own Dll and changed the sample dotnet.prg to this:
#include "FiveWin.ch"function Main() local oNet oNet := TDotNet():New() ? IIF(oNet ...