Click here to Skip to main content
15,891,423 members
Home / Discussions / C#
   

C#

 
AnswerRe: Lotus Notes Pin
Dan Neely17-Mar-09 9:44
Dan Neely17-Mar-09 9:44 
GeneralRe: Lotus Notes Pin
dan!sh 17-Mar-09 10:36
professional dan!sh 17-Mar-09 10:36 
GeneralRe: Lotus Notes Pin
Dan Neely17-Mar-09 11:07
Dan Neely17-Mar-09 11:07 
GeneralRe: Lotus Notes Pin
dan!sh 17-Mar-09 19:45
professional dan!sh 17-Mar-09 19:45 
GeneralRe: Lotus Notes Pin
Vikram A Punathambekar17-Mar-09 20:40
Vikram A Punathambekar17-Mar-09 20:40 
QuestionNewbie Question Pin
kruegersck17-Mar-09 7:57
kruegersck17-Mar-09 7:57 
AnswerRe: Newbie Question Pin
DaveyM6917-Mar-09 8:29
professionalDaveyM6917-Mar-09 8:29 
AnswerRe: Newbie Question Pin
Natza Mitzi17-Mar-09 10:25
Natza Mitzi17-Mar-09 10:25 
I will vote for the boolean. Here is an example:


private bool mInUpdate;

private void LoadControlWithData()
{
//I want to keep the last mode

bool lastUpdateMode = mInUpdate;

try
{
mInUpdate = true;

//Update code goes here
}
finally
{
//restore the last flag
mInUpdate = lastUpdateMode;
}

}

private void textBox1_TextChanged(....)
{

//Test the update flag
if(!mInUpdate)
{
//Not in update lets do stuff
}

}

Natza Mitzi

Questionaccessing members without reflection. Pin
Member 232448317-Mar-09 7:50
Member 232448317-Mar-09 7:50 
AnswerRe: accessing members without reflection. Pin
0x3c017-Mar-09 8:03
0x3c017-Mar-09 8:03 
GeneralRe: accessing members without reflection. Pin
Member 232448317-Mar-09 8:19
Member 232448317-Mar-09 8:19 
AnswerRe: accessing members without reflection. [modified] Pin
Mbah Dhaim17-Mar-09 9:15
Mbah Dhaim17-Mar-09 9:15 
GeneralRe: accessing members without reflection. Pin
Member 232448317-Mar-09 9:44
Member 232448317-Mar-09 9:44 
GeneralRe: accessing members without reflection. Pin
Natza Mitzi17-Mar-09 10:31
Natza Mitzi17-Mar-09 10:31 
QuestionC# DLL Events Catching. Pin
Navneet Hegde17-Mar-09 6:00
Navneet Hegde17-Mar-09 6:00 
AnswerRe: C# DLL Events Catching. [modified] Pin
fly90417-Mar-09 6:14
fly90417-Mar-09 6:14 
GeneralRe: C# DLL Events Catching. Pin
Navneet Hegde17-Mar-09 7:54
Navneet Hegde17-Mar-09 7:54 
GeneralRe: C# DLL Events Catching. Pin
fly90417-Mar-09 8:42
fly90417-Mar-09 8:42 
GeneralRe: C# DLL Events Catching. Pin
Navneet Hegde17-Mar-09 10:05
Navneet Hegde17-Mar-09 10:05 
Questionhow can i send data by using connection of another program? Pin
Frozzeg17-Mar-09 5:45
Frozzeg17-Mar-09 5:45 
AnswerRe: how can i send data by using connection of another program? Pin
Eddy Vluggen17-Mar-09 5:50
professionalEddy Vluggen17-Mar-09 5:50 
AnswerRe: how can i send data by using connection of another program? Pin
musefan17-Mar-09 5:59
musefan17-Mar-09 5:59 
GeneralRe: how can i send data by using connection of another program? Pin
Frozzeg17-Mar-09 6:03
Frozzeg17-Mar-09 6:03 
GeneralRe: how can i send data by using connection of another program? Pin
musefan17-Mar-09 6:06
musefan17-Mar-09 6:06 
GeneralRe: how can i send data by using connection of another program? Pin
Frozzeg17-Mar-09 6:19
Frozzeg17-Mar-09 6:19 

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.