6
votes
9answers
2k 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?
2
votes
1answer
53 views
how to avoid flickering when changing the source of an mx:Image in flex
Hi,
in my mxml file I have images declared like this:
<mx:Image x="0" y="0" source="assets/bigpicture.png" id="picture1"/>
and at some event I do:
picture1.source = "as …
0
votes
2answers
121 views
[Java] How to get rid of the flicker that appears during my animation ?
Hi,
I'm learning Java by making a small game in a JApplet.
I got a little problem with my sprite's animation.
Here is the code :
this.sprite.setBounds(0,0,20,17);
this.sprite.s …
0
votes
0answers
89 views
C# ListView in VirtualMode flickers when the selected item is not visible
I know it sounds complicated to reproduce but please follow me:
You have a ListView in VirtualMode = true.
Select an item, scroll down so that the item selected gets outside the …
0
votes
0answers
32 views
How do I suppress flicker from the webbrowser control in .Net, when it is resized?
Not all pages do this, but a good example would be youtube.com. Mostly if you are resizing the window larger, opposed to smaller. Lots of content flickers horribly in this case. I' …
0
votes
3answers
138 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 o …
0
votes
3answers
155 views
how to code for reducing flicker? need your help with code. win32 VC++ flicker
I'm trying to bitblt bitmap to mouse cursor position with the mouse movemont.but with flickering problems.
I've read about double buffering to reduce flicker but I'm not sure how …
0
votes
2answers
113 views
Android: ListView Flicker effect. Any hints on how to get rid of this?
For some reason, whenever I scroll through my list of items, the background inside my listview disappears and reappears giving rise to a "flicker" effect which I don't really want. …
1
vote
5answers
195 views
Prevent Screen flickering during event
Hey guys, I know that in primitive versions of vb (as found in excel) there was a line that you could insert to prevent screens from flickering to and fro when it is trying to proc …
4
votes
4answers
362 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?
5
votes
3answers
243 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 …
1
vote
1answer
376 views
drawImage in Java applet flickers in Safari
I'm having a flicker problem in a Java applet in Safari (Mac). However, it's not the usual double buffering problem.
I have isolated it down to one single drawImage call (no redun …
0
votes
0answers
49 views
Flicker in ASP.NET when using MVC and YUI Datatable
link text
Issue can be seen by clicking link text above...
Hello - I'm a newbie to ASP.NET MVC and The Yahoo! User Interface libraries. I've created a page that has a simple tabl …
0
votes
1answer
242 views
as3 - controlling flicker when scaling up a button or movieclip
This is a situation I run into a lot but never seem to find a good solution. I have movieclips that I scale up slightly on rollover, but if you hover over the edge of the movieclip …
6
votes
3answers
660 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 th …
