Questions tagged [toolstripstatuslabel]

26 questions
0
votes
0 answers

"An object reference is required for the non-static field, method, or property" with toolstripstatus

I get the error written in the title using toolstripstatus in the line serverstatus.Text = "Server Online " + totalTime + " ms"; and serverstatus.Text = "Server Offline"; every X second the stripstatus (serverstatus) will update the clients if the…
Pietro Ariano
  • 113
  • 1
  • 2
  • 12
0
votes
1 answer

How to update ToolStripStatusLabel Text from a method passing all the controls on the form

I have a method to reset some controls on my form. I'm able to get the method to work except for the ToolStripStatusLabel named "tsStatusLabelInfo". This control is not passed to the resetForm() method. I believe that it is part of the…
Joaquin
  • 205
  • 2
  • 5
0
votes
0 answers

Changing the statuslabel.text on the GUI thread from inside a STA thread

I have tried to access a GUI element (a ToolStripStatusLabel) from inside a STA thread. Im having all sorts of issues trying to get invoke on it, thats becuase now i know there is no invoke for ToolStripStatusLabel, my latest error is: Error 1…
scott
  • 1,531
  • 2
  • 16
  • 29
0
votes
2 answers

ToolStripStatusLabel not behaving like other typelike controls

Im having some trouble with a ToolStripStatusLabel in Winforms application. To better explain i have some code here bottomLbl.Text = "Adding file(s) to list..."; this.Text = "Adding file(s) to list..."; listAllFiles(carrier, type, chkListBox,…
Daniel Jørgensen
  • 1,183
  • 2
  • 19
  • 42
0
votes
1 answer

Winforms StatusStrip - why are there periods where it is blank when I'm updating it?

BACKGROUND: I have a WindowForms v3.5 application with a StatusStrip set to be used as a TooStripStatusLabel. I'm issues quite a lot of updates to it during a task that is running, however there are noticable periods where it is BLANK. There are…
Greg
  • 34,042
  • 79
  • 253
  • 454
0
votes
1 answer

c# Unable to set the size of the ToolStripStatusLabel?

In the toolstripstatuslabel, I'm adding images and displaying it as shown below. Case 1: Setting the image list size [Not working] Case 2: Setting the size of the label.[Not working] In both the above cases, size is not getting reflected.…
Akaanthan Ccoder
  • 2,159
  • 5
  • 21
  • 37
0
votes
1 answer

ToolStripStatusLabel delay message

I have a brief question. In my program I want to use a ToolStripStateLabel to display some info to the user. Comming from c++ and QT I don't quite understand the .net variant of this controll. Because I want to show the user a message for a certain…
Bart Teunissen
  • 1,420
  • 5
  • 20
  • 43
0
votes
2 answers

TimeOfDay giving incorrect time

I made a timer which refreshes every 1000 milliseconds and I put the code as: Private Sub RealTimeTMR_Tick(sender As Object, e As EventArgs) Handles RealTimeTMR.Tick TimeLBL.Text = TimeOfDay.ToLocalTime.ToString End Sub One would suspect this…
Kraxed
  • 352
  • 2
  • 11
  • 26
0
votes
0 answers

Adding progress bar to status bar causes other panels to go black

I have an application, where I have added a progress bar to the status bar. I started to notice, that when I launch the application and at the same time activate some other window, covering the area where my application will appear, and keep it in…
Serge
  • 1,027
  • 14
  • 21
0
votes
1 answer

How would I update mouse position in ToolStripStatusLabel

Possible Duplicate: How to track mouse X/Y position and print it to a label? I seem to have run into a road bump with what seems to be a small problem but can't seem to find the answer. This is my first question asked here, and I apologize if I…
Ryan Taite
  • 789
  • 12
  • 37
0
votes
1 answer

Locating a ToolStripStatusLabel in a third party WinForms process

I've been asked to create a little tool to help automate a basic 3rd party WinForms application. So far I've managed to overcome many hurdles but this one is by far one of the most frustrating of them all (And spending 8 hours researching only to…
1
2