07-18-2012 11:20 AM
Works fine for me. I can scroll with the mouse wheel or by dragging the bars.
07-18-2012 11:22 AM
07-18-2012 11:28 AM
Yes, while the VI was running. Maybe you made an edit that we don't have? It would be in the VI Properties->Window Appearance. I have "Default" selected. Is yours something else?
07-18-2012 11:33 AM - edited 07-18-2012 11:36 AM
We have three concepts of run. Run mode, VI execution state and your application's run state. When I click the big square run button on your application the graph updates and I cannot scroll or do anything with any of the buttons.
This is because the event structure is hanging. There are two easy ways to fix it. Add a timeout event or go to edit events handled by this case and unselect Lock front panel (defer processing of user actions) until this event case completes. Neither of these is the best way but it will get it doing what you expect. [Edit: timeout doesn't seem to be the answer, but unselecting defer processing does work]
07-18-2012 11:36 AM
07-18-2012 11:47 AM
Ok, I was able to repeat it. Steve's suggestion worked. I have no clue why. The event has to be complete before the graph code even runs. Why would it still have the front panel locked?
07-18-2012 11:49 AM - edited 07-18-2012 11:51 AM
@Bombbooo wrote:
Scroll up and down. Its locked
How? Scrollbars? Scroll wheel? Pan tool?
Edit: sorry,posting by phone. Did not see the other replies since.
07-18-2012 11:51 AM
07-18-2012 12:03 PM
@crossrulz wrote:
Ok, I was able to repeat it. Steve's suggestion worked. I have no clue why. The event has to be complete before the graph code even runs. Why would it still have the front panel locked?
That is a very good question. I thought that once a loop containing an event structure was done, the event structure is also done. I only checked that because the symptoms indicated that even though it didn't make much sense.
07-18-2012 12:03 PM - edited 07-18-2012 12:04 PM
EDIT: somehow double posted