所以列表框在userform3中。在我进行数据搜索后,它将出现在列表框中。当我双击列表框时,它将显示userform2中文本框的值。我使用了这段代码,但它不起作用
Dim r, lr as integer
lr= sheet7. Cells(rows.count, 2).end(xlup).row
For r=2 to lr
If sheet7.cells(r, 1).value=listbox1.list(listbox1.listindex, 1) and sheet7.cells(r, 2).value=listbox1.list(listbox1.listindex, 2) then
Unload me
Userform2.Textbox2.value = sheet7.cells(r,1)
End if
End with
Next r
为什么那个代码不起作用?仅供参考,有两个标准
1条答案
按热度按时间v8wbuo2f1#
显示的代码上下文太少
也许这能帮你找到