New to CGI coding and would like to know how to line up data in columns using proportional fonts. The code below works fine if I leave the default as Courier New of course.
Bob Mechler
Code:
WriteCGI "<pre>" WriteCGI "<font size='1' face='Verdana'>" WHILE CNT < 1000 A$ = F1.ACTNR$ B$ = F1.ACTNAM$ D$ = FNDT$(FNCVDATC$(F1.INSDAT$)) E$ = USING$("\ \ \ \ \ \",A$,B$,D$) WriteCGI E$ QF = 6: Q = %F1: GOSUB 60000 INCR CNT WEND WriteCGI "</pre>"
Comment