Library tutorials & articles
Image List Control
Introduction
The Image List control allows you to add images to your program, which you can use in the other Common Controls (Toolbar, TreeView, ListView etc). To add the ImageList control to your VB project, click Project|Components, and check the box next to Microsoft Windows Common Controls x.x where x is the version of Visual Basic you are using.
|
Related articles
Related discussion
-
Problem with migration to C# (CoCreateInstanceEx)
by LRollison (1 replies)
-
VB6 Problem Creating Shortcuts
by rb1177 (0 replies)
-
how can i open a file
by kyawswarhtun (0 replies)
-
how to save any one form what i want?
by blackguy (5 replies)
-
Build an MP3 Player
by soybees (4 replies)
Related podcasts
-
Christian Beauclair
14 mai 2008 (�mission #0074) ::.Christian Beauclair: Stratégies de migration VB6 vers .NET Nous discutons avec Christian Beauclair des stratégies de migration VB6 vers .NET. Entre autres, nous discutons comment utiliser le "VB 6 Code Advisor" et le "Interop Forms Toolkit" pour ajouter la puiss...
I came across one that has me a bit stuck
It basically says to create a form with two ImageList Controls ,add the images to one control at design time and for the other ImageList i have to add the images from first Imagelist, i mean i have to write the code for that.
This is proabably easy to do but as i said i am quite new at this
thanks for any help possible
hey i hope this helps i was tryin to do the same thing you were tryin to do and i stuble upon your topic, try using this
ImageList1.ListImages.Add ImageList1.ListImages.count + 1, , LoadPicture(txtLocalPath.Text)
it can dynamiclly populate your imagelist with out having to load images before runtime
I am very new to VB and I am sort working thru exercises in a book
I came across one that has me a bit stuck
It basically says to create a form with two ImageList Controls populate the first one lets say call it control1 with .ico files the usual way and then in the second control . . . control to add code to the form_load event prcedure that will transverse all the images in the first control and add a listimage to the second control using the same picture and key properties of the previous control
This is proabably easy to do but as i said i am quite new at this
thanks for any help possible
This thread is for discussions of Image List Control.