FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Next Update ?
Posts: 3022
Joined: Fri Oct 07, 2005 01:45 PM
Next Update ?
Posted: Fri Sep 20, 2019 10:10 PM

There were many upcoming features announced for the next release in the past , but it has been almost 4 months since the last update to .06.

Do you have an anticipated release date ?

Tim Stone
http://www.MasterLinkSoftware.com
http://www.autoshopwriter.com
timstone@masterlinksoftware.com
Using: FWH 23.10 with Harbour 3.2.0 / Microsoft Visual Studio Community 2022-24 32/64 bit
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Next Update ?
Posted: Sat Sep 21, 2019 02:48 AM

Dear Tim,

This next monday we will be publishing the new version

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 6755
Joined: Wed Feb 15, 2012 08:25 PM
Re: Next Update ?
Posted: Sat Sep 21, 2019 10:30 AM
TimStone wrote:There were many upcoming features announced for the next release in the past , but it has been almost 4 months since the last update to .06.



Tim, The latest version 19.06 was released on July 11, 2019, and a new version is not usually published in August for holiday reasons. It is normal to publish the 07/08 joined versions in September ( not almost 4 months )

Look at the date of the post,

viewtopic.php?f=16&t=37438#p223831

Thanks
Cristobal Navarro

Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo

El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
Re: Next Update ?
Posted: Sat Sep 21, 2019 08:11 PM
Hello Tim,
there are nearly every day new updates on mod Harbour.
Have you tested mod harbour.
In my opinion mod harbour makes obsolete many desktop things.

http://www.modharbour.online

Best regards
Otto
Posts: 3022
Joined: Fri Oct 07, 2005 01:45 PM
Re: Next Update ?
Posted: Sun Sep 22, 2019 12:08 AM

Otto,

19.06 was released on May 28, and my libs are dated June 3. That is 4 months.

I was interested in some of the new features announced for the next release many weeks ago. That is why I asked.

My primary work is NOT internet based at this time, but my clients continue to ask for enhancements. Thus I will likely not be working with mod_harbour for many months. My clients do extensive data entry, and many do not have good internet service, so a cloud based solution would not be good for them. I may explore mod_harbour at a later date, but for now I'm just focused on FWH with Visual Studio for the desktop.

Tim

Tim Stone
http://www.MasterLinkSoftware.com
http://www.autoshopwriter.com
timstone@masterlinksoftware.com
Using: FWH 23.10 with Harbour 3.2.0 / Microsoft Visual Studio Community 2022-24 32/64 bit
Posts: 6755
Joined: Wed Feb 15, 2012 08:25 PM
Re: Next Update ?
Posted: Sun Sep 22, 2019 12:38 AM
TimStone wrote:Otto,

19.06 was released on May 28, and my libs are dated June 3. That is 4 months.

.../...
Tim




Tim, excuse me, but you may not have downloaded version 19.06
Here is an image of the official Fwh repository.
Also in my previous post I indicate the link announcing the publication of version 19.06 of Fwh.

Version 19.05 was published on June 4
On June 3 was when the library of version 19.05 was updated in the repository

Cristobal Navarro

Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo

El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
Re: Next Update ?
Posted: Sun Sep 22, 2019 06:39 AM

Hello Tim,
>My primary work is NOT internet based at this time, but my clients continue to ask for enhancements.
You do not need internet. You can install mod harbour on your file server and access through intranet.
Same as your files.
Many things are easier in mod harbour than with desktop.

Best regards
Otto

Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
Re: Next Update ?
Posted: Sun Sep 22, 2019 07:10 AM
Hello Tim to show what I mean I post a little code sample.

Please check http://modharbour.online with for example with http://responsivetesttool.com/ to see what I yourself.

Wish you a nice Sunday and best regards
Otto

Code (fw): Select all Collapse
function Main()
    local alinks := {}

    if ! File( hb_GetEnv( "PRGPATH" ) + "/links.dbf" )
        DbCreate( hb_GetEnv( "PRGPATH" ) + "/links.dbf",;
                  { { "LINKDEST",   "C", 200, 0 },;
                    { "LINKNAME",   "C", 200, 0 },;
                    { "LONGTEXT",   "M", 10, 0 } } )
     endif

    USE ( hb_GetEnv( "PRGPATH" ) + "/links" ) SHARED NEW
    do while .not. eof()
        aadd( alinks, { field->linkdest, field->linkname, field->longtext } )
        skip
    enddo    
    USE

TEMPLATE PARAMS alinks

<html>
    <head>
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
    </head>
    <body>
    <div class="container">
        <div class="row">
        <table class="table col-12" style="font-size:20px;">
      <thead class="thead-dark ">
        <tr>
          <th scope="col">#</th>
          <th scope="col">Project Name</th>
        </tr>
      </thead>
      <tbody>
      
        <?prg local I := 0, cRow := ""      //mod harbour code inside HTML  TAG starts with <?prg   
        for I := 1 to len( alinks )
            cRow += '<tr>'
            cRow += '<th scope="row">' + ALLTRIM( str(I) ) + '</th>' 
            cRow += "<td><a target='_blank' href=" +  alinks[I,1] + ">" +  alinks[I,2] + "</a>"
            cRow += '<br>'
            cRow +=  alinks[I,3]
            cRow += "</td>"
            cRow += "</tr>"
        next   
        return cRow ?>                    
      </tbody>
    </table>
    </div>
    </div>
    </body>
</html>

ENDTEXT

return nil




Continue the discussion