How do I make listbox / listview like this

Agus Sapurta Sijabat

If anyone can help each make listbox or listview be like the picture below?

Thank you Image1 image2

wunaozai

I use Microsoft Windows Common Controls 6.0

add ListView and ImageList

ImageList add one picture

Private Sub Form_Load()
'init the view
ListView1.View = lvwSmallIcon
ListView1.View = lvwIcon

'init the listview
ListView1.ColumnHeaders.Add , "Filename", "Filename"

' pick one of two
ListView1.SmallIcons = ImageList1
ListView1.Icons = ImageList1

'set the value
Set Item = ListView1.ListItems.Add(1, "aaa", "aaa", 1, 1)
Set Item = ListView1.ListItems.Add(2, "bbb", "bbb", 1, 1)

End Sub

you can get enter image description here

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How do i make something scroll like this?

From Dev

How do I make a GUI like Popcorn Time?

From Dev

How do I make the annotations look like the current location indicator?

From Dev

How do I make a disperse-like effect?

From Dev

How do I make effect like this on image hover?

From Dev

How do I make my script ask for a password, like sudo?

From Dev

How do I make terminator emulator appear and disappear like guake?

From Dev

How do I make a transparent desktop icon (like the Firefox icon)

From Dev

How do I make Unison behave like rsync?

From Dev

How can I make fonts look like they do in Windows?

From Dev

How do i make a character look like it is moving?

From Dev

How do I make bash completion behave like this?

From Dev

How do I make the annotations look like the current location indicator?

From Dev

How do I make the FreeOffice interface look like the official screenshots?

From Dev

How to make custom ListView like attached image

From Dev

How do I bind a listbox to XPath of SelectedItem from another Listbox?

From Dev

How do I make standard actions (like TEditCopy) recognize additional controls (like TEmbeddedWB)?

From Dev

How do I Access Items of a Listbox

From Dev

How do I get the child controls of a ListBox?

From Dev

How do I Bind observableCollection of strings to a listBox

From Dev

How do I populate a listbox in excel with a matrix?

From Dev

How do I Bind observableCollection of strings to a listBox

From Dev

How do I Random all the items in the listbox?

From Dev

How do I bind a command to a Listbox Item?

From Java

Flutter & AlertDialog : How do I align it to bottom? How I make 2 Alert Dialogs like this pictures?

From Dev

How do I get a wrapped ListView like the one in the Android Setup Screen?

From Dev

Default ItemTemplate of Controls like ListBox/ListView

From Dev

Default ItemTemplate of Controls like ListBox/ListView

From Dev

How do I make bash do vim-like tab completion for file names?

Related Related

  1. 1

    How do i make something scroll like this?

  2. 2

    How do I make a GUI like Popcorn Time?

  3. 3

    How do I make the annotations look like the current location indicator?

  4. 4

    How do I make a disperse-like effect?

  5. 5

    How do I make effect like this on image hover?

  6. 6

    How do I make my script ask for a password, like sudo?

  7. 7

    How do I make terminator emulator appear and disappear like guake?

  8. 8

    How do I make a transparent desktop icon (like the Firefox icon)

  9. 9

    How do I make Unison behave like rsync?

  10. 10

    How can I make fonts look like they do in Windows?

  11. 11

    How do i make a character look like it is moving?

  12. 12

    How do I make bash completion behave like this?

  13. 13

    How do I make the annotations look like the current location indicator?

  14. 14

    How do I make the FreeOffice interface look like the official screenshots?

  15. 15

    How to make custom ListView like attached image

  16. 16

    How do I bind a listbox to XPath of SelectedItem from another Listbox?

  17. 17

    How do I make standard actions (like TEditCopy) recognize additional controls (like TEmbeddedWB)?

  18. 18

    How do I Access Items of a Listbox

  19. 19

    How do I get the child controls of a ListBox?

  20. 20

    How do I Bind observableCollection of strings to a listBox

  21. 21

    How do I populate a listbox in excel with a matrix?

  22. 22

    How do I Bind observableCollection of strings to a listBox

  23. 23

    How do I Random all the items in the listbox?

  24. 24

    How do I bind a command to a Listbox Item?

  25. 25

    Flutter & AlertDialog : How do I align it to bottom? How I make 2 Alert Dialogs like this pictures?

  26. 26

    How do I get a wrapped ListView like the one in the Android Setup Screen?

  27. 27

    Default ItemTemplate of Controls like ListBox/ListView

  28. 28

    Default ItemTemplate of Controls like ListBox/ListView

  29. 29

    How do I make bash do vim-like tab completion for file names?

HotTag

Archive