hi there,
pls teach me how to assign macro in qt4,

let say i have the following data:

num_1 = 500;
num_2 = 340;
num_3 = 300;
num_4 = 600;
num_5 = 700;

then i want to trace each number (num_?) value using macro.
last time when i use Foxpro to display number is like this:
k = 1
do while (k <=4)
str = str(k)
@10+k,5 say num_&str <--- using '&'
enddo

does qt4 has such macro methode..?

thank for help.
Regard
comlink21