Hi,
I am having a really stupid problem, and I'm not sure what I'm missing here. I am trying to call one subroutine from another, and every time it says there is a syntax error in the call statement HideSoftware(), HideWindows(), HideUNIX(), OrderStorage(),.... Is there some other way to call one subroutine from another within the page codebehind?
Code:
Private Sub Combo96_Change()
If Me.Combo96.SelText = "Storage" Then
HideSoftware()
HideWindows()
HideUNIX()
OrderStorage() ....
End Sub
Public Sub HideSoftware()
Me.boxSoftware.Visible = False
.....
End Sub