level 3
(还没有人回答?嗯。)
假如此时单击的按钮的Name属性为“Command2”,则代码如下(简化版)
'#######################
#此行为注释,不用写#
########################
Private Sub Command2_Click()
Dim i
With List1
i = .List(.ListIndex)
.List(.ListIndex) = Text1.Text
Text1.Text = i
End With
Command2.Caption = "修改"
End Sub
'#######################
#此行为注释,不用写#
########################
嗯,就是这样。
2020年05月16日 06点05分
