making an icon for ur application
-
hi I'm working a windows application project in C# and I was wondering how can we make or use icons for our application u know. It requires .ICO file and many softwares dont sopport making these so what should I do. do u know of any site where some good icons are available or somethin like that thanks in advance Rocky
-
hi I'm working a windows application project in C# and I was wondering how can we make or use icons for our application u know. It requires .ICO file and many softwares dont sopport making these so what should I do. do u know of any site where some good icons are available or somethin like that thanks in advance Rocky
u can get it from any book of C# like of deitel,where code and idea is given to place information,exclamation,error and other icons on application.
-
hi I'm working a windows application project in C# and I was wondering how can we make or use icons for our application u know. It requires .ICO file and many softwares dont sopport making these so what should I do. do u know of any site where some good icons are available or somethin like that thanks in advance Rocky
-
AS a (bad) workaround, you can place a bmp is your resources and convert it into an icon: Bitmap bmp = (Bitmap)resources.GetObject("myBMP.bmp"); IntPtr Hicon = bmp.GetHicon(); Icon newIcon = Icon.FromHandle(Hicon); Then do what you want with it.