Yosua
Programmer
- Aug 23, 2011
- 25
Hi,
I've been trying to show a row data from a grid back into text-boxes,
Here's what I do
Form Method "show_data"
Grid Click
And my problem is I only return the data from top row to text-boxes, and whenever I click the other row, it shows the data from the top row. Has anyone know where I did wrong and how to fix it?
Any suggestions are appreciated and sorry for bad english.
Regards
Yosua
I've been trying to show a row data from a grid back into text-boxes,
Here's what I do
Form Method "show_data"
Code:
THISFORM.txt_id.value = tb_member.id
THISFORM.txt_name.value = tb_member.name
THISFORM.txt_birthday.value = tb_member.birthday
THISFORM.txa_address.value = tb_member.address
Grid Click
Code:
thisform.show_data
And my problem is I only return the data from top row to text-boxes, and whenever I click the other row, it shows the data from the top row. Has anyone know where I did wrong and how to fix it?
Any suggestions are appreciated and sorry for bad english.
Regards
Yosua