Article Details
Id:9734
Product:finPOWER Connect
Type:FIX
Version:1.04.05
Opened:28/02/2012
Closed:28/02/2012
Released:02/03/2012
Job: J009102

Debug.Clear business layer functionality now clears Debug textbox on Scripts form

The Debug.Clear() business layer method now clears the Debug textbox on the Scripts form.

A sample 'General' Script to use this Debug functionality is shown below:

Public Function Main(ByVal parameters As ISKeyValueList) As Boolean

  Dim i As Integer
  
  ' Assume Success
  Main = True
  
  For i = 1 To 30
    System.Threading.Thread.CurrentThread.Sleep(50)
    If i Mod 10 = 1 Then finBL.DebugClear()
    finBL.DebugPrint(CStr(i))
  Next

End Function