Topic: Subroutine Examples
Not finding your answer? Try searching the web for Subroutine Examples
Answers to Common Questions
How would you pass a variable value to a subroutine in the follow...
Something like: Private Sub Bank_Click() ... Bank_Edit strBankName End Sub ----------------------------------------------------------- Private Sub Bank_Edit(strBank as String) (the called sub routine, would have the... Read More »
Source: http://www.experts-exchange.com/Software/Office_Productivity/Offi...
Why does the following example not work? Variant array, passed By...
try to call one of these ways: SortArray AnArray call SortArray (AnArray) reason: using brackets without the call will pass the argument byval, overriding the parameter setting of byref. Read More »
Source: http://www.experts-exchange.com/Q_21751609.htm
Featured Content:
Subroutine Examples