Results 1 to 8 of 8

Thread: How do you make ico graphics?

  1. #1
    Cheeko
    Guest

    How do you make ico graphics?

    Does anyone know which programs I can use to do this?

  2. #2
    PowerPoster beachbum's Avatar
    Join Date
    Jul 2001
    Location
    Wollongong, NSW, Australia
    Posts
    2,274
    hi
    U can use the free ImagEditor on ur VB CD or u can download freeware / shareware including MicroAngelo (i think ) lol
    Regards
    Stuart
    Stuart Laidlaw
    Brightspark Financial Software
    http://www.gstsmartbook.com

  3. #3
    Hyperactive Member scsa20's Avatar
    Join Date
    Apr 2001
    Location
    Mars
    Posts
    456


    p|-|34|2 /\/\3 f0|2 | $p34k 1337
    My TSS quote of the day: "If your haveing a bad day, just press the restart button."

  4. #4
    Hyperactive Member Knowledge_is_Et's Avatar
    Join Date
    Dec 2001
    Location
    An Oak.
    Posts
    305
    You don't need to go through all of that trouble. you can edit icons using microsoft paint. just change it to all files when you are opening and select the one you want to edit, it should open it. if it doesn't try renaming it to a .bmp, they have the same file format anyway. Remember, icons are ALWAYS either 32x32 pixels or 16x16(rarely). if you want to create your own, make a 32x32 image and save it as a .bmp

  5. #5
    Hyperactive Member scsa20's Avatar
    Join Date
    Apr 2001
    Location
    Mars
    Posts
    456
    Originally posted by Knowledge_is_Et
    You don't need to go through all of that trouble. you can edit icons using microsoft paint. just change it to all files when you are opening and select the one you want to edit, it should open it. if it doesn't try renaming it to a .bmp, they have the same file format anyway. Remember, icons are ALWAYS either 32x32 pixels or 16x16(rarely). if you want to create your own, make a 32x32 image and save it as a .bmp
    sorry to brake your heart, Trivor, but it's easyer to use an icon editor then to use paint, cuz with an icon editer, you can chose from the size and make it into a .ico, plus, some icon editors also lets you make cursurs.


    p|-|34|2 /\/\3 f0|2 | $p34k 1337
    My TSS quote of the day: "If your haveing a bad day, just press the restart button."

  6. #6
    Hyperactive Member Knowledge_is_Et's Avatar
    Join Date
    Dec 2001
    Location
    An Oak.
    Posts
    305
    I have used paint to make cursors, it's a .cur extension on a correctly sized .bmp file (not sure exactly, i think its 16x16) and that way you don't have to download programs, you can use what you have right there. it isn't much easier with those programs anyway

  7. #7
    Hyperactive Member scsa20's Avatar
    Join Date
    Apr 2001
    Location
    Mars
    Posts
    456
    Originally posted by Knowledge_is_Et
    I have used paint to make cursors, it's a .cur extension on a correctly sized .bmp file (not sure exactly, i think its 16x16) and that way you don't have to download programs, you can use what you have right there. it isn't much easier with those programs anyway
    but does it make it transpeant?? this programs makes it transpearnt


    p|-|34|2 /\/\3 f0|2 | $p34k 1337
    My TSS quote of the day: "If your haveing a bad day, just press the restart button."

  8. #8
    I'm about to be a PowerPoster! Joacim Andersson's Avatar
    Join Date
    Jan 1999
    Location
    Sweden
    Posts
    14,649
    You can create an Icon through code.
    Load a bitmap image (32x32 pixels) in an ImageList.
    Add a PictureBox to a form and use code simular to this to create the icon (if you set the MaskColor property of the ImageList you'll get the transparency).
    VB Code:
    1. Picture1.Picture = ImageList1.ListImages(1).ExtractIcon
    2. SavePicture Picture1.Picture, "c:\MyIcon.ico"
    Best regards

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width