Click here to Skip to main content
15,895,962 members
Home / Discussions / C#
   

C#

 
AnswerRe: Show the list of users at each client Pin
tamir90123-Jul-09 2:18
tamir90123-Jul-09 2:18 
QuestionSharing common enum with main app and class library Pin
souren7722-Jul-09 18:34
souren7722-Jul-09 18:34 
AnswerRe: Sharing common enum with main app and class library Pin
Adam R Harris22-Jul-09 19:11
Adam R Harris22-Jul-09 19:11 
GeneralRe: Sharing common enum with main app and class library Pin
souren7722-Jul-09 19:22
souren7722-Jul-09 19:22 
GeneralRe: Sharing common enum with main app and class library Pin
Tamer Oz22-Jul-09 20:16
Tamer Oz22-Jul-09 20:16 
GeneralRe: Sharing common enum with main app and class library Pin
PIEBALDconsult23-Jul-09 6:30
mvePIEBALDconsult23-Jul-09 6:30 
GeneralRe: Sharing common enum with main app and class library Pin
souren7723-Jul-09 6:33
souren7723-Jul-09 6:33 
GeneralRe: Sharing common enum with main app and class library Pin
Adam R Harris23-Jul-09 6:57
Adam R Harris23-Jul-09 6:57 
QuestionReading XML file From C# Pin
maheesh22-Jul-09 17:39
maheesh22-Jul-09 17:39 
AnswerRe: Reading XML file From C# Pin
Christian Graus22-Jul-09 18:16
protectorChristian Graus22-Jul-09 18:16 
AnswerRe: Reading XML file From C# Pin
harold aptroot22-Jul-09 18:21
harold aptroot22-Jul-09 18:21 
AnswerRe: Reading XML file From C# Pin
infneeta22-Jul-09 20:54
infneeta22-Jul-09 20:54 
QuestionMS CRM 4.0 - SQL Reporting Services Pin
onetreeup22-Jul-09 10:09
onetreeup22-Jul-09 10:09 
AnswerRe: MS CRM 4.0 - SQL Reporting Services Pin
Adam R Harris23-Jul-09 7:01
Adam R Harris23-Jul-09 7:01 
QuestionIncrementing a Progress Bar in DAL layer Pin
Wheels01222-Jul-09 9:43
Wheels01222-Jul-09 9:43 
AnswerRe: Incrementing a Progress Bar in DAL layer Pin
Abhijit Jana22-Jul-09 9:48
professionalAbhijit Jana22-Jul-09 9:48 
GeneralRe: Incrementing a Progress Bar in DAL layer Pin
Wheels01223-Jul-09 1:24
Wheels01223-Jul-09 1:24 
AnswerRe: Incrementing a Progress Bar in DAL layer Pin
PIEBALDconsult22-Jul-09 14:16
mvePIEBALDconsult22-Jul-09 14:16 
GeneralRe: Incrementing a Progress Bar in DAL layer Pin
Wheels01223-Jul-09 8:15
Wheels01223-Jul-09 8:15 
GeneralRe: Incrementing a Progress Bar in DAL layer Pin
Abhijit Jana23-Jul-09 10:40
professionalAbhijit Jana23-Jul-09 10:40 
GeneralRe: Incrementing a Progress Bar in DAL layer Pin
Wheels01224-Jul-09 1:18
Wheels01224-Jul-09 1:18 
GeneralRe: Incrementing a Progress Bar in DAL layer Pin
PIEBALDconsult24-Jul-09 4:36
mvePIEBALDconsult24-Jul-09 4:36 
QuestionPointers to events. Pin
Douglas Kirk22-Jul-09 9:37
Douglas Kirk22-Jul-09 9:37 
I have created a class object to diplay information.

It is a Panel with a Button on it.
When the Button is pressed it process some data and displays the data on the Panel on Labels, etc.

The end result (After clicking a Button on my DisplayClass)is a value that I want passed back to the Form that has my DisplayClass on.

I had though that I could pass a pointer to a function to my Display class and have it call it that would drive code on my main form, but I can't figure it out. Frown | :(

TestDisplay = new UsageDisplayPanelClass();
TestDisplay.Location = new System....
TestDisplay.Size = new Syste....
TestDisplay.Click += new System.EventHandler(TestDisplayClick);

The Click event never gets back to my main program because it is captured through a Button.Click in my TestDisplay Class

Is there a way to have both my Class handle the button click then have the event resent to my main program?

Thank you in Advance
Douglas
AnswerRe: Pointers to events. Pin
Luc Pattyn22-Jul-09 10:28
sitebuilderLuc Pattyn22-Jul-09 10:28 
AnswerRe: Pointers to events. Pin
Gideon Engelberth22-Jul-09 12:43
Gideon Engelberth22-Jul-09 12:43 

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.