Syntax
Public Sub AddEntry(entry As String) As Boolean
Description
This function is used to add any string to the log file.
Parameters
Key | Description |
entry | Specific string to be added to the log file, a value of type String. |
Return value
Returns true if the entry added otherwise returns false.
Example
Public Sub Main() LogEnabled =true FileLogName=D/FileName Dim Res Res = AddEntry (Hello) AlertMessage res End Sub
See Also