brocker
15 years agoVisitor
Function vs Sub as Main()
Quick question, why would you use a Function method instead of Sub when declaring Main()? I see several examples that use Function, but I'm not sure why.
EXAMPLES:
as opposed to
Thanks
Bud
EXAMPLES:
Function Main()
initTheme()
End Function
as opposed to
Sub Main()
initTheme()
End Sub
Thanks
Bud