Rimantas,
This code will create a HTML file with the DBF in the table
*------------------------------
cTxt ="<HTML>"+CRLF+"<BODY>"+CRLF+"<TABLE border=1>"
do while !eof()
cTxt+="<tr>"+CRLF
for y=1 to fcount()
cTxt+="<td width=60 align=left>"+cValToChar(fieldget( y ))+"</td>"+CRLF
next
cTxt+="</tr>"+CRLF
dbskip()
enddo
cTxt+="</table>"+CRLF
cTxt+="</BODY>"+CRLF+"</HTML>"+CRLF
Memowrit("table.htm", cTxt)
*-----------------------------
Depending of the type of fields, you can play with the "width" and the "align" parameters in the "<TD" tag to adjust the table to your needs.
There is no much things to learn
HTH
regards, Euclides