Page 1 of 1
Next Update ?
Posted: Fri Sep 20, 2019 10:10 pm
by TimStone
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 ?
Re: Next Update ?
Posted: Sat Sep 21, 2019 2:48 am
by Antonio Linares
Dear Tim,
This next monday we will be publishing the new version
Re: Next Update ?
Posted: Sat Sep 21, 2019 10:30 am
by cnavarro
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,
http://forums.fivetechsupport.com/viewt ... 38#p223831
Thanks
Re: Next Update ?
Posted: Sat Sep 21, 2019 8:11 pm
by Otto
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
Re: Next Update ?
Posted: Sun Sep 22, 2019 12:08 am
by TimStone
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
Re: Next Update ?
Posted: Sun Sep 22, 2019 12:38 am
by cnavarro
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
Re: Next Update ?
Posted: Sun Sep 22, 2019 6:39 am
by Otto
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
Re: Next Update ?
Posted: Sun Sep 22, 2019 7:10 am
by Otto
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: Select all
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