我有一个工具,我在excel中为最终用户制作面试表格,为了达到这个目的,我已经建立了一系列的questoins来确定角色所需的技能标准,这些技能转化为与这些技能相关的问题。所选择的面试问题一次限制为5个。
我有一些代码可以跟踪单个列表框中选择了多少列表框选项,遗憾的是由于UX问题,我们不得不重新设计界面。我必须使用自己的列表框生成多个用户表单,每个列表框通过链接到pivottable标准的动态命名范围生成其列表。有没有人知道如何跟踪多个列表框中的选择?下面的当前代码适用于单个列表框。
Private Sub ListBox1_Change()
Dim counter As Integer
Dim selectedCount As Integer
selectedCount = 0
For counter = 1 To ListBox1.ListCount Step 1
If ListBox1.Selected(counter - 1) = True Then
selectedCount = selectedCount + 1
End If
Next counter
If selectedCount >= 6 Then
ListBox1.Selected(ListBox1.ListIndex) = False
MsgBox "Pick 5 questions only", vbInformation + vbOKOnly, "Retry:"
End If
End Sub
答案 0 :(得分:0)
所以我设法重写了这个,以便它可以在位于不同用户表单中的多个列表框中工作,我将此代码放在包含列表框的所有用户表单中,并且它可以工作。
vm.gridsterOpts = {
resizable: {
enabled: true,
start: function (event, $element, widget) { },
resize: function (event, $element, widget) { },
stop: function (event, $element, widget) {
// how get gridster ? $(".gridster ul").gridster() is undefiened
var gridster = $(".gridster ul").gridster().data('gridster');
var newDimensions = gridster.serialize();
}
},