Click here to Skip to main content
15,889,724 members
Home / Discussions / C#
   

C#

 
Questionproblem in calling a dll file Pin
kandy_soliton13-Aug-07 22:47
kandy_soliton13-Aug-07 22:47 
AnswerRe: problem in calling a dll file Pin
Giorgi Dalakishvili13-Aug-07 22:51
mentorGiorgi Dalakishvili13-Aug-07 22:51 
GeneralRe: problem in calling a dll file Pin
kandy_soliton13-Aug-07 23:57
kandy_soliton13-Aug-07 23:57 
GeneralRe: problem in calling a dll file Pin
Giorgi Dalakishvili14-Aug-07 0:01
mentorGiorgi Dalakishvili14-Aug-07 0:01 
GeneralRe: problem in calling a dll file Pin
N a r e s h P a t e l14-Aug-07 0:50
N a r e s h P a t e l14-Aug-07 0:50 
GeneralRe: problem in calling a dll file [modified] Pin
Liam O'Hagan14-Aug-07 19:22
Liam O'Hagan14-Aug-07 19:22 
GeneralRe: problem in calling a dll file Pin
kandy_soliton21-Aug-07 19:35
kandy_soliton21-Aug-07 19:35 
QuestionSlow UI updation problem Pin
getnanda@gmail.com13-Aug-07 22:46
getnanda@gmail.com13-Aug-07 22:46 
I am using 400 text box in my Form. Updating Text property of all the 400 Text boxes in the Form takes more than 30 milliseconds. Is there any way to reduce this time in c# .net.

//Sample code
//t2 is the array of 400 Text boxes.

DateTime dt = DateTime.Now;
for (int i = 0; i < 400; i++)
t2[i].Text = i.ToString();
MessageBox.Show(((TimeSpan)(DateTime.Now - dt)).Milliseconds.ToString());

Nanda
AnswerRe: Slow UI updation problem Pin
Pete O'Hanlon13-Aug-07 22:59
mvePete O'Hanlon13-Aug-07 22:59 
GeneralRe: Slow UI updation problem Pin
getnanda@gmail.com13-Aug-07 23:16
getnanda@gmail.com13-Aug-07 23:16 
GeneralRe: Slow UI updation problem Pin
Martin#13-Aug-07 23:27
Martin#13-Aug-07 23:27 
GeneralRe: Slow UI updation problem Pin
getnanda@gmail.com13-Aug-07 23:31
getnanda@gmail.com13-Aug-07 23:31 
GeneralRe: Slow UI updation problem Pin
Martin#13-Aug-07 23:34
Martin#13-Aug-07 23:34 
GeneralRe: Slow UI updation problem Pin
Pete O'Hanlon13-Aug-07 23:42
mvePete O'Hanlon13-Aug-07 23:42 
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 
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 

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.