I am trying to implement a Sub which has two argument as following. I need to check the existence of the index tab before adding some dynamic controls to it. I had a couple of blind attempts but then I totally lost!
Private Sub insertControlsIntoTabs(tabContainer As RadPageView , tabIndexNum As Integer)
' check the existence of tabIndexNum
'...
' Selecting tabIndexNum
Me.tabContainer .SelectedPage = Me.tabContainer .Pages.(tabIndexNum)
End Sub
Can someone help please?
Private Sub insertControlsIntoTabs(tabContainer As RadPageView , tabIndexNum As Integer)
' check the existence of tabIndexNum
'...
' Selecting tabIndexNum
Me.tabContainer .SelectedPage = Me.tabContainer .Pages.(tabIndexNum)
End Sub
Can someone help please?