PDA screen flicker when updating control properties

Hi all,
I'm developing a mobile application for Windows Mobile 5 using LabVIEW 2009 SP1 and the Mobile Module. After coming to terms with many of the limitations, I've got a simple menu driven interface working. The interface consists of a transparent 240x320 picture control to which I draw the menu item text using the Draw Text At Point VI, along with an icon representing the menu item. Behind this picture control is a second picture control which contains the selection graphic to show which menu item is highlighted.
The problem I'm now facing is an annoying screen flicker every time a control property for the selection graphic is set. Specifically when the user navigates the menu using the up/down arrows on the device, the menu selection on the screen is moved using the Position->Top property to move it to highlight the correct menu item. Whenever this property is set, the whole screen flashes white and redraws.
Presumably this is due to the top level picture control being redrawn when the underlying control is updated (which makes perfect sense), but I wish it wasn't so noticeable.
So a couple of questions:
1. Is there any way to enable double-buffering of the display from the Mobile Module or on the device itself?
2. Is my picture control behind picture control design flawed? I would use a system listbox for the menu but it's a bit ugly, and doesn't support icons/symbols under the Mobile Module. Other limitations of the Module Mobile (like string controls that can't have transparent backgrounds) led me to use picture controls as the best overall solution.
Cheers,
Michael

Thanks everyone for the feedback.
I just did a day's worth of testing using C# and .NET for Windows Mobile (in Visual Studio 2005) and was able to reproduce the same interface without any flickering issues. Not having to poll the device's hardware buttons is also a positive
The key is to override the main form's OnPaintBackground() method.
From "Crafting Smartphone User Interfaces Using .NET Compact Framework":
OnPaintBackground
This method needs to be over ridden to prevent the OS from repainting the background each time the user navigates the ListView, causing flicker. If you don't need a background then just override this method but provide no implementation.
So it looks like I'll be doing things in C# for this project. As the mobile device won't be used for data acquisition, the Mobile Module isn't a necessity. I just hope .NET's serial functionality is as good as LabVIEW's!

Similar Messages

  • Screen flicker when copying to desktop

    I am experiencing a sudden screen flicker when I copy files or folders to my desktop? Doesn't seem to affect the system in any way, just very annoying. Anyone else having this issue? Is there a fix for this?
    Thanks, Rick

    Step one is to log into a newly created admin user account and see if the problem persists.

  • Screen Flicker when swiping to home screen?

    Has anyone noticed a screen flicker when swiping from page 2 to page 1 of apps? Happens every single time. It only flickers when arriving at page 1 from page 2 of apps, never in any other page or search screen.
    I have a 16GB iPhone 4. Never saw this on a 3G iPhone with iOS 3.1.3

    I got my iPhone 4 replaced 8-7-10 (3rd) iPhone 4. Yes I see that flicker as well. I'm extremely disappointed in apple. I had the iPhone 3G and got that phone replaced 4 times. Now I'm on my 3rd iPhone 4, why do the iPhones have so many problems? Whenever I go to an apple store I see tons of customers getting their iPhones replaced. We pay a lot of money for this phone and in the end the phone has problems which results in multiple replacements. We buy apps, movies, music, cases, batteries etc. Apple boasts about how great the iPhone is, I've yet to see that "great" iPhone.

  • Screen flicker when dragging documents

    Does anyone experince screen flicker when dragging files from the Finder to the Desktop?
    Here's a short video showing the problem.

    I am running Mountain Lion (OS X 10.8 (12A206j)) and just started to experience similar issues (see image below)  When scrolling up or down a webpage.  It happens randomly, and there are only a few applications open (Photoshop, Pages Safari). I have reset PRAM, but am not holding my breath on that...

  • Screen flicker when the CPU is working

    My macbooks started to flicker when the CPU is working, I'm using bootcamp and it doesn't seem to flicker when im using Windows XP.
    Anyone had the same problem or got any ideas on what I should do?
    Thanks
    Macbook   Mac OS X (10.4.6)  

    Interesting... I see a few possibilities of what could cause the problem:
    1. It could be a software issue. I can get mine to stop doing it for several days by making a setting change in System Preferences > Energy Saver. After several days, it starts doing it again.
    2. It is hardware, but not the screen. It could be some component that controls the screen brightness. However, it does not start when I dim the screen with the F1 key on the keyboard. So it may be something with the power management logic hardware.
    I have the feeling it is in software, judging by the fact that your screen replacement did not fix the problem, combined with the observations I have made with my own MacBook.
    Don

  • IPad 2 screen flicker when quickly sleep then wake. can people test this on their iPad 2?

    Hi.
    As the title says if i quickly press the sleep/wake button a few times quickly there will be a screen flicker with lines on the screen for a split second, can people test this for me to see if it's software related? 3 of the 5 ipad's i've tested this on has the issue. Does your iPad 2 do this? thanks

    This is happening to a lot of iPad 2's. Glad it wasn't just me.
    I had my first iPad 2 from the uk launch day and I was disappointed when I realised mine was showing significant lines on the screen when it was activated. It gradually got worse until the point I had to take it back tothe retailer I bought it from (comet uk). I was appaled with their 3 DAY retun period. But, after a loooooong phonecall to their head office and AppleCare and with a great deal of arguing they gave my money back. I then bought one from the apple store. Got home and found that the SAME THING was happening. But worse.
    Took it back yet again and got another that finally works.
    Just to let you all know it is a hardware fault and it isn't normal. Take it back to wherever you got it. It isn't a software glitch either as I updated to the latest at the time with no luck. Tried wiping all my data off it too with no luck.
    I've lost my respect for my iPad 2 and apple as it's ridiculous that everybody hypes the products and then when you spend all that money it doesn't work. Third time lucky though, eh?

  • Flicker when updating jTable

    I have an application using a jTable. When updating this jTable with a new row there is some annoing flicker - especially if i have many rows in my table.
    Seems like when swing is repainting i have the last marked line twice in the table, both on top an in the bottom. It gives a lot of distraction for the users trying to key in payments.
    My guess is it is happening when swing is repainting the table (it is apparently outside my application). My tablemodel is extending the abstractTableModel.
    Does anybody have any good suggestions to get rid of this???

    Thanks everyone for the feedback.
    I just did a day's worth of testing using C# and .NET for Windows Mobile (in Visual Studio 2005) and was able to reproduce the same interface without any flickering issues. Not having to poll the device's hardware buttons is also a positive
    The key is to override the main form's OnPaintBackground() method.
    From "Crafting Smartphone User Interfaces Using .NET Compact Framework":
    OnPaintBackground
    This method needs to be over ridden to prevent the OS from repainting the background each time the user navigates the ListView, causing flicker. If you don't need a background then just override this method but provide no implementation.
    So it looks like I'll be doing things in C# for this project. As the mobile device won't be used for data acquisition, the Mobile Module isn't a necessity. I just hope .NET's serial functionality is as good as LabVIEW's!

  • |Request| R9 280X 3GB screen flicker, vbios update needed.

    Getting weird screen flickering when on my desktop or watching movies. I heard a vbios update can help this.
    My SN is: 602-v277-38sb1401100281
    Thank you!
    -I also tried the core unparking.

    Then try removing current driver in safemode using >>Driver Fusion<<. After reboot install latest driver: http://support.amd.com/en-us/download/desktop?os=Windows%208.1%20-%2064#amd-catalyst-packages

  • Starting random apps and screen flicker when scrolling

    My Touch 2G suddenly started to launch random apps without me touching the screen. Besides starting random apps the screen flickers when scrolling. Any body have experienced the same? It started about 1 month ago and I have always taken good care of it. I have tried every possible thing I can think of when it comes to software. Full restore, jailbreak, full restore, back to factory, back to earlier versions of IOS, but no luck. It is pretty persistent. I am sure it is hardware related and don't mind paying to have it fixed. I tried two repairshops already and they  were not able to recover the reason for the malfunction.  I wonder whether there is anybody who has experienced the same or even knows what is wrong?

    Hey Kimwaldal,
    Thanks for using Apple Support Communities.
    Sounds like the devices are opening things on their own. You may want to follow this article to make sure the screens are working correctly.
    iPhone, iPad, iPod touch: Troubleshooting touchscreen response
    http://support.apple.com/kb/ts1827
    Have a nice day,
    Mario

  • Screen flicker when running battery power?

    Hi MSI Fans!
    Do you guys have the problem when your screen flickers very badly when running battery (unplugged)\
    If mods know how to solve it, it is appreciated if you post here. Thanks a lot!

    Quote from: Svet on 07-November-14, 06:09:31
    try set gpu to max performance from control panel power profiles
    note make sure to edit the right power profile which is used when the notebook is running on battery only
    Quote from: DerekQ on 07-November-14, 06:53:46
    KK I will do that the next time I will use the laptop but really, the battery life is bad and I have to use even more electricity to power the laptop to avoid flicker?
    Hmmm it flashed right after a unplugged the computer but for some reason it isn't flickering, maybe when the battery gets low then it flickers? Since last flicker was just about 2 days ago.
    Any advice?

  • Screen flicks when using miniDVI - S Video on WinXP

    Hi -
    I have installed WinXP using BootCamp. Now when I try to use miniDVI to S-Video the screen on Laptop flicks and the TV shows 'no signal'. I tested this on OSx10 and seems like this setting works and I can see the extended screen on my TV without the laptop screen getting flicked.
    Can anyone help in finding the problem. Would appreciate the help.
    Thanks,

    Hello rmj49,
    Welcome to the HP Forums!
    I understand the computer display flickers when using the AMD driver. The issue is probably related to hardware, but there are a couple things I would like you to try fist:
    First, please uninstall and reinstall the AMD Driver according to these steps:
    1. Go into Device Manager, then Display Adapters.
    2. Right-click on the AMD driver, and select uninstall.
    3. Restart the computer. This will force a driver to be reinstalled.
    If that doesn't help, my other suggestion is to update the computer to Windows 8.1. Using the AMD driver in a different OS might work.
    If nothing works, I would contact HP phone support to address the actual AMD card itself. You can utilize this website to learn how to contact HP appropriately, based on your region: Contact HP Worldwide
    Please let me know if you have any other questions or concerns. Thanks!
    Mario
    I worked on behalf of HP.

  • New Imac screen flicker when dimmed down

    Hi guys, I got my new Imac about a week ago, aside from the whistling and dead pixels in the isight, are any of you guys getting screens that are sort of flickering when you start to dim them down. The light dims and filckers very quickly. It's kind of looks like the old CRT's at a slow refresh rate and is becoming really annoying. I was wondering if this is normal for all the Imacs. I'll be getting a replacement because of the dead pixels in my Isight, but this will also be something to look for in the new one. So it'll be good to know if it is normal.

    Well, this is definitely a hardware defect and it appears to be wide spread. I took my iMac back to the Apple store today and the Tech saw the problem too and exchanged it for a new one (since it was within 14 days). Well, got that one home, and it had the same flicker issue. Two hours later back at the Apple Store, they saw the issue with the replacement machine too, but not with any of their floor models. So, they took that one back too and are doing a writeup to send it back to Apple so they can diagnose the problem.
    The replacement iMac they brought out for me this time we setup in the store and confirmed did not have the display flicker issue when the backlight was all the way down.
    So my suggestion is if you have this issue, take it into the Apple Store and have them replace it or repair it.

  • Screen Flicker when IDVD rendered project

    I have an Imovie HD composed of quicktime screen clips from SnapzProX. Movies are captured at 15-24 frames per second. When I view the preview, everything looks great. I export the entire project to a quicktime movie and it still looks great. I export the project to IDVD, and the project looks great except for 1-2 minute clip. In this clip, the screen begins to flicker and the image appears to be low resolution. I checked the original movie and it looks and plays fine. It has not had any effect applied to it as well. If everything renders fine in the other formats (DIVX works well too) why is my IDVD project crapping out. And moreover, why is it just this single segment. All of the other QT movies captured and rendered flawlessly. My project is done, but I can't let this problem go out like it is...Thanks for your help in advance...

    Thanks for the response but I really can't see this as a resolution issue. All of the screen captures were captired at 1024 x768. So if anything , they would be scaled down. But once again, if that were the issue, then they should all flicker since they were all done the same. This project is 13 minutes long and only one small clip flickers. It seems to do it when the screen I captured contained a push down box. In the capture, when I scrolled down the push down to make a selection from a list, everything after the selection begins to shake. It's really annoying and quite puzzling since there are other places in the movie that do the same thing, and the flickering does not occur. And moreover, when I render the entire movie as quicktime, there is no flicker...only when I transfer to IDVD...go figure...

  • Infinite blue screen flicker when Macbook plugs into DVI monitor

    I have a black Macbook Core 2 Duo 2.2 ghz connected to an HP w2207 monitor through a DVI cable using the Apple-supplied DVI adapter.
    Often, when I plug the HP monitor into my macbook, the HP monitor will flicker a light blue color and be unable to pull up the image on my Macbook (will continue flickering blue indefinitely until I unplug the monitor, at which point my Macbook's screen will come back to life and I can work normally from that screen). If I restart my computer, the monitor will work fine.
    What I would like to know is if there is anyway to get around this so I don't have to restart my computer. I can't tell if it's a software or hardware issue since it does always work fine when I restart. I would even be ok with going into activity monitor and terminating some process if that's what would allow me to plug my monitor in without restarting.
    Thanks for helping!

    I tried messing with the DDC/CI setting on my HP monitor, and there was no change in behavior.
    I also tried deleting some system-level plist files, and that caused my entire computer to be unbootable ( see http://discussions.apple.com/thread.jspa?threadID=2090478 ) until I restored those files to their proper location.
    Any suggestions on things to reset/files to delete to really flush the software side of the connection between my Macbook and my monitor? It never used to do this and now every other time I plug in the monitor all it does is indefinitely do the blue flicker dance (as an fyi my warranty is up, so no calling Apple).

  • Saving apsand screen organization when updating to 4.1?

    _First let me say that I know almost nothing about computers etc so please keep that in mind as I describe what I'm trying to do_. I did a search but was unable to find what I wanted as I didn't really know what to search for.
    Is there some way to update to 4.1 and have my apps and the way I have my screens organized stay the same? With all of the older updates to the OS I loose all of my apps and my screens go back to "default" and I have to manually re-download apps and reorganize my screens.
    In iTunes, under apps, I only have one game that I deleted from my phone ages ago and none of my new ones are there. I have no idea how that one app got there in the first place and it doesn't go back onto my phone when I installed older OS's.
    If this isn't clear, please let me know and I'll try to describe it again.
    Thank you in advance.

    Well I concluded there must be a problem with that 4.1 upgrade. Ive been trying to upgrade a while now. It seemed to be working, then at the end, my computer crashed. When turning computer back on, I had an error message on itunes, 20001. So I guess I am giving up until Apple gets there act together. I unplugged phone and seems to be working okay now. I still have all my apps.

Maybe you are looking for

  • Bill of lading field - MB01

    Hi,     I know the answer, but still I would like to confirm / findout if there are any other ways.   The length of bill of lading (MKPF-FRBNR) in GR (MB01) has  max lenght of 16 chars. But UPS bill of lading length is 18 chars. I would like to check

  • Grouping report

    Can I create a report where data is grouped on the basis of some columns in the query For example :My report should show like Assigned ID Date Description To ====== === ===== ============ ALAN01 12345 23-JUN-07 This is the desription Entry Date :23-J

  • Lens Profile Creator

    Lens Profile Creator output not found by ACR 7.X

  • Doesn't print all items

    I filled an entire year with events for a calendar I am printing for my children's school. But when I went to print it, many of the events were cut off. Is there a way to avoid this? Can you adjust the size of the type? If not, is there anyway of tel

  • Command to turn on VPN status in Menubar

    Is there a command I can run on client machines to turn on the VPN Status in Menubar? For some reason on my new builds the menubar for VPN is off, my mistake, but i'm thinking there should be a command to turn it on. It's just a checkbox.. Anyone kno