Click here to Skip to main content
15,891,033 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Avoid Flickering in listview Pin
Ashfield23-Jun-08 1:18
Ashfield23-Jun-08 1:18 
GeneralRe: Avoid Flickering in listview Pin
Jes_Latha23-Jun-08 1:37
Jes_Latha23-Jun-08 1:37 
GeneralRe: Avoid Flickering in listview Pin
Ashfield23-Jun-08 2:05
Ashfield23-Jun-08 2:05 
AnswerRe: Avoid Flickering in listview Pin
jzonthemtn23-Jun-08 15:40
jzonthemtn23-Jun-08 15:40 
AnswerRe: Avoid Flickering in listview Pin
Chinners23-Jun-08 23:04
Chinners23-Jun-08 23:04 
GeneralRe: Avoid Flickering in listview Pin
RUrry2-Jul-08 16:11
RUrry2-Jul-08 16:11 
GeneralRe: Avoid Flickering in listview Pin
Chinners2-Jul-08 23:33
Chinners2-Jul-08 23:33 
GeneralRe: Avoid Flickering in listview Pin
RUrry3-Jul-08 15:08
RUrry3-Jul-08 15:08 
Heheh happy to help Smile | :)

Also for all the people new to VB.net and programming in general, if you have used the standard listview in your program and want to use the flicker free one discussed here, u dont need to go through every form and replace the listview with the flickerfree one using the code example. Simply go into the designer of the forms and change your ListView type to FlickerFreeListView

Example:
[Declaration]
Friend WithEvents ListView1 as System.Windows.Forms.ListView

[InitializeComponent]
Me.ListView1 = New System.Windows.Forms.ListView

Change to:
[Declaration]
Friend WithEvents ListView1 as FlickerFreeListView

[InitializeComponent]
Me.ListView1 = New FlickerFreeListView


do a replace all in your entire project for "as System.Windows.Forms.ListView" and "= New System.Windows.Forms.ListView" and presto, listview flicker solved in under a min.

HTH all the newbies not sure how to use the class

Regards,
Richard
QuestionAnd vs AndAlso, Or vs OrElse Pin
ninkk23-Jun-08 0:35
ninkk23-Jun-08 0:35 
AnswerRe: And vs AndAlso, Or vs OrElse Pin
Christian Graus23-Jun-08 0:46
protectorChristian Graus23-Jun-08 0:46 
GeneralRe: And vs AndAlso, Or vs OrElse Pin
Duncan Edwards Jones23-Jun-08 3:23
professionalDuncan Edwards Jones23-Jun-08 3:23 
GeneralRe: And vs AndAlso, Or vs OrElse Pin
Christian Graus23-Jun-08 11:32
protectorChristian Graus23-Jun-08 11:32 
GeneralRe: And vs AndAlso, Or vs OrElse Pin
Jon_Boy24-Jun-08 5:44
Jon_Boy24-Jun-08 5:44 
GeneralRe: And vs AndAlso, Or vs OrElse Pin
Paul Conrad23-Jun-08 6:22
professionalPaul Conrad23-Jun-08 6:22 
GeneralRe: And vs AndAlso, Or vs OrElse Pin
Mark Churchill24-Jun-08 17:51
Mark Churchill24-Jun-08 17:51 
GeneralRe: And vs AndAlso, Or vs OrElse Pin
Christian Graus24-Jun-08 18:20
protectorChristian Graus24-Jun-08 18:20 
AnswerRe: And vs AndAlso, Or vs OrElse Pin
Duncan Edwards Jones23-Jun-08 1:20
professionalDuncan Edwards Jones23-Jun-08 1:20 
GeneralRe: And vs AndAlso, Or vs OrElse Pin
Chinners23-Jun-08 3:14
Chinners23-Jun-08 3:14 
AnswerRe: And vs AndAlso, Or vs OrElse Pin
CPallini23-Jun-08 2:46
mveCPallini23-Jun-08 2:46 
GeneralRe: And vs AndAlso, Or vs OrElse Pin
Duncan Edwards Jones23-Jun-08 3:18
professionalDuncan Edwards Jones23-Jun-08 3:18 
GeneralRe: And vs AndAlso, Or vs OrElse Pin
CPallini23-Jun-08 3:36
mveCPallini23-Jun-08 3:36 
GeneralRe: And vs AndAlso, Or vs OrElse Pin
Luc Pattyn23-Jun-08 3:40
sitebuilderLuc Pattyn23-Jun-08 3:40 
GeneralRe: And vs AndAlso, Or vs OrElse Pin
Paul Conrad23-Jun-08 6:25
professionalPaul Conrad23-Jun-08 6:25 
GeneralRe: And vs AndAlso, Or vs OrElse Pin
Mark Churchill23-Jun-08 13:50
Mark Churchill23-Jun-08 13:50 
GeneralRe: And vs AndAlso, Or vs OrElse Pin
Dave Doknjas23-Jun-08 14:36
Dave Doknjas23-Jun-08 14:36 

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.