Re: TIB: basic speed problem
[Prev][Next][Index][Thread]
Re: TIB: basic speed problem
In a message dated 5/9/2000 3:22:35 PM Mountain Daylight Time,
IMY0URPA1N@aol.com writes:
> that is probably the reason why. So what is a better routine that wouldn't
do
>
> this?
Well, there are a few things you could do. I don't if they are better, but
you can try something like if you had:
Lbl B
If A>0
Then
code
code
Goto C
End
You could go:
Lbl B
If A>0
Then
code
code
1->T
End
If T==1
Goto C
Do stuff that eliminates the problem. Work around it.
Dan