Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public Function LogError(ByVal lErrorNum As Long, _
ByVal sErrorMsg As String, _
ByVal sModuleName As String, _
ByVal sFunctionName As String, _
ByVal eLogDestination As LogDestinationEnum, _
Optional ByVal lErrorLineNum As Long, _
Optional ByVal sErrorData As String) As Boolean
///
///
public bool LogError(int ErrorNum,
string ErrorMsg,
string ModuleName,
string FunctionName,
LogDestinationEnum LogDestination)
{
return LogError(ErrorNum, ErrorMsg,
ModuleName, FunctionName,
LogDestination, 0,
String.Empty);
}
///
///
public bool LogError(long ErrorNum,
string ErrorMsg,
string ModuleName,
string FunctionName,
LogDestinationEnum LogDestination,
int ErrorLineNum)
{
return LogError(ErrorNum, ErrorMsg,
ModuleName, FunctionName,
LogDestination, ErrorLineNum,
String.Empty);
}
///
///
public bool LogError(long ErrorNum,
string ErrorMsg,
string ModuleName,
string FunctionName,
LogDestinationEnum LogDestination,
int ErrorLineNum,
string ErrorData)
{
// Actual code to log errors goes here
}