'*************************************************************************
'
'      Author       : Esben Laursen (hyber@hyber.dk)
'      
'      Webpage      : http://www.hyber.dk or http://netsmsgw.sf.net
'
'      Notes        :
'
'      License      : This program is free software; you can redistribute
'                     it and/or modify it under the terms of the GNU
'                     General Public License as published by the Free
'                     Software Foundation version 2 of the License.
'
'*************************************************************************

Module basPublic

    Public Const gstrSMSSetup As String = "Setting up com port"
    Public Const gstrSMSOpenCOM As String = "Opening COM port"
    Public Const gstrSMSAT1 As String = "Sent: ""AT+CMGF=1"" & vbcrlf"
    Public Const gstrSMSAT2 As String = "Send: ""AT+CMGS="""
    Public Const pstrSentSMS As String = "Sent SMS to: "
    Public Const gstrCriticalErr As String = "Critical Error happened in smsTools: "
    Public Const gstrCOMResponse As String = "Reponse from phone: "
    Public Const gstrCOMSend As String = "Sent to phone: "
    Public Const gstrErrSend As String = "An error occured while sending SMS"
    Public Const gstrExpect As String = "Expected: "
    Public Const gstrGot As String = "Got: "
    Public Const gstrStop As String = "Stopping now, or rather the queue will be done and then we stop"
    Public Const gstrPause As String = "Pausing queue now!"
    Public Const gstrResume As String = "Resuming queue now"
    Public Const gstrDelSMSQueue As String = "Removed SMS from queue, ID: "
    Public Const gstrCommProblem As String = "There was a communication problem with phone, we sent a attention cmd, but did not receive a OK back. Let's hope that closing the port and starting from a fresh on next sms solves it."
    Public Const gstrFaked As String = "Message was faked!"


End Module
