Library tutorials & articles
Image List Control
By James Crowley, published on 14 Jul 2001
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
-
how do you hide all in VB6
by CapnJack (1 replies)
-
Problem with Input File
by novavb6 (3 replies)
-
How to produce a txt file with a table??
by novavb6 (1 replies)
-
VB6 compatability from XP to Vista
by bronx (1 replies)
-
Fully justify code
by fresh (0 replies)
I am 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 ,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.