Changes

Hints and Recipes for VB6

494 bytes added, 20:24, 12 February 2008
The following lines were added (+) and removed (-):
== Command Line Parameter ==This example was taking from the Sales Logix Assistant Program: Private Function CheckLauncherParamter() ' blnDebug  If InStr(LCase(Command), "/verified") > 0 Then    CheckLauncherParamter = True    blnDebug = False    mnuFileExit.Enabled = False  ElseIf InStr(LCase(Command), "/debug") > 0 Then    CheckLauncherParamter = True    blnDebug = True    mnuFileExit.Enabled = True  Else    CheckLauncherParamter = False  End If End Function
Bureaucrat, administrator
16,192
edits