Click here to Skip to main content
15,886,689 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
where to use dis code
C#
public static Int16 Comm_Port = 0;
       public static Int32 Comm_BaudRate = 0;
       public static Int32 Comm_TimeOut = 0;
       public static GsmCommMain comm;
   }

please help...
i had included all the gsm comm lib in namespace

[Edit - added further code from OPs comment below CHill60]
private void button1_Click(object sender, EventArgs e)
        {
            GsmCommMain comm = new GsmCommMain("COM4", 19200, 300);

            try
            {
                comm.Open();

                string CELL_Number, SMS_Message;

                SmsSubmitPdu pdu1;
            
                if (comm.IsConnected() == true)
                {
                    if (number.Text.ToString() == "")
                    {
                        MessageBox.Show("Kindly Add Cell Number\r\n\nFor Example\n\n+9231234567", "Information", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                        return;
                    }
                    else if (message.Text.ToString() == "")
                    {
                        MessageBox.Show("Kindly Add Your Message Text", "Information", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                        return;
                    }

                    CELL_Number = number.Text.ToString();
                    SMS_Message = message.Text.ToString();

                    MessageBox.Show("Kindly Re-Check Your SMS & CELL NUMBER \r\n\nCELL # : " + CELL_Number + "\r\n\nMESSAGE TEXT : " + SMS_Message, "SMS INFO", MessageBoxButtons.OKCancel, MessageBoxIcon.Information);

                        Cursor.Current = Cursors.WaitCursor;

                        pdu1 = new SmsSubmitPdu(SMS_Message, CELL_Number, "");

                        comm.SendMessage(pdu1);

                        Cursor.Current = Cursors.Default;

                        MessageBox.Show("M E S S A G E - S E N T", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
                        comm.Close();
                }
            }

                    catch (Exception )
                    {
                        MessageBox.Show("Error Sending SMS To Destination Address\r\n\n Connection Has Been Terminated !!!\r\n\n", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                        
                    }
                }
            }
           
        }

plz help me in sending message...
after the modem shows message box connected ...
the send button showing error plz help.
Posted
Updated 15-Feb-13 6:03am
v3
Comments
Sergey Alexandrovich Kryukov 15-Feb-13 14:18pm    
Please stop re-posting. Put all information in one page.
—SA

1 solution

This looks remarkably similar to a code segment from this code project article[^]
If you read the article carefully and browse the code that is supplied (see the Browse Code link at the top left of the article) then your question will be answered in full
 
Share this answer
 
Comments
pranavjeet 15-Feb-13 6:30am    
private void button1_Click(object sender, EventArgs e)
{
GsmCommMain comm = new GsmCommMain("COM4", 19200, 300);

try
{
comm.Open();

string CELL_Number, SMS_Message;

SmsSubmitPdu pdu1;





if (comm.IsConnected() == true)
{
if (number.Text.ToString() == "")
{
MessageBox.Show("Kindly Add Cell Number\r\n\nFor Example\n\n+9231234567", "Information", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
return;
}
else if (message.Text.ToString() == "")
{
MessageBox.Show("Kindly Add Your Message Text", "Information", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
return;
}

CELL_Number = number.Text.ToString();
SMS_Message = message.Text.ToString();

MessageBox.Show("Kindly Re-Check Your SMS & CELL NUMBER \r\n\nCELL # : " + CELL_Number + "\r\n\nMESSAGE TEXT : " + SMS_Message, "SMS INFO", MessageBoxButtons.OKCancel, MessageBoxIcon.Information);


Cursor.Current = Cursors.WaitCursor;

pdu1 = new SmsSubmitPdu(SMS_Message, CELL_Number, "");

comm.SendMessage(pdu1);

Cursor.Current = Cursors.Default;

MessageBox.Show("M E S S A G E - S E N T", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
comm.Close();
}
}

catch (Exception )
{
MessageBox.Show("Error Sending SMS To Destination Address\r\n\n Connection Has Been Terminated !!!\r\n\n", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);

}
}
}

}

plz help me in sending message...
after the modem shows message box connected ...
the send button showing error plz help.
its urgent
CHill60 15-Feb-13 12:05pm    
If you mean the MessageBox.Show in the catch(Exception) block is shown then try including the Exception.Message in the text so you can see what the error is

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900