Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
ChingYen  
#1 Posted : Friday, April 11, 2008 9:51:30 PM(UTC)
ChingYen

Rank: Advanced Member

Groups: Member
Joined: 3/3/2008(UTC)
Posts: 185

Thanks: 8 times
Hi,

When we toggle the thumbnailListviewer multiselect during run time, it will cause the scroll bar to disappear, and things will resume if we try to change the selected item

Example code to trigger this bug...

Code:
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
       ThumbnailListView1.MultiSelect = Not ThumbnailListView1.MultiSelect
End Sub

Edited by user Tuesday, April 15, 2008 12:18:41 AM(UTC)  | Reason: Not specified

Alex Kon  
#2 Posted : Tuesday, April 15, 2008 12:18:30 AM(UTC)
Alex Kon

Rank: Advanced Member

Groups: Member
Joined: 1/31/2005(UTC)
Posts: 458

Was thanked: 5 time(s) in 5 post(s)
Hello,

We have to confirm this issue. It will be fixed in future releases, by now I can suggest you another workaround:

Code:
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
       ThumbnailListView1.MultiSelect = Not ThumbnailListView1.MultiSelect
       ThumbnailListView1.Scroll(0, 0)
End Sub
Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.