0
votes
2answers
36 views
Windows Forms .NET 3.5 using resource images for a Treeview control
Hello SO,
When populating my treeview I would like to use the same images that I use in my toolbar etc which are stored in a resource file.
The treeview seems to on accept images …
0
votes
0answers
53 views
Generate thumbnail of pdf document.
Duplicate of (amongst others)
Generate thumbnail of pdf document
How to show thumbnail of pdf in listview C#.net?
how to place thumbnail of pdf in listview
develop an application …
1
vote
1answer
74 views
Combining Bitmaps / ImageLists (Win32)
Is it possible to create an image list from multiple bitmaps, or to combine multiple image lists into one.
For sake of simplicity, same element dimensions and transparent color co …
0
votes
0answers
34 views
insert a image in the ImageList at the perticular index
I want to insert a image in the ImageList at the specified index or you can say that replace the existing image at the perticular index but the Add method can'nt able to resolve t …
0
votes
1answer
263 views
How to add an imagelist to WPF listview?
I don't even see it in the Toolbox in the designer. Is it called something else?
I am trying to port my winforms listview to wpf.
0
votes
2answers
122 views
How can I replace an existing image on a winforms ImageList?
How can I replace an existing image on a winforms ImageList?
I tried this:
this.CoolPics.Images [ 2 ] = // new image
this.ListViewControl.SmallImageList = this.CoolPics;
Howeve …
1
vote
2answers
153 views
Create TImageList by specifying paths only
In Delphi 2007, images are loaded in a TImageList at design time. This introduces the following problem:
I have a folder containing the graphics I'm using in my application
Whene …
0
votes
1answer
88 views
How do I use an HIMAGELIST (from SetupDiGetClassImageList) as a .NET ImageList?
I've got an HIMAGELIST (from SetupDiGetClassImageList) and I'd like to use it with a Windows Forms ListView, which needs an ImageList. There's no ImageList.FromHandle.
How do I us …
2
votes
4answers
370 views
Using ImageList from VB6 application causes crash on Windows 7.0 64-bit
I have an old VB6 application that uses an ImageList control from COMCTL32.OCX ("Microsoft Windows Common Controls 5.0 (SP2)") to provide icons for TreeViews and ListViews.
The ap …
1
vote
2answers
604 views
Display Icon on form in vb.net
How would I display an Icon at 48x48 resolution on a form in vb.net?
I looked at using imagelist , but I don't know how to display the image that I add to the list using code and h …
0
votes
1answer
267 views
Animated GIF in ImageList / TabPage
I'd like to show an animated GIF as the tab image on a TabPage.
If I add my image to an ImageList and use the TabPage.ImageIndex property, it only shows the first frame (and doesn …
0
votes
1answer
93 views
Can System.Windows.Forms.ColumnHeader use a different image then one from the main ImageList?
I have an ListView set up to sort, and I have that working well.
However, when the ListView is sorted, no indication is provided as to the current sort column and order.
I tried …
1
vote
1answer
111 views
Who is responsible for clearing up memory from image lists?
If I have a CImageList object (a simple wrapper around a HIMAGELIST), and I call:
m_pImageList->Replace(...);
http://msdn.microsoft.com/en-us/library/k10cwcdb.aspx
Who is …
2
votes
5answers
1k views
PNGs in Delphi 2009 Imagelists and Images
D2009 introduces PNG support for Images and Imagelists.
However...
I have an imagelist containing png images with alpha. I want to place one of these on a form using a TImage. Ho …
0
votes
2answers
293 views
.NET: How to load an image into an ImageList?
i have an image that contains a series of images, e.g.:
In the olden days, i would load the image into the ImageList common control using such API calls as:
ImageList_Add
Imag …
