Click here to Skip to main content
15,917,176 members
Home / Discussions / C#
   

C#

 
AnswerRe: Designing subclass references Pin
Martin#28-Mar-07 23:17
Martin#28-Mar-07 23:17 
AnswerRe: how to Access the tables information from MS-Access to forms in c# Pin
Tamimi - Code28-Mar-07 23:15
Tamimi - Code28-Mar-07 23:15 
GeneralRe: how to Access the tables information from MS-Access to forms in c# Pin
Pete O'Hanlon29-Mar-07 0:44
mvePete O'Hanlon29-Mar-07 0:44 
GeneralRe: how to Access the tables information from MS-Access to forms in c# Pin
Raheem MA29-Mar-07 0:48
Raheem MA29-Mar-07 0:48 
GeneralRe: how to Access the tables information from MS-Access to forms in c# Pin
Raheem MA29-Mar-07 1:16
Raheem MA29-Mar-07 1:16 
GeneralRe: how to Access the tables information from MS-Access to forms in c# Pin
Tamimi - Code29-Mar-07 1:55
Tamimi - Code29-Mar-07 1:55 
QuestionHow to monitor an object in program Pin
bengoan28-Mar-07 22:57
bengoan28-Mar-07 22:57 
AnswerRe: How to monitor an object in program Pin
Martin#28-Mar-07 23:09
Martin#28-Mar-07 23:09 
Hello,

Make an property out of your object and fire your event in the properties setter, if the value changes.
private object _yourobject;
 
public object YourObject
{
    get
    {
        return _yourobject;
    }
    set
    {
        if(value!=_yourobject)
        {
            _yourobject = value;
            //Fire your event here
        }
    }
}

All the best,

Martin
AnswerRe: How to monitor an object in program Pin
darkcalin28-Mar-07 23:11
darkcalin28-Mar-07 23:11 
AnswerRe: How to monitor an object in program Pin
bengoan28-Mar-07 23:28
bengoan28-Mar-07 23:28 
GeneralRe: How to monitor an object in program Pin
Martin#29-Mar-07 0:03
Martin#29-Mar-07 0:03 
GeneralRe: How to monitor an object in program Pin
Colin Angus Mackay29-Mar-07 0:33
Colin Angus Mackay29-Mar-07 0:33 
GeneralRe: How to monitor an object in program Pin
Martin#29-Mar-07 0:52
Martin#29-Mar-07 0:52 
GeneralRe: How to monitor an object in program Pin
bengoan29-Mar-07 3:04
bengoan29-Mar-07 3:04 
QuestionXmlreader help Pin
drifters28-Mar-07 22:33
drifters28-Mar-07 22:33 
AnswerRe: Xmlreader help Pin
Pete O'Hanlon28-Mar-07 22:40
mvePete O'Hanlon28-Mar-07 22:40 
GeneralRe: Xmlreader help Pin
drifters28-Mar-07 22:50
drifters28-Mar-07 22:50 
Questioncollection collection ? Pin
peterchen28-Mar-07 22:11
peterchen28-Mar-07 22:11 
QuestionListview Pin
Hampus@foi28-Mar-07 21:45
Hampus@foi28-Mar-07 21:45 
QuestionxmlWriter porblem Pin
Amr M. K.28-Mar-07 21:43
Amr M. K.28-Mar-07 21:43 
AnswerRe: xmlWriter porblem Pin
Stefan Troschuetz28-Mar-07 23:02
Stefan Troschuetz28-Mar-07 23:02 
GeneralEvent Logging Strategy and Architecture Pin
Brady Kelly28-Mar-07 21:19
Brady Kelly28-Mar-07 21:19 
Questionsending string data to parallel port? Pin
Rohit Dev28-Mar-07 21:10
Rohit Dev28-Mar-07 21:10 
AnswerRe: sending string data to parallel port? Pin
m@u28-Mar-07 23:17
m@u28-Mar-07 23:17 
GeneralRe: sending string data to parallel port? Pin
Rohit Dev29-Mar-07 20:21
Rohit Dev29-Mar-07 20:21 

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.