08-24-2011 09:13 AM
Hi all,
is there a way to achieve the above mentioned behaviour? Changing the graphics elements of a picture ring control or indicator at run time?
Best regards,
Matthias
Solved! Go to Solution.
08-24-2011 09:22 AM
Unfortunately, no, there is not a way to do that. Changing the picture would require recompiling, and an application cannot do that to itself at runtime. You could use a picture indicator instead. What are you trying to do?
08-25-2011 12:02 AM
Hi,
thanks for your reply. I am trying to quickly switch between different full screen images to create a powerpoint-like behaviour. I will now try to load pictures and feed them into a picture indicator, see if that is fast enough. The ring indicator was just so simple...
Regards
M. Richwin
08-25-2011 09:37 AM
You can do that with the picture indicator. I have written a slide show program in LV and it works quite smoothly. If you start to see delays, it is probably due to file read time rather than the display. Read one or two files from disk ahead of when you will want to display them. Updating the display from memory should be fast.
Lynn
08-25-2011 09:41 AM
Hi,
thanks a lot. That is exactly what works, I change between only three different bitmaps, so I load them all in advance and just index into the array and feed the image into the picture control.
Regards
Matthias