Search found 6 matches

by AnjaK
Tue Jul 16, 2019 10:40 am
Forum: FiveWin for Harbour/xHarbour
Topic: Using C# (and .NET) from FWH not working(?)
Replies: 33
Views: 4356

Re: Using C# (and .NET) from FWH not working(?)

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 th...
by AnjaK
Wed Jul 10, 2019 10:40 am
Forum: FiveWin for Harbour/xHarbour
Topic: Using C# (and .NET) from FWH not working(?)
Replies: 33
Views: 4356

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()     re...
by AnjaK
Tue Jul 09, 2019 12:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using C# (and .NET) from FWH not working(?)
Replies: 33
Views: 4356

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 "FiveWi...
by AnjaK
Wed Jun 19, 2019 10:33 am
Forum: FiveWin for Harbour/xHarbour
Topic: [BUG] in source/font.prg and a question
Replies: 8
Views: 737

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 Bo...
by AnjaK
Wed Jun 19, 2019 9:06 am
Forum: FiveWin for Harbour/xHarbour
Topic: [BUG] in source/font.prg and a question
Replies: 8
Views: 737

[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:CCLASSNAME Stack Calls ===========    Called from: source\rtl\tobject.prg => TFONT:ERROR( 0 )    Called from: sou...
by AnjaK
Mon Jun 17, 2019 12:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using C# (and .NET) from FWH
Replies: 15
Views: 3485

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 != nil, &q...