Click here to Skip to main content
15,914,481 members
Home / Discussions / C#
   

C#

 
QuestionRe: Debugging unmanaged DLL called from managed C# Pin
Chesnokov Yuriy22-Jul-09 20:37
professionalChesnokov Yuriy22-Jul-09 20:37 
QuestionAcess violation exception before Main?!? Pin
Olivier Gautherot21-Jul-09 2:08
Olivier Gautherot21-Jul-09 2:08 
AnswerRe: Acess violation exception before Main?!? Pin
Olivier Gautherot21-Jul-09 2:58
Olivier Gautherot21-Jul-09 2:58 
GeneralRe: Acess violation exception before Main?!? Pin
stancrm21-Jul-09 3:01
stancrm21-Jul-09 3:01 
GeneralRe: Acess violation exception before Main?!? Pin
Olivier Gautherot21-Jul-09 3:04
Olivier Gautherot21-Jul-09 3:04 
AnswerRe: Acess violation exception before Main?!? Pin
stancrm21-Jul-09 2:59
stancrm21-Jul-09 2:59 
GeneralRe: Acess violation exception before Main?!? Pin
Olivier Gautherot21-Jul-09 3:03
Olivier Gautherot21-Jul-09 3:03 
GeneralRe: Acess violation exception before Main?!? Pin
stancrm21-Jul-09 3:06
stancrm21-Jul-09 3:06 
GeneralRe: Acess violation exception before Main?!? Pin
Olivier Gautherot21-Jul-09 3:13
Olivier Gautherot21-Jul-09 3:13 
AnswerRe: Acess violation exception before Main?!? Pin
Luc Pattyn21-Jul-09 3:10
sitebuilderLuc Pattyn21-Jul-09 3:10 
GeneralRe: Acess violation exception before Main?!? Pin
Olivier Gautherot21-Jul-09 3:16
Olivier Gautherot21-Jul-09 3:16 
GeneralRe: Acess violation exception before Main?!? Pin
Olivier Gautherot22-Jul-09 1:33
Olivier Gautherot22-Jul-09 1:33 
GeneralRe: Acess violation exception before Main?!? Pin
Luc Pattyn22-Jul-09 1:37
sitebuilderLuc Pattyn22-Jul-09 1:37 
GeneralRe: Acess violation exception before Main?!? Pin
Olivier Gautherot22-Jul-09 3:03
Olivier Gautherot22-Jul-09 3:03 
GeneralRe: Acess violation exception before Main?!? Pin
Olivier Gautherot27-Jul-09 3:43
Olivier Gautherot27-Jul-09 3:43 
GeneralRe: Acess violation exception before Main?!? Pin
Luc Pattyn27-Jul-09 4:00
sitebuilderLuc Pattyn27-Jul-09 4:00 
GeneralRe: Acess violation exception before Main?!? Pin
Olivier Gautherot22-Jul-09 1:41
Olivier Gautherot22-Jul-09 1:41 
QuestionDoes iTextsharp DLL need license ? Pin
venu2k821-Jul-09 2:00
venu2k821-Jul-09 2:00 
AnswerRe: Does iTextsharp DLL need license ? Pin
stancrm21-Jul-09 2:15
stancrm21-Jul-09 2:15 
AnswerRe: Does iTextsharp DLL need license ? Pin
0x3c021-Jul-09 2:28
0x3c021-Jul-09 2:28 
GeneralRe: Does iTextsharp DLL need license ? Pin
venu2k821-Jul-09 3:12
venu2k821-Jul-09 3:12 
QuestionAuthentication Code in C# Pin
cdewzrd21-Jul-09 1:49
cdewzrd21-Jul-09 1:49 
AnswerRe: Authentication Code in C# Pin
stancrm21-Jul-09 2:45
stancrm21-Jul-09 2:45 
QuestionWindows Messaging Pin
Blubbo21-Jul-09 1:41
Blubbo21-Jul-09 1:41 
QuestionRealtime update of Label Pin
Dowse21-Jul-09 1:35
Dowse21-Jul-09 1:35 
Hi all

I am trying to display the value of a variable in a label.

Easy enough I hear you say, but the variable can be changed by many different methods and functions, (some in dll's,) none of which trigger any specific event that I would normally use to update the label.

I need the label to show the current value of the variable in 'real time.'

public class MyClass
{
    public DateTime datStart;        
    public DateTime datNext;     <======== This is the one I'm trying to show     
    public int intParam1;          
    public int intParam2;           
   //Extra fields removed for clarity
}

And then in my form code:

MyClass _myVar = new MyClass();


I have a label called lblInformation that I would like to always show the value of _myVar.datNext.ToString()

I've spent many hours trying to find a solution so any help will be very much appreciated.

Thank you

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.