I had a screen named w_main and i have 5 data windows
dw_one , dw_two , dw_three, dw_four ,dw_five
and here iam used the data windows in the screen with a user object uo_main
,
i inserted a datawindow control to the uo_main
, and in the open event i queriedTimer(5)
and in the timer event i queried as
uo_main.dw_1.dataobject = 'dw_one'
dw_1.insertrow(0);
uo_main.dw_1.dataobject = 'dw_two'
dw_1.insertrow(0);
uo_main.dw_1.dataobject = 'dw_three'
dw_1.insertrow(0);
uo_main.dw_1.dataobject = 'dw_four'
dw_1.insertrow(0);
uo_main.dw_1.dataobject = 'dw_five'
dw_1.insertrow(0);
this is to change the dataobject in the datawindow in every 5 seconds but its not working, how i make it possible,
its a updates displaying screen like project but i have to work it with powerbuilder.
dw_five
because the others will display and get changed immediately to the next one. – Kateract