Click here to Skip to main content
15,903,175 members
Home / Discussions / Windows Forms
   

Windows Forms

 
QuestionRe: Retaining Drawn Graphics Pin
farzadmf16-Sep-09 0:23
farzadmf16-Sep-09 0:23 
AnswerRe: Retaining Drawn Graphics Pin
Luc Pattyn16-Sep-09 1:52
sitebuilderLuc Pattyn16-Sep-09 1:52 
GeneralRe: Retaining Drawn Graphics Pin
farzadmf16-Sep-09 12:50
farzadmf16-Sep-09 12:50 
Questionwindows service not working Pin
iiiii15-Sep-09 0:00
iiiii15-Sep-09 0:00 
AnswerRe: windows service not working Pin
Dave Kreskowiak16-Sep-09 5:10
mveDave Kreskowiak16-Sep-09 5:10 
GeneralRe: windows service not working Pin
iiiii16-Sep-09 18:47
iiiii16-Sep-09 18:47 
GeneralRe: windows service not working Pin
Dave Kreskowiak17-Sep-09 1:10
mveDave Kreskowiak17-Sep-09 1:10 
QuestionUrgent : How to improve performence ?? Pin
Tejaswini Prashant J14-Sep-09 20:11
Tejaswini Prashant J14-Sep-09 20:11 
Hi,
I am developing a live support application operator console using .net windows forms.
Now in this application it's very important to show the current info in fastest way.
I am showing all the users on site in a list-view control and to show the updated status of online users I am refreshing the list-view control's content by every second.
Now when user will click on any listview record, it will show the details of user ( chat script, geographical info,navigation info) in the bellowed panel.
It works quite fast when it is on my machine. But when I m using the remote database it's TOO SLOW Frown | :(

Now ,
1. What I can do to improve performance ?

2. Shall I go for threading ?
I tried to use use threading like

private void timer_refresh_Tick(object sender, EventArgs e)
{
Thread _timerTickOp = new Thread(TimerTickOperations);
_timerTickOp.Start();
}

private void TimerTickOperations()
{
try
{

UserFacade facade = new UserFacade();
Operators _currentOperator = facade.GetOperator(LoginForm.LoggedInOperatorName);
FillUsers(toolStripCbox_Filter.SelectedIndex);
.....
}


but I m getting err 'Cross-thread operation not valid: Control '' accessed from a thread other than the thread it was created on.'

What should I do to improve performance?
AnswerRe: Urgent : How to improve performence ?? Pin
Luc Pattyn15-Sep-09 15:01
sitebuilderLuc Pattyn15-Sep-09 15:01 
AnswerRe: Urgent : How to improve performence ?? Pin
Eddy Vluggen16-Sep-09 4:34
professionalEddy Vluggen16-Sep-09 4:34 
QuestionUpdating PictureBox control every one minute in windows form Pin
Member 418166914-Sep-09 6:29
Member 418166914-Sep-09 6:29 
AnswerRe: Updating PictureBox control every one minute in windows form Pin
Richard MacCutchan14-Sep-09 8:56
mveRichard MacCutchan14-Sep-09 8:56 
GeneralRe: Updating PictureBox control every one minute in windows form Pin
Luc Pattyn15-Sep-09 15:02
sitebuilderLuc Pattyn15-Sep-09 15:02 
QuestionCan i change the shape of the button as its background image? Pin
CoderForEver13-Sep-09 1:10
CoderForEver13-Sep-09 1:10 
AnswerRe: Can i change the shape of the button as its background image? Pin
dan!sh 13-Sep-09 1:26
professional dan!sh 13-Sep-09 1:26 
GeneralRe: Can i change the shape of the button as its background image? Pin
CoderForEver14-Sep-09 22:06
CoderForEver14-Sep-09 22:06 
GeneralRe: Can i change the shape of the button as its background image? Pin
Henry Minute16-Sep-09 2:41
Henry Minute16-Sep-09 2:41 
GeneralRe: Can i change the shape of the button as its background image? Pin
Richard MacCutchan17-Sep-09 4:41
mveRichard MacCutchan17-Sep-09 4:41 
QuestionOverride Text property in GroupBox Pin
dybs11-Sep-09 19:05
dybs11-Sep-09 19:05 
AnswerRe: Override Text property in GroupBox Pin
geali_dor12-Sep-09 0:36
geali_dor12-Sep-09 0:36 
GeneralRe: Override Text property in GroupBox Pin
dybs12-Sep-09 4:54
dybs12-Sep-09 4:54 
AnswerRe: Override Text property in GroupBox Pin
Henry Minute12-Sep-09 5:47
Henry Minute12-Sep-09 5:47 
GeneralRe: Override Text property in GroupBox Pin
dybs13-Sep-09 14:04
dybs13-Sep-09 14:04 
GeneralRe: Override Text property in GroupBox Pin
Henry Minute13-Sep-09 14:17
Henry Minute13-Sep-09 14:17 
GeneralRe: Override Text property in GroupBox Pin
dybs13-Sep-09 16:00
dybs13-Sep-09 16:00 

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.