Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
For each doesn't release all forms?
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01241310
Message ID:
01241387
Views:
52
This message has been marked as the solution to the initial question of the thread.
Naomi,

>Hmm, I'm not sure, this needs to be comfirmed. I thought "for each" should work even when adding or removing. I need to review my own FAQ again, I already switched to George's solution but it didn't help yet.

I wrote this example while playing and fighting, so I am risking my Command Ship, meaning that my example might not be quite right, but take a look at this
loMyCollection	= CREATEOBJECT('Collection')
WITH loMyCollection as Collection
	.Add('A', 'A')
	.Add('B', 'B')
	.Add('C', 'C')
	.Add('D', 'D')
	.Add('E', 'E')
ENDWITH


FOR EACH lcLetter IN loMyCollection
	? 'Current letter: ', lcLetter
	IF lcLetter = 'C'
		? 'Removing ' + lcLetter
		loMyCollection.Remove('C')
	ENDIF
ENDFOR
"The five senses obstruct or deform the apprehension of reality."
Jorge L. Borges?

"Premature optimization is the root of all evil in programming."
Donald Knuth, repeating C. A. R. Hoare

"To die for a religion is easier than to live it absolutely"
Jorge L. Borges
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform