开发者

How do I swap items in a VB6 collection?

开发者 https://www.devze.com 2022-12-14 04:58 出处:网络
If I have a collection of forms (myForms) and I want to switch the position of two forms in the collection (say items 3 and 4 for example), I would expect that the following code would work:

If I have a collection of forms (myForms) and I want to switch the position of two forms in the collection (say items 3 and 4 for example), I would expect that the following code would work:

Dim temp as Form
Set temp = myForms(3)
Set myForms(3) = myForms(4)
Set myForms(4) = temp

But that doesn't work. It fails at the third line with the error "Controls property is read on开发者_运维百科ly." If I change the line to:

myForms(3) = myForms(4)

I get a type mismatch error instead.


If myForms is a standard collection:

Dim myForms as New Collection

(which is actually different from the controls collection) and you've added the forms using:

myForms.Add frmOne, myForms.Add frmTwo

etc then (yes) you do need to use the Add and Remove methods because of the way the collection references the added objects.

Otherwise the interpretation is that you actually want to replace one form with another and this is not allowed. You can't say:

Set frmOne = frmTwo

unless these are actually variables of type Form.

Why do you need to switch the order? Are you referencing the item numbers somewhere? Would using a Dictionary to collect the forms and reference them by a key be useful?

PS. The type mismatch is simply because both items are objects and need to be 'Set'.


You can't actually swap around items in the controls collection in VB6. You need to use the Add and Remove functions associated with each. Check out this article:

http://support.microsoft.com/kb/190670

Hope this helps!

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号