i had written the code in my form
Expand|Select|Wrap|Line Numbers
- Public Function HoldType(ByRef sType As String) As String
- If bOkClicked Then
- sType = "Rehold "
- End If
- If bOk1Clicked Then
- sType = "MultipleHold"
- End If
- End Function
i want to call it in my module as below
Expand|Select|Wrap|Line Numbers
- Public Function HoldReleaseLot(sActionType As String) As String
- Call HoldType ()
Kindly help