Skip to content

Instantly share code, notes, and snippets.

@jbratu
Created April 17, 2019 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbratu/c6661aca66a8aca7652629995e2cebfb to your computer and use it in GitHub Desktop.
Save jbratu/c6661aca66a8aca7652629995e2cebfb to your computer and use it in GitHub Desktop.
Function CS_MV_TO_HTML_TABLE(Array)
RowCount = DCOUNT(Array,@FM)
ColCount = DCOUNT(Array<1>,@VM)
h = ''
h := '<table style="border: 1px solid black;">' : \0D0A\
For i = 1 To RowCount
h := '<tr>' : \0D0A\
For j = 1 To ColCount
h := '<td style="border: 1px solid black;padding: 5px;text-align: right;">' : \0D0A\
h := Array<i,j>
h := '</td>' : \0D0A\
Next j
h := '</tr>' : \0D0A\
Next i
h := '</table>' : \0D0A\
Return h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment