Click here to Skip to main content
16,004,901 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How do i call esc key dynamicaly(VB.NET Win forms) Pin
Rajeesh MP30-Mar-09 20:50
Rajeesh MP30-Mar-09 20:50 
AnswerRe: How do i call esc key dynamicaly(VB.NET Win forms) Pin
Christian Graus30-Mar-09 19:57
protectorChristian Graus30-Mar-09 19:57 
AnswerRe: How do i call esc key dynamicaly(VB.NET Win forms) Pin
Abhijit Jana30-Mar-09 20:03
professionalAbhijit Jana30-Mar-09 20:03 
Questionpowershell command automation Pin
deepak__sharma30-Mar-09 18:22
deepak__sharma30-Mar-09 18:22 
AnswerRe: powershell command automation Pin
deepak__sharma31-Mar-09 20:06
deepak__sharma31-Mar-09 20:06 
Questionerror in coding .... plz solve it Pin
nagu4u30-Mar-09 17:14
nagu4u30-Mar-09 17:14 
AnswerRe: error in coding .... plz solve it Pin
N a v a n e e t h30-Mar-09 17:21
N a v a n e e t h30-Mar-09 17:21 
GeneralRe: error in coding .... plz solve it Pin
nagu4u30-Mar-09 18:25
nagu4u30-Mar-09 18:25 
SMSCOMMS as the class name,, but SendSMS are derived the public bool in the coding

public bool SendSMS(string CellNumber, string SMSMessage)
{
string MyMessage = null;
//Check if Message Length <= 160
if (SMSMessage.Length <= 160)
MyMessage = SMSMessage;
else
MyMessage = SMSMessage.Substring(0, 160);
if (IsOpen == true)
{
SMSPort.WriteLine("AT+CMGS=" + CellNumber + "r");
_ContSMS = false;
SMSPort.WriteLine(
MyMessage + System.Environment.NewLine + (char)(26));
_Continue = false;
if (Sending != null)
Sending(false);
}
return false;
}


and derivd again same public bool SendSMS

public bool SendSMS(string CellNumber, string SMSMessage)
{
string MyMessage = null;
if (SMSMessage.Length <= 160)
{
MyMessage = SMSMessage;
}
else
{
MyMessage = SMSMessage.Substring(0, 160);
}
if (IsOpen == true)
{
SMSPort.WriteLine("AT+CMGS=" + CellNumber + "r");
_ContSMS = false;
SMSPort.WriteLine(
MyMessage + System.Environment.NewLine + (char)(26));
_Continue = false;
if (Sending != null)
Sending(false);
}
return false;
}

so error show

Error 1 Type 'SMSCOMMS' already defines a member called 'SendSMS' with the same parameter types..
how can solve it
GeneralRe: error in coding .... plz solve it Pin
Christian Graus30-Mar-09 18:45
protectorChristian Graus30-Mar-09 18:45 
GeneralRe: error in coding .... plz solve it Pin
Eytukan30-Mar-09 19:01
Eytukan30-Mar-09 19:01 
AnswerRe: error in coding .... plz solve it Pin
Christian Graus30-Mar-09 18:25
protectorChristian Graus30-Mar-09 18:25 
QuestionSQL CE | SSCE | 3.5 SP1 | Unable to find the requested .Net Framework Data Provider. It may not be installed. Pin
Glen Harvy30-Mar-09 16:03
Glen Harvy30-Mar-09 16:03 
Question2 questions on an asp.net application with multiple subdomains? Pin
Goalie3530-Mar-09 13:29
Goalie3530-Mar-09 13:29 
AnswerRe: 2 questions on an asp.net application with multiple subdomains? Pin
Colin Angus Mackay30-Mar-09 13:35
Colin Angus Mackay30-Mar-09 13:35 
QuestionHiding &lt;div&gt; OnSelectedIndexChanged Pin
asipo30-Mar-09 12:27
asipo30-Mar-09 12:27 
AnswerRe: Hiding &lt;div&gt; OnSelectedIndexChanged Pin
Goalie3530-Mar-09 13:52
Goalie3530-Mar-09 13:52 
GeneralRe: Hiding &lt;div&gt; OnSelectedIndexChanged Pin
asipo30-Mar-09 14:54
asipo30-Mar-09 14:54 
GeneralRe: Hiding &lt;div&gt; OnSelectedIndexChanged Pin
Mogaambo30-Mar-09 19:13
Mogaambo30-Mar-09 19:13 
AnswerRe: Hiding &lt;div&gt; OnSelectedIndexChanged Pin
i gr830-Mar-09 21:26
i gr830-Mar-09 21:26 
QuestionManejo de frame en ASP.net Pin
viviana charcas cortez30-Mar-09 11:41
viviana charcas cortez30-Mar-09 11:41 
AnswerRe: Manejo de frame en ASP.net Pin
Yusuf30-Mar-09 11:58
Yusuf30-Mar-09 11:58 
QuestionDebuggubd ashx file Pin
OrsaPoison30-Mar-09 11:00
OrsaPoison30-Mar-09 11:00 
AnswerRe: Debuggubd ashx file Pin
Yusuf30-Mar-09 11:25
Yusuf30-Mar-09 11:25 
GeneralRe: Debuggubd ashx file Pin
OrsaPoison30-Mar-09 11:43
OrsaPoison30-Mar-09 11:43 
GeneralRe: Debuggubd ashx file Pin
Yusuf30-Mar-09 12:00
Yusuf30-Mar-09 12:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.