i can give a suggestion - create a class-scope variable, say
private int count = 0;
or
Dim private as Integer count = 0;
and in the first occurance of your control increment it:
count++
then, before doing your logic, you can check it :
if( count > 0 ) // skip
else // use logic
there're can quite a few ways to go, this's just one of 'em
regs,
yurich
Main Topics
Browse All Topics





by: nywebsolPosted on 2005-10-18 at 13:25:37ID: 15111150
This is using C#