WeeBeng
May 13th, 2001, 09:01 AM
I use the following loop to plot data on a MSFlexgrid.
With Msflexgrid1
for intctr= 0 to 10
.col=1
.row= intctr
.data = rstbl("field1")
next intctr
end with
I am loading the msflexgrid with data from a external database field1. However there are certain rows in the database that have ineligible data.I do not wish to plot this, but I wish to continue using the for loop and the counter. Is there any way to plot the graph, so that certain data can be ommitted if and when I want?
I thank you.
With Msflexgrid1
for intctr= 0 to 10
.col=1
.row= intctr
.data = rstbl("field1")
next intctr
end with
I am loading the msflexgrid with data from a external database field1. However there are certain rows in the database that have ineligible data.I do not wish to plot this, but I wish to continue using the for loop and the counter. Is there any way to plot the graph, so that certain data can be ommitted if and when I want?
I thank you.