I have a pagepanel with four tabs (0,1,2,3). I have four buttons which control what tab is visible. Each button also resets any previous button to an up state. Each button’s code is the same aside from the pagepane tab value and the button which is commented out. This is the code for the last button.
Button Action:
PagePanel1.Value = 3
B1.Value = False
B2.Value = False
B3.Value = False
'B4.Value = False
Button MouseDown Event:
If Me.Value = True then
Return True
End If
I did a test build for Windows and using CrossOver I am getting a Exception of Class OutofBoundsException Not Handled Error for the line “PagePanel1.Value = 3”. The Mac version works fine, but for some reason the Windows build thinks the last tab does not exist. Perhaps its an issue with CrossOver which is not an actual PC.