Thanks Tom
> >Hi everyone,
> >I am converting one code from VB to VB.NET. I dont know how to use method
[quoted text clipped - 7 lines]
>
> Tom
Can you tell me how to convet the following lines of code from VB to VB.NET :
Set xImage = xImageLst.ListImages.Add(, "New", LoadPicture(xPath &
File_File_New))
Actually the Add method in VB.NET is not taking more than one argument which
is really creating a problem for me.
Please respond.
Regards,
Dushyant
> >Hi everyone,
> >I am converting one code from VB to VB.NET. I dont know how to use method
[quoted text clipped - 7 lines]
>
> Tom
Tom John - 27 Jul 2005 13:07 GMT
>Can you tell me how to convet the following lines of code from VB to VB.NET :
>Set xImage = xImageLst.ListImages.Add(, "New", LoadPicture(xPath &
>File_File_New))
xImageList.Images.Add(System.Drawing.Image.FromFile(xPath &
File_File_New))
Assuming tha xImageList is an imagelist.
Hope this helps
Tom