Advertisement
Advertisement
| 07.08.2008 at 07:14AM PDT, ID: 23546682 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: |
Function MyFunction98( p_strParm0, p_strParm1, p_strParm2, p_strParm3 )
If ( p_strParm0 = "01" or p_strParm0 = "02" ) Then
MyFunction98 = CDbl("0001")
End If
If p_strParm0 = "28" Then
MyFunction98 = CDbl(p_strParm1)
End If
If (p_strParm0 <> "01" and p_strParm0 <> "02" and p_strParm0 <> "28") Then
MyFunction98 = p_strParm3
End If
End Function
|