PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV 2024 → WD8 - How to retrieve a cell value in a table
WD8 - How to retrieve a cell value in a table
Started by Gianni Spano, Sep., 09 2005 3:17 AM - 4 replies
Posted on September, 09 2005 - 3:17 AM
Hello to all
I'm using a table to input some data.
The first column is called "Code" and it is numeric.
I'm trying to get the column value before to continue with the other columns in the table, and if its value is > 0 continue input, otherwise execute a "ReturnToCapture" to go back in the cell until a correct value is entered.
I have seen there aren't automatic events during table input for a single cell (column) and i would like to know if someone can point me in the right direction to workaround this issue.
Tips and tricks are very appreciated.
Gianni
Posted on September, 09 2005 - 5:16 AM
Gianni:
According to the programming manual (WD8)
Value of a cell in the current row
=
Value of a cell in a given row
=[]
Guillermo
Hello to all
I'm using a table to input some data.
The first column is called "Code" and it is numeric.
I'm trying to get the column value before to continue with the other columns in the table, and if its value is > 0 continue input, otherwise execute a "ReturnToCapture" to go back in the cell until a correct value is entered.
I have seen there aren't automatic events during table input for a single cell (column) and i would like to know if someone can point me in the right direction to workaround this issue.
Tips and tricks are very appreciated.
Gianni
Posted on September, 09 2005 - 12:36 PM
Thanks Piet & Guillermo..
It was quite easy!!
Gianni

Hello to all
I'm using a table to input some data.
The first column is called "Code" and it is numeric.
I'm trying to get the column value before to continue with the other columns in the table, and if its value is > 0 continue input, otherwise execute a "ReturnToCapture" to go back in the cell until a correct value is entered.
I have seen there aren't automatic events during table input for a single cell (column) and i would like to know if someone can point me in the right direction to workaround this issue.
Tips and tricks are very appreciated.
Gianni
Posted on September, 09 2005 - 2:32 PM
Hi,
Click on a table's column until it is selected and press F2.
Here you can put your code for this column.
I use it all the time.

Greatings.

"Gianni Spano" <info@softline2000.com> escribió en el mensaje
news:4320b41b$1@news.pcsoft.fr...
Hello to all
I'm using a table to input some data.
The first column is called "Code" and it is numeric.
I'm trying to get the column value before to continue with the other
columns in the table, and if its value is > 0 continue input, otherwise
execute a "ReturnToCapture" to go back in the cell until a correct value
is entered.
I have seen there aren't automatic events during table input for a single
cell (column) and i would like to know if someone can point me in the
right direction to workaround this issue.
Tips and tricks are very appreciated.
Gianni







Posted on September, 09 2005 - 10:42 PM
Gianni: sorry, some caracters has been deleted part of my response
Value of a cell in the current row = Column name
Value of a cell in a given row = Column_name[subscript]
Guillermo