标题:小问题3
取消只看楼主
一叶秋
Rank: 1
等 级:新手上路
帖 子:86
专家分:0
注 册:2004-4-21
 问题点数:0 回复次数:1 
小问题3
Private Sub Form_Click() Dim Entry, I, Msg '声明变量。 Msg = "Choose OK to add 100 items to your listbox." MsgBox Msg '显示信息。 For I = 1 To 100 '计数值从1到100。 Entry = "Entry" & I '创建输入项。 List1.AddItem Entry '添加该输入项。 Next I Msg = "Choose OK to remove every other entry." MsgBox Msg '显示信息。 For I = 1 To 50 '确定如何 List1.RemoveItem I '每隔一项 Next I '删除。 Msg = "Choose OK to remove all items from the listbox." MsgBox Msg '显示信息。 List1.ClePrivate Sub Form_Click() Dim Entry, I, Msg '声明变量。 Msg = "Choose OK to add 100 items to your listbox." MsgBox Msg '显示信息。 For I = 1 To 100 '计数值从1到100。 Entry = "Entry" & I '创建输入项。 List1.AddItem Entry '添加该输入项。 Next I Msg = "Choose OK to remove every other entry." MsgBox Msg '显示信息。 For I = 1 To 50 '确定如何 List1.RemoveItem I '每隔一项 Next I '删除。 Msg = "Choose OK to remove all items from the listbox." MsgBox Msg '显示信息。 List1.Clear '清除列表框。

End Sub 我有点不懂 List1.RemoveItem I '每隔一项 为什么是每隔一项? 为什么不是剩下51--100?

2004-05-07 16:24
一叶秋
Rank: 1
等 级:新手上路
帖 子:86
专家分:0
注 册:2004-4-21
得分:0 

1.2.3.4.5.6.7.8.9.10~~ 原来

1.3.4.5.6.7.8.9.10~~~当等1时,这时自动生成listindex,此时4的listindex为2

1.3.5.6.7.8.9.10~~~当等2时~~

谢谢!

2004-05-07 20:43



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-1136-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.113417 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved