File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ Public Class dlgHideDataframes
87
87
88
88
ucrSelectorForDataFrames.Reset()
89
89
90
- clsDummyFunction.AddParameter( "checked" , "rdoHide " , iPosition:= 0 )
90
+ clsDummyFunction.AddParameter( "checked" , "rdoUnhide " , iPosition:= 0 )
91
91
92
92
clsMappingFunction.SetPackageName( "purrr" )
93
93
clsMappingFunction.SetRCommand( "map" )
@@ -143,8 +143,11 @@ Public Class dlgHideDataframes
143
143
144
144
If expTemp IsNot Nothing AndAlso expTemp.Type <> Internals.SymbolicExpressionType.Null Then
145
145
chrHiddenColumns = expTemp.AsCharacter
146
- For Each strDataFrame As String In chrHiddenColumns
147
- ucrSelectorForDataFrames.lstAvailableVariable.Items.Add(strDataFrame)
146
+ For i As Integer = 0 To chrHiddenColumns.Length - 1
147
+ Dim strDataFrame As String = chrHiddenColumns(i)
148
+ Dim listItem As New ListViewItem(strDataFrame)
149
+ listItem.Tag = "data_names"
150
+ ucrSelectorForDataFrames.lstAvailableVariable.Items.Add(listItem)
148
151
Next
149
152
End If
150
153
End Sub
You can’t perform that action at this time.
0 commit comments