FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour I want to buy the latest version Fivewin's
Posts: 130
Joined: Sun Mar 08, 2009 04:33 PM
I want to buy the latest version Fivewin's
Posted: Sat Sep 01, 2012 09:37 AM

For a long time I can not resolve a problem with opening multiple COM ports FWHX in version 7.12 and therefore used in current old 16 bit version FW 1.92. Problem with version FWHX 7.12 is what OpenComm ('COM1', 1024.1024) and OpenComm ('COM2', 1024.1024) always give the same result (1). Since it is very important to me I want to buy the latest version, but only if it will solve the problem.

Please help!

Best regards

Milos



[ FWH 21.11 ] [ xHarbour 1.2.3 Intl. (SimpLex) (Build 20150603) ]
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: I want to buy the latest version Fivewin's
Posted: Sat Sep 01, 2012 09:38 AM

You can order it from www.fivetechsoft.com thanks :-)

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 130
Joined: Sun Mar 08, 2009 04:33 PM
Re: I want to buy the latest version Fivewin's
Posted: Sat Sep 01, 2012 10:13 AM

Does that mean that you know that this problem existed with version 7.12 and that the newer versions of the problem solved?

Best regards

Milos



[ FWH 21.11 ] [ xHarbour 1.2.3 Intl. (SimpLex) (Build 20150603) ]
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: I want to buy the latest version Fivewin's
Posted: Sat Sep 01, 2012 11:28 AM

mtajkov,

Current FWH version is 12.07 which it is 5 years difference from your version. As far as I know no one else has reported the error that you mention, anyhow if you provide us a self contained and small example we can check it with FWH 12.07, thanks

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 130
Joined: Sun Mar 08, 2009 04:33 PM
Re: I want to buy the latest version Fivewin's
Posted: Sat Sep 01, 2012 02:26 PM
example:
Code (fw): Select all Collapse
#include "FiveWin.ch"

//----------------------------------------------------------------------------//

function Main()

   local cDcb
   local nCom1 := OpenComm( "COM1", 1024, 1024)
   local nCom2 := OpenComm( "COM2", 1024, 1024)

  // ------- Com1

    if nCom1 < 0 
        MsgStop("Error Open COM1!") 
    endif 

   if ! BuildCommDcb( "COM1:9600,N,8,1", @cDcb )
      MsgStop( "Error BUILD!" )
   endif


   if ! SetCommState( nCom1, cDcb  )
      MsgStop( "Error SETCOMM!" )
   endif

MsgInfo("nCom1="+str(nCom1,1))

  // ------- Com2

    if nCom2 < 0 
        MsgStop("Error Open COM2!") 
    endif 

   if ! BuildCommDcb( "COM2:9600,N,8,1", @cDcb )
      MsgStop( "Error BUILD!" )
   endif


   if ! SetCommState( nCom2, cDcb  )
      MsgStop( "Error SETCOMM!" )
   endif


MsgInfo("nCom2="+str(nCom2,1))


return


the problem is that nCom1 = 1 nCom2 = 1 (FW 1.92: nCom = 1 nCom2 = 2)
Best regards

Milos



[ FWH 21.11 ] [ xHarbour 1.2.3 Intl. (SimpLex) (Build 20150603) ]
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: I want to buy the latest version Fivewin's
Posted: Sat Sep 01, 2012 05:50 PM
Here you have the EXE, please test it on your pc:

http://minus.com/lDrbijoJpyBKX
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 130
Joined: Sun Mar 08, 2009 04:33 PM
Re: I want to buy the latest version Fivewin's
Posted: Sat Sep 01, 2012 07:04 PM
messages:

Best regards

Milos



[ FWH 21.11 ] [ xHarbour 1.2.3 Intl. (SimpLex) (Build 20150603) ]
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: I want to buy the latest version Fivewin's
Posted: Sat Sep 01, 2012 07:10 PM

This code should be changed:

MsgInfo("nCom1="+str(nCom1,1))
...

into:

MsgInfo( "nCom1=" + str( nCom1 ) )

going to rebuild it again...

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: I want to buy the latest version Fivewin's
Posted: Sat Sep 01, 2012 07:14 PM
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 130
Joined: Sun Mar 08, 2009 04:33 PM
Re: I want to buy the latest version Fivewin's
Posted: Sun Sep 02, 2012 05:05 AM


Yes! This is good. What is the solution?
Best regards

Milos



[ FWH 21.11 ] [ xHarbour 1.2.3 Intl. (SimpLex) (Build 20150603) ]
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: I want to buy the latest version Fivewin's
Posted: Sun Sep 02, 2012 09:03 AM

There are many changes since 7.12 version, so the best advise is to upgrade your FWH from www.fivetechsoft.com thanks :-)

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 130
Joined: Sun Mar 08, 2009 04:33 PM
Re: I want to buy the latest version Fivewin's
Posted: Sun Sep 02, 2012 09:29 AM

Please one more information. Will the combination FWHX 12.07 and xHarbour 0.99.61 be fine or do I get a new xHarbour?

Thanks for everything
regards

Sorry for my english!

Best regards

Milos



[ FWH 21.11 ] [ xHarbour 1.2.3 Intl. (SimpLex) (Build 20150603) ]
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: I want to buy the latest version Fivewin's
Posted: Sun Sep 02, 2012 09:48 AM
You need a new xHarbour that you can download from here:

http://code.google.com/p/harbour-and-xharbour-builds/downloads/list
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 130
Joined: Sun Mar 08, 2009 04:33 PM
Re: I want to buy the latest version Fivewin's
Posted: Sun Sep 02, 2012 11:19 AM

Is it possible to download FWH 12.07 demo? On the site there is only FWH 6.12.

regards

Best regards

Milos



[ FWH 21.11 ] [ xHarbour 1.2.3 Intl. (SimpLex) (Build 20150603) ]
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: I want to buy the latest version Fivewin's
Posted: Sun Sep 02, 2012 01:53 PM

We don't provide demo versions of current versions, sorry

regards, saludos

Antonio Linares
www.fivetechsoft.com