After upgrading to NT 12.02 I'm getting compile errors my forms with decimal values in the StoreMem Routine.
StoreMem Routine
If p_web.IfExistsValue('UsedFullAddress') = 0 and p_web.IfExistsSessionValue('UsedFullAddress') = 0
p_web.SetSessionValue('UsedFullAddress',UsedFullAddress)
Else
UsedFullAddress = p_web.GetSessionValue('UsedFullAddress')
End
SubTotal = 14,2 ! decimal(14
If p_web.IfExistsValue('SubTotal') = 0 and p_web.IfExistsSessionValue('SubTotal') = 0
p_web.SetSessionValue('SubTotal',SubTotal)
Else
SubTotal = p_web.GetSessionValue('SubTotal')
End
SubTotal is Decimal(14,2). I'm not sure why the point of "SubTotal = 14,2 ! decimal(14" is. Other variable types don't have a similar line.
Thank You
Matthew