Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
3answers
2k views

How can a Swing JWindow be resized without flickering?

I am trying to make a custom UI based on a JWindow for the purpose of selecting an area of the screen to be shared. I have extended JWindow and added code to make it resizable and to 'cut out' the ...
18
votes
5answers
11k views

c# flickering Listview on update

I have a list view that is periodically updated (every 60 seconds). It was anoying to me that i would get a flicker every time it up dated. The method being used was to clear all the items and then ...
14
votes
5answers
5k views

iphone webkit css animations cause flicker

This is the iphone site: http://www.thevisionairegroup.com/projects/accessorizer/site/ After you click "play now" you'll get to a game. The guns will scroll in. You can scroll the purse and ...
13
votes
7answers
3k views

How do I force windows NOT to redraw anything in my dialog when the user is resizing my dialog?

When the user grabs a corner of a resizable window, and then moves it, windows first moves the contents of the window around, then issues a WM_SIZE to the window being resized. Thus, in a dialog ...
13
votes
10answers
11k views

How to double buffer .NET controls on a form?

How can i set the protected DoubleBuffered property of the controls on a form that are suffering from flicker?
11
votes
3answers
597 views

WPF Animation has Tearing and Flicker

I'm having trouble with tearing and flickering in WPF animations. I have a toy app that demonstrates the problems. The app animates squares across the screen. The edges of the squares show tearing and ...
11
votes
4answers
5k views

How to prevent a Windows Forms TextBox from flickering on resize?

There are plenty of articles addressing flicker in Windows Forms. The majority recommend setting DoubleBuffered = true or setting a bunch of ControlStyle flags. However, none of these help reduce a ...
8
votes
2answers
236 views

TLabel and TGroupbox Captions Flicker on Resize

So, I have an application that loads different plugins and creates a new tab on a TPageControl for each one. Each DLL has a TForm associated with it. The forms are created with their parent hWnd as ...
8
votes
4answers
4k views

How to fix the flickering in User controls

In my application i am constantly moving from one control to another. I have created no. of user controls, but during navigation my controls gets flicker. it takes 1 or 2 sec to update. I tried to set ...
7
votes
2answers
377 views

Update image without flickering ASP.NET C#

Im writing a web site which has a page that must show an image. This image is created by an HttpHandler using querystring commands, how can I make this works without any kind of flickering? Thanks ...
7
votes
4answers
1k views

Flickering in a Windows Forms app

