i already set this property to TRUE
but nothing is selected maybe i can change the selected row appearance? but how...
Main Topics
Browse All TopicsHi experts
i use a listview in detail view and set ownerdraw to TRUE
the listview is correctly drawed in the control but i cannot click any row...
here is the code :
Private Sub lvMail_DrawColumnHeader(By
e.DrawDefault = True
End Sub
Private Sub lvMail_DrawSubItem(ByVal sender As Object, ByVal e As System.Windows.Forms.DrawL
Select Case e.ColumnIndex
Case 0 'priority
Select Case CType(e.SubItem.Text, ClsMessage.PriorityInfo)
Case ClsMessage.PriorityInfo.Hi
Me.DrawCenterImage(Me.Imag
Case ClsMessage.PriorityInfo.Lo
Me.DrawCenterImage(Me.Imag
Case ClsMessage.PriorityInfo.No
e.DrawDefault = True
End Select
Case 2 'attach
If Boolean.Parse(e.SubItem.Te
Me.DrawCenterImage(Me.Imag
End If
Case 3 'read
If Not Boolean.Parse(e.SubItem.Te
Me.DrawCenterImage(Me.Imag
End If
Case Else
e.DrawDefault = True
End Select
End Sub
Private Sub DrawCenterImage(ByVal img As Image, ByVal e As DrawListViewSubItemEventAr
e.DrawBackground()
Dim x As Single = CSng(e.Bounds.Left + (e.Bounds.Width - img.Width) / 2)
Dim y As Single = CSng(e.Bounds.Top + (e.Bounds.Height - img.Height) / 2)
e.Graphics.DrawImage(img, x, y)
End Sub
thank you in advance
regards
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: Priest04Posted on 2007-08-23 at 16:21:10ID: 19758672
To select row, you need to set FullRowSelect property to True
Goran