Click here to Skip to main content
15,888,302 members
Home / Discussions / C#
   

C#

 
GeneralRe: Slow UI updation problem Pin
Martin#13-Aug-07 23:49
Martin#13-Aug-07 23:49 
AnswerRe: Slow UI updation problem Pin
Tamimi - Code13-Aug-07 23:29
Tamimi - Code13-Aug-07 23:29 
GeneralRe: Slow UI updation problem Pin
Martin#13-Aug-07 23:32
Martin#13-Aug-07 23:32 
GeneralRe: Slow UI updation problem Pin
getnanda@gmail.com13-Aug-07 23:50
getnanda@gmail.com13-Aug-07 23:50 
GeneralRe: Slow UI updation problem Pin
J4amieC13-Aug-07 23:57
J4amieC13-Aug-07 23:57 
GeneralRe: Slow UI updation problem Pin
getnanda@gmail.com14-Aug-07 0:08
getnanda@gmail.com14-Aug-07 0:08 
GeneralRe: Slow UI updation problem Pin
sathish s14-Aug-07 0:01
sathish s14-Aug-07 0:01 
GeneralRe: Slow UI updation problem Pin
Pete O'Hanlon14-Aug-07 0:09
mvePete O'Hanlon14-Aug-07 0:09 
You're updating every millisecond? You physically won't be able to see those changes so it is much more reasonable to expect your design to refresh every n milliseconds (you determine n), and log the data to an external source.

A better design though, would be to have each item exposed as a bindable object, and have a check on your property to say (effectively) if my new value is different from my old value, then update my new value and raise a PropertyChanged event on that property. This way, only those values that change get updated. Take a look at INotifyPropertyChanged for guidance on how to do this.

Deja View - the feeling that you've seen this post before.

GeneralRe: Slow UI updation problem Pin
Colin Angus Mackay14-Aug-07 0:31
Colin Angus Mackay14-Aug-07 0:31 
AnswerRe: Slow UI updation problem Pin
Luc Pattyn14-Aug-07 0:42
sitebuilderLuc Pattyn14-Aug-07 0:42 
GeneralRe: Slow UI updation problem Pin
Dave Kreskowiak14-Aug-07 3:29
mveDave Kreskowiak14-Aug-07 3:29 
GeneralRe: Slow UI updation problem Pin
Luc Pattyn14-Aug-07 5:58
sitebuilderLuc Pattyn14-Aug-07 5:58 
GeneralRe: Slow UI updation problem Pin
Pete O'Hanlon14-Aug-07 9:32
mvePete O'Hanlon14-Aug-07 9:32 
GeneralRe: Slow UI updation problem Pin
Luc Pattyn14-Aug-07 13:26
sitebuilderLuc Pattyn14-Aug-07 13:26 
GeneralRe: Slow UI updation problem Pin
Pete O'Hanlon14-Aug-07 22:00
mvePete O'Hanlon14-Aug-07 22:00 
AnswerRe: Slow UI updation problem Pin
N a r e s h P a t e l14-Aug-07 0:48
N a r e s h P a t e l14-Aug-07 0:48 
GeneralRe: Slow UI updation problem Pin
Luc Pattyn14-Aug-07 1:46
sitebuilderLuc Pattyn14-Aug-07 1:46 
QuestionHow can i know the return code of Com Interop? Pin
Yanshof13-Aug-07 22:40
Yanshof13-Aug-07 22:40 
AnswerRe: How can i know the return code of Com Interop? Pin
Pete O'Hanlon14-Aug-07 5:09
mvePete O'Hanlon14-Aug-07 5:09 
QuestionOpen an excel file Pin
sujithkumarsl13-Aug-07 22:29
sujithkumarsl13-Aug-07 22:29 
AnswerRe: Open an excel file Pin
Giorgi Dalakishvili13-Aug-07 22:39
mentorGiorgi Dalakishvili13-Aug-07 22:39 
GeneralRe: Open an excel file Pin
sujithkumarsl13-Aug-07 22:59
sujithkumarsl13-Aug-07 22:59 
GeneralRe: Open an excel file Pin
Giorgi Dalakishvili13-Aug-07 23:03
mentorGiorgi Dalakishvili13-Aug-07 23:03 
GeneralRe: Open an excel file Pin
sujithkumarsl13-Aug-07 23:07
sujithkumarsl13-Aug-07 23:07 
GeneralRe: Open an excel file Pin
Giorgi Dalakishvili13-Aug-07 23:10
mentorGiorgi Dalakishvili13-Aug-07 23:10 

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.