hi friends can anyone explain to me what does below code do;
Code:
Function SendSMS(ByVal MobNo, ByVal Msg)
    Dim what As Boolean

    what = sendIt("AT+CMGS=" & Chr(34) & MobNo & Chr(34), ">", "ERROR")
    If what = True Then
        what = sendIt(Msg & Chr(26), "OK", "ERROR")
    End If
    AT = "UTF-8"
    SendSMS = what
End Function
thanks