High Performance in Winforms

  • Thread starter Alhambra Eidos Desarrollo
  • Start date
A

Alhambra Eidos Desarrollo

Hi all,

I have a form in my application Winforms using .net 2.0 + wcf.

My form has:

DatagridView

BindingSource, that I bind with Entities List that I get from WCF services.

When I showdialog of the form, it slows and datagridview has several issues,
not fast ...

When I close form, my application not responds !!!

any help for get high performance in Windows...


Thanks in advance, kind regards
 
I

Ignacio Machin ( .NET/ C# MVP )

Hi all,

I have a form in my application Winforms using .net 2.0 + wcf.

My form has:

DatagridView

BindingSource, that I bind with Entities List that I get from WCF services.

When I showdialog of the form, it slows and datagridview has several issues,
not fast ...

When I close form, my application not responds !!!

any help for get high performance in Windows...

Thanks in advance, kind regards
--http://www.alhambra-eidos.es/web2005/index...topic.php?p=843www.trabajobasura.com/solusoft

Hi

some code would help.
 
P

Peter Morris

Use a profiler and see where the CPU cycles are being consumed, especially
when you close.
 
U

usenet

Hi all,

I have a form in my application Winforms using .net 2.0 + wcf.

My form has:

DatagridView

BindingSource, that I bind with Entities List that I get from WCF services.

When I showdialog of the form, it slows and datagridview has several issues,
not fast ...

When I close form, my application not responds !!!

any help for get high performance in Windows...

[...]

That usually happens when you have a thread still running and not
closed.

Try calling Application.Exit() explicitly.


Regards,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top