Quantcast
Channel: VBForums - Visual Basic 6 and Earlier
Viewing all articles
Browse latest Browse all 21174

how we can create a table manually and fill the data inside a table

$
0
0
i want to create a table and filling data inside i created a table but no idea how to fill data inside ..
Code:


 Dim tmpcounter As Integer
        tmpcounter = pageLeft + Printer.CurrentY
   
    For x1 = pageLeft To 2036 Step 200
          Printer.Line (x1, tmpcounter)-(x1, 2036)
          Printer.Print "x"
         
    Next
   
    For y1 = tmpcounter To 2036 Step 200
            Printer.Line (pageLeft, y1)-(2036, y1)
    Next


Viewing all articles
Browse latest Browse all 21174

Trending Articles