Click here to Skip to main content
15,896,487 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# Learning Curve Pin
James T. Johnson25-May-03 11:54
James T. Johnson25-May-03 11:54 
GeneralRe: C# Learning Curve Pin
Rocky Moore25-May-03 15:16
Rocky Moore25-May-03 15:16 
GeneralRe: C# Learning Curve Pin
David Stone26-May-03 8:00
sitebuilderDavid Stone26-May-03 8:00 
QuestionDesign time control in Run time program? Pin
novachen23-May-03 21:24
novachen23-May-03 21:24 
AnswerRe: Design time control in Run time program? Pin
leppie24-May-03 0:30
leppie24-May-03 0:30 
GeneralPictureBox drag Pin
azusakt23-May-03 16:35
azusakt23-May-03 16:35 
GeneralImageList Pin
SherylK23-May-03 11:56
SherylK23-May-03 11:56 
GeneralRe: ImageList Pin
tuan_tomy25-May-03 21:44
tuan_tomy25-May-03 21:44 
"When I go to the ImageList -> properties -> Images -> Collection -> Add ..."

if you used ImageList by load from resx file , you no need use its properties and if you do so you also never see iamges on list. Because it embedded all of images from resx file.
To get image from Imagelist you can do like this :

protected Bitmap GetImage(int ImageIndex)
{
return (Bitmap)imgList.Images[ImageIndex];
// imgList is Imagelist that you loaded.
}

If you want to see all of Images in List you can use IconSucker to load file resx then select index image depend on you.
.....
GeneralListView Pin
hurlie23-May-03 8:30
hurlie23-May-03 8:30 
GeneralRemoving null characters from strings Pin
S O S23-May-03 5:01
S O S23-May-03 5:01 
GeneralRe: Removing null characters from strings Pin
NHM23-May-03 5:07
NHM23-May-03 5:07 
GeneralRe: Removing null characters from strings Pin
S O S24-May-03 1:35
S O S24-May-03 1:35 
GeneralRe: Removing null characters from strings Pin
Bo Hunter24-May-03 7:56
Bo Hunter24-May-03 7:56 
GeneralRe: Removing null characters from strings Pin
S O S24-May-03 10:41
S O S24-May-03 10:41 
GeneralRe: Removing null characters from strings Pin
Acidis31-May-03 9:33
Acidis31-May-03 9:33 
GeneralRe: Removing null characters from strings Pin
Acidis1-Jun-03 10:05
Acidis1-Jun-03 10:05 
GeneralRecordSets && DataSets Pin
NHM23-May-03 5:00
NHM23-May-03 5:00 
GeneralPlease help: System.Resources.MissingManifestResourceException Pin
Mertli Ozgur Nevres23-May-03 4:42
Mertli Ozgur Nevres23-May-03 4:42 
Generalmenu item with image Pin
NHM23-May-03 4:05
NHM23-May-03 4:05 
GeneralRe: menu item with image Pin
Tomas Petricek23-May-03 13:02
Tomas Petricek23-May-03 13:02 
GeneralRe: menu item with image Pin
KingTermite23-May-03 14:14
KingTermite23-May-03 14:14 
GeneralC# Dockable/Floating Menu Pin
NHM23-May-03 3:14
NHM23-May-03 3:14 
GeneralDebug this!!!!!! Pin
nosmij23-May-03 1:36
nosmij23-May-03 1:36 
GeneralRe: Debug this!!!!!! Pin
James T. Johnson24-May-03 9:05
James T. Johnson24-May-03 9:05 
GeneralActiveX in C# Pin
james4723-May-03 1:32
james4723-May-03 1:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.