Mega Code Archive

 
Categories / Delphi / Examples
 

Parameter exists

You will need the function in this article (http://www.howtodothings.com/ViewArticle.aspx?Article=760) to get this working properly function ParamExists(const ParamName: string): Boolean; var S: string; begin Result := GetParameterValue(ParamName, ['/', '-'], ':', S); end;