![]() |
Difference between End function and Exit function ?
what's different between End function and Exit function ?
|
Re: Difference between End function and Exit function ?
End function is the last statement of the function where as if you wish to end the function somewhere during some conditional exit function should be used.
|
Re: Difference between End function and Exit function ?
Thanks a lot!
i'm writing a simple application by VB and there is a fault. I appreciate any help. in my code i use a function : Private Function HexString(ByVal EvalString As String) As String ...... end function and i call it for specified purpose : ...... s = HexString( Byval EvalString As string) ..... but the VB warms me an error "expression expected" @ Byval . i don't know how to correct it |
Re: Difference between End function and Exit function ?
i solved the case. the call function should be :
...... Dim ss As String ss = HexString(s) ...... |
Re: Difference between End function and Exit function ?
Great to see that.
|
| All times are GMT +5.5. The time now is 03:06. |