Thread: tables
View Single Post
  #1 (permalink)  
Old 04-28-2007, 11:56 PM
Fotis Nakos Fotis Nakos is offline
Newbie
 
Join Date: Apr 2007
Posts: 2
Default tables

Hello guys.
I have try to input numbers to enabled table but my keyboard dont write in the cells.here is some lines from my program

Sub Button2_Click

table7.AddCol(cstring, "aa", 20,false)
table7.AddCol(cstring, "angle", 50,false)
table7.AddCol(cstring, "space", 50,false)
table7.AddCol(cstring, "SPACE*sina", 50,false)
table7.AddCol(cstring, "space*cosa", 50,false)
table7.AddCol(cstring, "x", 50,false)
table7.AddCol(cstring, "y", 50,false)


for q=1 to num1.Value
table7.AddRow(q)
next
table7.Enabled= true

do you know what is the problem?
Reply With Quote