Help with table and syntax

Basseman

Member
Licensed User
Hi, trying to type text in a textbox and press a send button to add into a table.
Can't seem to get it right.
Please help me.

:sign0085:
 

Cableguy

Expert
Licensed User
Longtime User
Since a few versions back controls like the textbox have NO default property...
Therefore you NEED to add the .Text tag..

Your line should be like this:

Table1.AddRow (Textbox1.Text,"Street",49 )
 

Basseman

Member
Licensed User
Ghaa, i tried that but in wrong order, thanx alot u saved my beautysleep tonight.. =)



Since a few versions back controls like the textbox have NO default property...
Therefore you NEED to add the .Text tag..

Your line should be like this:

Table1.AddRow (Textbox1.Text,"Street",49 )
 
Top