I am having the same issue!
I upgraded to Ver 2.02. Now I am trying to use the Class Modules, but it seems that I cannot call a function in a code module from the new Class Module.
Here is Sample....
'Class module
Sub Class_Globals
Private nBalance As Double ' I played with Private and/or Public
End Sub
Public Sub Initialize(data As Map)
nBalance = data.GetDefault("BalanceDue","0")
End Sub
Public Sub GetBalance As String
Dim sResult As String
sResult = Common.ExtractMoney(nBalance)
Return sResult
End Sub
... Where Extract Money is a Code Module (named Common) ...
Sub ExtractMoney(RowCol As Double) As String
Dim sResult As String
sResult = "$ " & NumberFormat2(RowCol,1,2,2,False)
Return sResult
End Sub
.... Thanks in advance for any information
Robert