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 ?
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.
TimStone wrote:Otto,
19.06 was released on May 28, and my libs are dated June 3. That is 4 months.
.../...
Tim
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
Return to FiveWin for Harbour/xHarbour
Users browsing this forum: No registered users and 82 guests