J Trahair
Well-known member
First, apologies if you've 'done' comparisons with VB6, but some of us are just catching up.
The behaviour of the 'Find And Replace' tool (VB2005): in old VB6, if I want to find all occurrences of (for example)
in all forms, it would start somewhere and go through until the whole project had been searched. If you stopped the Find to change something, it would start afresh from that point and search through the project normally,without repeating or back-tracking.
In VB2005, if you stop the Find in (for example) the frmInvoicing form at the fifth occurrence to change something, what happens is this:
you restart the Find cycle, you're in frmInvoicing at the fifth occurrence, so it finds occurrences 6 then 7 (the last in this form), then starts again at the top of frmInvoicing!!. I'd expect to move to the next form. Consequently I don't know where I am.
Is there a setting I can change to improve this?
Thank you.
The behaviour of the 'Find And Replace' tool (VB2005): in old VB6, if I want to find all occurrences of (for example)
HTML:
mstrThisString = ""
In VB2005, if you stop the Find in (for example) the frmInvoicing form at the fifth occurrence to change something, what happens is this:
you restart the Find cycle, you're in frmInvoicing at the fifth occurrence, so it finds occurrences 6 then 7 (the last in this form), then starts again at the top of frmInvoicing!!. I'd expect to move to the next form. Consequently I don't know where I am.
Is there a setting I can change to improve this?
Thank you.