Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,26 @@
|
|||
Dim As Integer ncols = 3, nrows = 4
|
||||
Dim As Integer col, row
|
||||
|
||||
Print "<!DOCTYPE html>" & Chr(10) & "<html>"
|
||||
Print "<head></head>" & Chr(10) & "<body>"
|
||||
Print "<table border = 1 cellpadding = 10 cellspacing =0>"
|
||||
|
||||
For row = 0 To nrows
|
||||
If row = 0 Then
|
||||
Print "<tr><th></th>" ;
|
||||
Else
|
||||
Print "<tr><th>" & row & "</th>" ;
|
||||
End If
|
||||
For col = 1 To ncols
|
||||
If row = 0 Then
|
||||
Print "<th>" & Chr(87 + col) & "</th>" ;
|
||||
Else
|
||||
Print "<td align=""right"">" & Rnd(9999) & "</td>" ;
|
||||
End If
|
||||
Next col
|
||||
Print "</tr>"
|
||||
Next row
|
||||
|
||||
Print "</table>"
|
||||
Print "</body>" & Chr(10) & "</html>"
|
||||
Sleep
|
||||
Loading…
Add table
Add a link
Reference in a new issue