Click here to Skip to main content
15,918,976 members
Home / Discussions / C#
   

C#

 
GeneralRe: Adding a chm file to the project Pin
Spunky Coder22-Oct-07 0:52
Spunky Coder22-Oct-07 0:52 
Questionflicker usercontrol Pin
nhathoang21-Oct-07 21:28
nhathoang21-Oct-07 21:28 
AnswerRe: flicker usercontrol Pin
Mohib Sheth23-Oct-07 3:47
Mohib Sheth23-Oct-07 3:47 
QuestionDTS same application Pin
C#Coudou21-Oct-07 21:26
C#Coudou21-Oct-07 21:26 
QuestionWho is Powerfull Pin
M Riaz Bashir21-Oct-07 21:12
M Riaz Bashir21-Oct-07 21:12 
AnswerThe one ... Pin
CPallini21-Oct-07 21:47
mveCPallini21-Oct-07 21:47 
AnswerRe: Who is Powerfull Pin
Chetan Patel21-Oct-07 23:15
Chetan Patel21-Oct-07 23:15 
QuestionAvoid Flickering in listview Pin
anu8121-Oct-07 20:48
anu8121-Oct-07 20:48 
hi all,

I have a listview where i am trying to display thumbnail images similar to windows explorer. i have set the owner draw property to true and i managed to display the thumbnails using the drawitem event.

But when i execute my application there seems to be a flickering in listing of images. i found many samples illustrating to set the doublebuffered property to true. and use setstyles property.

public mylistview()
{
//Activate double buffering
this.SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.AllPaintingInWmPaint, true);

//Enable the OnNotifyMessage event so we get a chance to filter out
// Windows messages before they get to the form's WndProc
this.SetStyle(ControlStyles.EnableNotifyMessage, true);
this.DoubleBuffered = true;
}

protected override void OnNotifyMessage(Message m)
{
//Filter out the WM_ERASEBKGND message
if (m.Msg != 0x14)
{
base.OnNotifyMessage(m);
}
}

but still the flickering occurs. i found a article Flickerfree listview
here^
but that does not seem to work perfectly.

Can anyone help me with some links or suggestions??


Thanks in advance.Smile | :)

Regards

Anuradha

QuestionHow to find a exact word using regular expression Pin
NK721-Oct-07 20:48
NK721-Oct-07 20:48 
AnswerRe: How to find a exact word using regular expression Pin
Guffa21-Oct-07 21:14
Guffa21-Oct-07 21:14 
GeneralRe: How to find a exact word using regular expression Pin
NK721-Oct-07 21:29
NK721-Oct-07 21:29 
AnswerRe: How to find a exact word using regular expression Pin
Guffa21-Oct-07 21:59
Guffa21-Oct-07 21:59 
AnswerRe: How to find a exact word using regular expression Pin
laserbaronen21-Oct-07 22:38
laserbaronen21-Oct-07 22:38 
AnswerRe: How to find a exact word using regular expression Pin
Nitin Pakhide20-Jan-11 1:35
Nitin Pakhide20-Jan-11 1:35 
QuestionTable Layout Panel Pin
half-life21-Oct-07 20:42
half-life21-Oct-07 20:42 
QuestionTo copy file Pin
P_Elza21-Oct-07 19:57
P_Elza21-Oct-07 19:57 
AnswerRe: To copy file Pin
Abhijit Jana21-Oct-07 20:03
professionalAbhijit Jana21-Oct-07 20:03 
GeneralRe: To copy file Pin
P_Elza21-Oct-07 20:29
P_Elza21-Oct-07 20:29 
QuestionPartial Class Definitions in vs2003 Pin
aamir ali21-Oct-07 19:51
aamir ali21-Oct-07 19:51 
AnswerRe: Partial Class Definitions in vs2003 Pin
Rocky#21-Oct-07 20:03
Rocky#21-Oct-07 20:03 
AnswerRe: Partial Class Definitions in vs2003 Pin
Scott Dorman22-Oct-07 4:40
professionalScott Dorman22-Oct-07 4:40 
QuestionHow to transfer files using XFB from .Net Pin
NarVish21-Oct-07 19:50
NarVish21-Oct-07 19:50 
AnswerRe: How to transfer files using XFB from .Net Pin
ravitej.saman5-Sep-18 4:35
ravitej.saman5-Sep-18 4:35 
QuestionHow to create custom control? Pin
softengg12321-Oct-07 19:48
softengg12321-Oct-07 19:48 
QuestionRe: How to create custom control? Pin
Rocky#21-Oct-07 19:57
Rocky#21-Oct-07 19:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.