I want to buy the latest version Fivewin's

I want to buy the latest version Fivewin's

Postby mtajkov » Sat Sep 01, 2012 9: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) ]
mtajkov
 
Posts: 130
Joined: Sun Mar 08, 2009 4:33 pm

Re: I want to buy the latest version Fivewin's

Postby Antonio Linares » Sat Sep 01, 2012 9:38 am

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

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41898
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: I want to buy the latest version Fivewin's

Postby mtajkov » 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) ]
mtajkov
 
Posts: 130
Joined: Sun Mar 08, 2009 4:33 pm

Re: I want to buy the latest version Fivewin's

Postby Antonio Linares » 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
User avatar
Antonio Linares
Site Admin
 
Posts: 41898
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: I want to buy the latest version Fivewin's

Postby mtajkov » Sat Sep 01, 2012 2:26 pm

example:
Code: Select all  Expand view
#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) ]
mtajkov
 
Posts: 130
Joined: Sun Mar 08, 2009 4:33 pm

Re: I want to buy the latest version Fivewin's

Postby Antonio Linares » Sat Sep 01, 2012 5:50 pm

Here you have the EXE, please test it on your pc:

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

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41898
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: I want to buy the latest version Fivewin's

Postby mtajkov » Sat Sep 01, 2012 7:04 pm

messages:
Image
Image
Best regards
Milos

[ FWH 21.11 ] [ xHarbour 1.2.3 Intl. (SimpLex) (Build 20150603) ]
mtajkov
 
Posts: 130
Joined: Sun Mar 08, 2009 4:33 pm

Re: I want to buy the latest version Fivewin's

Postby Antonio Linares » Sat Sep 01, 2012 7: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
User avatar
Antonio Linares
Site Admin
 
Posts: 41898
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: I want to buy the latest version Fivewin's

Postby Antonio Linares » Sat Sep 01, 2012 7:14 pm

regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41898
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: I want to buy the latest version Fivewin's

Postby mtajkov » Sun Sep 02, 2012 5:05 am

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

[ FWH 21.11 ] [ xHarbour 1.2.3 Intl. (SimpLex) (Build 20150603) ]
mtajkov
 
Posts: 130
Joined: Sun Mar 08, 2009 4:33 pm

Re: I want to buy the latest version Fivewin's

Postby Antonio Linares » Sun Sep 02, 2012 9: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
User avatar
Antonio Linares
Site Admin
 
Posts: 41898
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: I want to buy the latest version Fivewin's

Postby mtajkov » Sun Sep 02, 2012 9: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) ]
mtajkov
 
Posts: 130
Joined: Sun Mar 08, 2009 4:33 pm

Re: I want to buy the latest version Fivewin's

Postby Antonio Linares » Sun Sep 02, 2012 9: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
User avatar
Antonio Linares
Site Admin
 
Posts: 41898
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: I want to buy the latest version Fivewin's

Postby mtajkov » 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) ]
mtajkov
 
Posts: 130
Joined: Sun Mar 08, 2009 4:33 pm

Re: I want to buy the latest version Fivewin's

Postby Antonio Linares » Sun Sep 02, 2012 1:53 pm

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

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41898
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Next

Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: No registered users and 31 guests