|
楼主 |
发表于 2011-12-18 03:15
|
显示全部楼层
例如将原来的这句代码
If OptionButton1.value = True Then
.Text = IIf(Fetion.SendMsg(HM, NR) = True, "已发送成功", "失败")
Else
.Text = IIf(Fetion.SendShortMsg(HM, NR) = True, "已发送成功", "失败")
End If
改为:
If OptionButton1.value = True Then
MM = Fetion.SendMsg(HM, NR)
.Text = IIf(MM = True, "已发送成功", "失败")
Fetion.SendMsg FSF, "您向" & HM & "发送的信息" & IIf(MM = True, "已成功!!", "失败!!")
Else
MN = Fetion.SendShortMsg(HM, NR)
.Text = IIf(MN = True, "已发送成功", "失败")
Fetion.SendShortMsg FSF, "您向" & HM & "发送的信息" & IIf(MN = True, "已成功!!", "失败!!")
End If |
|