Click here to Skip to main content
15,922,894 members
Home / Discussions / C#
   

C#

 
GeneralRe: help me about information extraction Pin
daicapeter11-Jan-09 23:35
daicapeter11-Jan-09 23:35 
GeneralRe: help me about information extraction Pin
Abhijit Jana11-Jan-09 23:38
professionalAbhijit Jana11-Jan-09 23:38 
AnswerRe: help me about information extraction Pin
Christian Graus12-Jan-09 0:21
protectorChristian Graus12-Jan-09 0:21 
AnswerRe: help me about information extraction [modified] Pin
Luc Pattyn12-Jan-09 3:03
sitebuilderLuc Pattyn12-Jan-09 3:03 
GeneralRe: help me about information extraction Pin
EliottA12-Jan-09 3:20
EliottA12-Jan-09 3:20 
AnswerRe: help me about information extraction Pin
Ravi Bhavnani12-Jan-09 9:04
professionalRavi Bhavnani12-Jan-09 9:04 
QuestionRetrieve Antivirus Information. Pin
banker_kiran11-Jan-09 23:18
banker_kiran11-Jan-09 23:18 
AnswerRe: Retrieve Antivirus Information. Pin
Abhijit Jana11-Jan-09 23:51
professionalAbhijit Jana11-Jan-09 23:51 
GeneralRe: Retrieve Antivirus Information. Pin
banker_kiran12-Jan-09 0:09
banker_kiran12-Jan-09 0:09 
AnswerRe: Retrieve Antivirus Information. Pin
Abhijit Jana12-Jan-09 1:16
professionalAbhijit Jana12-Jan-09 1:16 
QuestionMS Access identifing primary key. Pin
Nanda_MR11-Jan-09 23:17
Nanda_MR11-Jan-09 23:17 
AnswerRe: MS Access identifing primary key. Pin
SeMartens11-Jan-09 23:40
SeMartens11-Jan-09 23:40 
GeneralRe: MS Access identifing primary key. Pin
Nanda_MR12-Jan-09 0:03
Nanda_MR12-Jan-09 0:03 
GeneralRe: MS Access identifing primary key. Pin
SeMartens12-Jan-09 0:53
SeMartens12-Jan-09 0:53 
GeneralRe: MS Access identifing primary key. Pin
Nanda_MR12-Jan-09 1:24
Nanda_MR12-Jan-09 1:24 
GeneralRe: MS Access identifing primary key. Pin
Pete O'Hanlon12-Jan-09 2:09
mvePete O'Hanlon12-Jan-09 2:09 
Questionhow to create tables in c# Pin
lawrenceinba11-Jan-09 23:15
lawrenceinba11-Jan-09 23:15 
AnswerRe: how to create tables in c# Pin
SeMartens11-Jan-09 23:25
SeMartens11-Jan-09 23:25 
GeneralRe: how to create tables in c# Pin
lawrenceinba11-Jan-09 23:40
lawrenceinba11-Jan-09 23:40 
GeneralRe: how to create tables in c# Pin
benjymous11-Jan-09 23:50
benjymous11-Jan-09 23:50 
GeneralRe: how to create tables in c# Pin
SeMartens11-Jan-09 23:51
SeMartens11-Jan-09 23:51 
GeneralRe: how to create tables in c# Pin
lawrenceinba12-Jan-09 3:49
lawrenceinba12-Jan-09 3:49 
AnswerRe: how to create tables in c# Pin
rah_sin11-Jan-09 23:29
professionalrah_sin11-Jan-09 23:29 
GeneralRe: how to create tables in c# Pin
lawrenceinba11-Jan-09 23:56
lawrenceinba11-Jan-09 23:56 
QuestionSystemState - Windows Mobile Help Pin
pfffffffff11-Jan-09 23:06
pfffffffff11-Jan-09 23:06 
Hi all,

I'm just wondering if there is a way around this problem:

Basically, when an incoming call comes in and then it is missed, the event fires and grabs the last name and number of the caller. The problem being is that there are two lines added that are identical to the listbox.

SystemState MySysState = new SystemState(SystemProperty.PhoneMissedCall);
MySysState.Changed += new ChangeEventHandler(MySysState _Changed);

void MySysState Changed(object sender, ChangeEventArgs args)
{
ListBox1.Add(SystemState.PhoneLastIncomingCallerName.ToString() + ": " + ListBox1.Add(SystemState.PhoneLastIncomingCallerNumber.ToString());


}

MySysState is being declared in the form load, btw.

Could anyone point me in the right direction?


Thanks in advance.

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.