08-24-2009 08:46 PM
I think this is what you are looking for.
08-24-2009 09:05 PM
OK, so it appears that it's REALLY necessary to be able to duplicate the scale and create one for each plot. Without it, I can NOT set the Active Y scale. In my real program, since there is only one scale, I can only set Active Y Scale to zero (any other value returns error 1077).
So what could cause the original program NOT to be able to swap sides (duplicate works).
08-24-2009 09:13 PM
08-24-2009 10:25 PM
08-24-2009 10:41 PM
08-24-2009 10:46 PM
08-25-2009 01:22 PM
08-25-2009 01:23 PM - edited 08-25-2009 01:25 PM
08-26-2009 04:01 PM
Hi mimyanky,
Your VI looks good. The one suggestion that I have is to place those property nodes outside of the while loop. Since you are setting the same value to them every time, you don't need to call them on every iteration of the while loop, as this would slow down your program. Place them outside of your while loop, and wire up the error wires to the border of the while loop so that you will ensure that these are executed before the while loop.
Happy programming!
08-26-2009 04:06 PM
Marti...thanks but they're in there because in the real application, they're set dynamically w/ differrent values (I tried to make the example as close as possible to the original).
BTW, my application now works w/ no flickering and the overlays look great. With communicating w/ the PNA-X and displaying multiple plots, I'm only less than 1/2 second behind the VNA.
Thanks for all the help.