January 1, 2005

WinTask - Max$

'
' Max$
'
' Author: Joe Strazzere

'

Function Max$(str1$,str2$)
  If str1$ > str2$ then
    Max$ = str1$
  Else
    Max$ = str2$
  EndIf
EndFunction
msgbox(max$("A","a"))