I have an app that has a ton of controls on it. And it has a massive amount of flicker, particularly on startup. I applied the fix to it. protected override CreateParams CreateParams { ...
7
votes
4answers
2k views

How can I make my form resize more smoothly?

When resizing a form with many controls, the form looks bad because of flickering. What are some tips to have a smoother form resizing?
6
votes
7answers
2k views

How can I avoid flicker in a WPF fullscreen app?

I have a WPF application that is a fullscreen kiosk app. It's actually a pretty complicated app at this point, but here's some code that shows the basic idea. Essentially, whenever the user goes ...
6
votes
3answers
553 views

Why doesn't OS X have the same flickering problems that Windows does?

I was reading Larry Osterman's latest blog post about debugging a flickering problem in the Windows Vista/7 volume control, and I suddenly realized that I can't recall ever seeing an application ...
5
votes
2answers
1k views

How can I reduce PageControl flicker in Delphi?

In Delphi 2009 I found that the flicker of a PageControl - which occurs during resizing of the form - can be reduced by setting its DoubleBuffered property to true. However if I add controls to the ...
4
votes
1answer
96 views

Delphi: Right aligned panel flickers upon resizing form

it should be simple but I don't find how to do it. I create a form with a right aligned panel that I color in blue for example. If I grab my forms left edge and resize it back and forth horizontally ...
4
votes
1answer
209 views

HTML flickers on Honeycomb landscape

When displaying a WebView in full screen (fill_parent both width and height) in Honeycomb, the HTML flickers an instant when loaded in landscape orientation. Given this code, you should only see the ...
4
votes
2answers
354 views

Delphi 2010 Control Flickering

I have been upgrading or migrating our software from XP OS to be able to compile and run under Windows 7. Our software is starting to show issues that we didn't notice under Windows XP. Currently, I ...
4
votes
2answers
261 views

jQuery slider flickering problem if slide

Hey, I've a tricky problem with a slider I've created in jQuery. After finish it I realize that there is a flickering of the sliding images cross-browser (except ie9). I would like to upload the ...
4
votes
2answers
796 views

During FlowLayoutPanel scrolling, background distorts + flickers

I have a windows form application that has a background. Within it, I have a flowlayoutpanel with a transparent background. When I scroll, the following happens: I also see some flickering. I've ...
4
votes
1answer
515 views

jQuery Mouse Flicker in IE

When I execute a jQuery function like .fadeIn, .fadeOut, .slideUp, .slideDown, .toggle, etc. in IE the mouse always flickers and the hourglass quickly flickers in and out of view next to the cursor. ...
4
votes
5answers
6k views

How to avoid flicker while handling WM_ERASEBKGND in Windows dialog

I have a dialog that resizes. It also has a custom background which I paint in response to a WM_ERASEBKGND call (currently a simple call to FillSolidRect). When the dialog is resized, there is ...
3
votes
1answer
108 views

How can you prevent the ApplicationBar flickering on the WP7 white theme?

I have a Windows Phone 7.1 Mango application where I have mostly successfully overridden the built in theme colors. However, if the user has the white theme selected and the page has a dark ...
3
votes
6answers
276 views

Despite double buffering, the ticker still flickers

Does anyone have an idea about how to get rid of flickering? I researched on SO, the web, and tried out many different things like putting TickerControl into a double buffered Panel a la Double ...
3
votes
1answer
238 views

Images flicker when served by Rails to Chrome or Safari

In performing some cross-browser testing, I noticed that my images flicker when the page is refreshed - but just with Chrome/Safari - not with Firefox or IE. A white area is displayed, then the image ...
3
votes
2answers
345 views

Windows Forms/DatagridView Screen Flickering

Has anyone experienced a case where a .Net Windows Forms app caused severe desktop flicker? I have a Windows Forms app (.Net 3.5 , C#) with a datagridview in a usercontrol. Occasionally, while ...
3
votes
2answers
1k views

Resizing window causes black strips

I have a form, which sets these styles in constructor: this.SetStyle(ControlStyles.AllPaintingInWmPaint, true); this.SetStyle(ControlStyles.UserPaint, true); this.SetStyle(ControlStyles.ResizeRedraw, ...
3
votes
2answers
560 views

VS 2008 SP1 text editor flickering over remote desktop connection

I am connecting from a Windows 7 x64 machine to my dev machine running Windows XP SP3 using the built in remote desktop client. For most apps it works fine with no problems, for Visual Studio ...
3
votes
4answers
3k views

Win32 GUI flickering on resize

I have a Win32 GUI program with a tab control, each tab having a list view control. There is massive flickering whenever the window is resized. I've tried the following things: Handling ...
3
votes
4answers
2k views

Stopping TextBox flicker during update

My WinForms application has a TextBox that I'm using as a log file. I'm appending text without the form flickering using TextBox.AppendText(string);, however when I try to purge old text (as the ...
2
votes
1answer
106 views

Element flickers before disappearing when hidden with .animate({width: 'hide'}), but only on Chrome

This problem appears on Chrome/Chromium (on Linux and Windows): when I use JQuery to hide an element with .animate({width: 'hide'}), the element shrinks, then for a fraction of second goes back to ...
2
votes
3answers
111 views

Drawing without flickering

I have a win32 application which was developed in c++. The application draws some stuff on the window using basic shapes (rectangles). The windows is repainted every 20ms (50hz) using InvalidateRect. ...
2
votes
1answer
271 views

how to to kill the white flickering splashscreen of death in a phongeap iOS app

I am wondering how to get rid of the white splashscreen flickering at the start of a phonegap ios application? thnx
2
votes
2answers
255 views

How to remove WebBrowser flicker?

I'm using WebBrowser Control for my chat application. Every time it adds user's message - it refreshes WebBrowser with its new content. And it works good. But after I added a background in html code ...
2
votes
1answer
366 views

CSS3 PIE: divs with border-radius flickering on mouseover

I'm using CSS3 PIE to add support for border-radius to IE6/7/8. It works perfectly, but I've found that when I use it to apply a "thick" border with rounded corners to a <div>, the border ...
2
votes
1answer
65 views

How to stop WiXUI flickering

I've been playing around WiX lately, and I have found that WiXUI wizard is not flicker-free. When you click "Next" to advance to the next step in the wizard, the wizard window is actually destroyed ...
2
votes
2answers
656 views

How to delay the display of some HTML until after javascript has loaded

When a page loads on my site, the HTML appears before the javascript, which leads to a flicker when the javascript loads. The answer to this stackoverflow post gave a great solution. But I would like ...
2
votes
1answer
234 views

How to upload or share images on Flicker through php or Action script

hi i am developing an application in which user have the option to share images on different social sites like Facebook, twitter and Flicker. I have done with Face book and twitter, i upload image to ...
2
votes
0answers
164 views

jScrollPane flicker issue safari

i'm using a jScrollPane for dynamic content. http://dev.harvest.sugarshaker.com/#interview20 ...click on 'open transcript' it works fine on mac firefox, but mac safari flickers when scrolled. i've ...
2
votes
2answers
777 views

HTML5 Canvas flicker in FireFox 4

I'm working on a proof of concept on an HTML5 canvas. I was able to get this working like a charm in Chrome and IE9, but in Firefox 4 I'm getting constant flicker as it redraws the canvas. I've ...
2
votes
2answers
1k views

How to eliminate the flicker on the right edge of TPaintBox (for example when resizing)

Summarization: Say that I have a TForm and two panels. The panels are aligned alTop and alClient. The alClient panel contains a TPaintBox, whose OnPaint involve drawing codes. The default value of ...
2
votes
4answers
451 views

WPF flickering during animation in Viewport3D

I'm having some strange behaviour inside a WPF app I'm writing. When I run an animation on the camera position (a Point3DAnimation on PerspectiveCamera.PositionProperty), I get really bad flickering ...
2
votes
3answers
916 views

flicker free tab control with WS_EX_COMPOSITED

I have a VS2008 C++ application for Windows XP SP3 developed using WTL 8.1. My application contains a tab control that flickers when the application border is resized. My window hierarchy looks like ...
2
votes
1answer
560 views

Android viewflipper flicker

I have a ViewFlipper with multiple views added dynamically. I override onTouchEvent (and onInterceptTouchEvent) in order to get the down, move and up events on the views, so I know when to animate ...
2
votes
2answers
426 views

Internet explorer, jQuery: input box jumps/moves when being replaced with the exact same one

What I want: To, on focus, change one input box into another by hide() and show(). What I get: In Internet Explorer (7/8), the input box moves a few pixels to the right when focusing. Works well in ...
2
votes
1answer
731 views

Android fullscreen status bar flickers

My app runs in fullscreen fine, but when a alert dialog pops up the status bar flickers from under the fullscreen. Also when I try typing in the dialog popup it also makes the status bar flicker. The ...
2
votes
4answers
2k views

jQuery SlideDown Flickering in Firefox

once more a jQuery, Firefox flickering issue. (no flickering in IE6/7/8, Safari) I uploaded an example page here: http://sithlord.bplaced.net/testing/jquery_flickering/flickering.html There are two ...
2
votes
1answer
455 views

How can I get a smooth, flicker-free GUI for an app run via Remote Desktop?

I realize there are a ton of questions floating around the internet about reducing flicker in Windows Forms applications. After copious experimentation, I found that the solution in my particular case ...
2
votes
1answer
817 views

jQuery Flickr REST API call returns nothing?

I create a Flickr account, create an app and got my API key, created a few photo sets and tested the API call using their API explorer to get the following URL to call: ...
2
votes
1answer
648 views

Black flicker while resizing translucent Qt widget (only when Aero is enabled)?

I have a top-level Qt widget with the FramelessWindowHint flag and the WA_TranslucentBackground attribute set. It has several children, each of which draws an image on it. They are not in a layout. ...

1 2 3 4 5