PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV (earlier versions) → Populating a table with variables
Populating a table with variables
Started by Antonio Diaz, Jul., 17 2021 8:31 PM - 1 reply
Posted on July, 17 2021 - 8:31 PM
Hi guys,

I am still playing around with WINDEV. I'm a Clarion user and the things that would seem so simple I still don't find how to do in WINDEV (25). I have a Table (TABLE_Items) that uses an ITEMS table but I want to concatenate some fields from that table and create a new colum on TABLE_Items to display the whole address.

I created the column on TABLE_Items but when I try to link it to the variable, It only gives me the choice to select FIELDS from the ITEMS table, not variables.

The variable is created and I am calling a function to "calculate" the whole address, which is called when DISPLAYING A ROW OF TABLE_Items.

I would appreciate your help.


Antonio Diaz
Registered member
795 messages
Popularité : +40 (42 votes)
Posted on August, 05 2021 - 4:27 PM
Hi. You have 2 possibilities:

a) Use the query editor and define the columns of the table that should appear. There you can concatenate fields.

b) Define an empty column of text type. In the "Display a row" event of the table you can concatenate the data and assign it to the column.


Rubén