Or, shorthand:

Function StringValue( Extends b As Boolean ) As String

If b Then Return "True"
Return "False"

End Function

Ronald Vogelaar
http://www.rovosoft.com





I do the same thing; for instance --

Function StringValue(extends b as Boolean) as String
  if b then
    return "True"
  else
    return "False"
  end if
End Function

Charles Yeomans
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to