Results 1 to 10 of 10

Thread: those nice little icons... hmmm i like em, i like em a lo' [Resolved!]

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    66

    Resolved those nice little icons... hmmm i like em, i like em a lo' [Resolved!]

    Hi all,

    How can i make a custom icon for my program? (that icon in the titlebar of my program).
    Its now just a white projecttype thingie.



    thanks again!
    Last edited by waltervis; Feb 22nd, 2005 at 03:42 AM.

  2. #2
    Fanatic Member Psyrus's Avatar
    Join Date
    Jul 2000
    Location
    NJ
    Posts
    602

    Re: those nice little icons... hmmm i like em, i like em a lo'

    You can add a custom icon for a form by setting it's Icon property. Or you can change the .exe icon by going to the Make Tab on the Project Property sheet. To create an icon (.ico) file, if you have VC++, you can start a new project, go to File/New and select the Files tab. From there select the Icon File to open up the editor.
    Chris

    VB 6.0 Calendar App Video Gamers Group
    Don't forget to rate people if they helped you.

  3. #3
    Addicted Member perlmonk's Avatar
    Join Date
    Jan 2005
    Posts
    138

    Re: those nice little icons... hmmm i like em, i like em a lo'

    first off...excellent question, and i love the title of the post.

    i jus made an icon as you specified..and then i went to the make tab in properties for my app...but, i dont see a button for browse...so, how do i set up this icon for my app?

  4. #4
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: those nice little icons... hmmm i like em, i like em a lo'

    If you dont have VC++ you can download a number of free or trialware utilities for
    creating icons. One that I know of is MicroAngelo. Try a google search for more.

    HTH
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  5. #5
    MS SQL Powerposter szlamany's Avatar
    Join Date
    Mar 2004
    Location
    Connecticut
    Posts
    18,263

    Re: those nice little icons... hmmm i like em, i like em a lo'

    Quote Originally Posted by Psyrus
    You can add a custom icon for a form by setting it's Icon property. Or you can change the .exe icon by going to the Make Tab on the Project Property sheet. To create an icon (.ico) file, if you have VC++, you can start a new project, go to File/New and select the Files tab. From there select the Icon File to open up the editor.
    If you use VC++, note that the STANDARD (32x32) ICON becomes the desktop shortcut type of ICON for the executable, and the SMALL (16x16) becomes the titlebar/taskbar ICON for the executable - one .ICO file serves both purposes.

    *** Read the sticky in the DB forum about how to get your question answered quickly!! ***

    Please remember to rate posts! Rate any post you find helpful - even in old threads! Use the link to the left - "Rate this Post".

    Some Informative Links:
    [ SQL Rules to Live By ] [ Reserved SQL keywords ] [ When to use INDEX HINTS! ] [ Passing Multi-item Parameters to STORED PROCEDURES ]
    [ Solution to non-domain Windows Authentication ] [ Crazy things we do to shrink log files ] [ SQL 2005 Features ] [ Loading Pictures from DB ]

    MS MVP 2006, 2007, 2008

  6. #6
    MS SQL Powerposter szlamany's Avatar
    Join Date
    Mar 2004
    Location
    Connecticut
    Posts
    18,263

    Re: those nice little icons... hmmm i like em, i like em a lo'

    Quote Originally Posted by perlmonk
    first off...excellent question, and i love the title of the post.

    i jus made an icon as you specified..and then i went to the make tab in properties for my app...but, i dont see a button for browse...so, how do i set up this icon for my app?
    We associated the ICON with our MDI Parent form (under form properties) and then under PROJECT/PROPERTIES/Make Tab we set the ICON to that FORM.

    *** Read the sticky in the DB forum about how to get your question answered quickly!! ***

    Please remember to rate posts! Rate any post you find helpful - even in old threads! Use the link to the left - "Rate this Post".

    Some Informative Links:
    [ SQL Rules to Live By ] [ Reserved SQL keywords ] [ When to use INDEX HINTS! ] [ Passing Multi-item Parameters to STORED PROCEDURES ]
    [ Solution to non-domain Windows Authentication ] [ Crazy things we do to shrink log files ] [ SQL 2005 Features ] [ Loading Pictures from DB ]

    MS MVP 2006, 2007, 2008

  7. #7
    PowerPoster RhinoBull's Avatar
    Join Date
    Mar 2004
    Location
    New Amsterdam
    Posts
    24,132

    Re: those nice little icons... hmmm i like em, i like em a lo'

    Quote Originally Posted by waltervis
    Hi all,

    How can i make a custom icon for my program? ...
    Best icon editor out there is Microangelo but it cost a little. Most recent version supports alpha blending as well.

  8. #8
    Addicted Member perlmonk's Avatar
    Join Date
    Jan 2005
    Posts
    138

    Re: those nice little icons... hmmm i like em, i like em a lo'

    Quote Originally Posted by szlamany
    We associated the ICON with our MDI Parent form (under form properties) and then under PROJECT/PROPERTIES/Make Tab we set the ICON to that FORM.
    gotcha...thanks!

  9. #9
    PowerPoster Keithuk's Avatar
    Join Date
    Jan 2004
    Location
    Staffordshire, England
    Posts
    2,236

    Re: those nice little icons... hmmm i like em, i like em a lo'

    Do a search on here for Imagedit.exe. I posted the Imagedit.exe that comes with VB6. If you have the CD its on there.
    Last edited by Keithuk; Feb 21st, 2005 at 03:47 PM.
    Keith

    I've been programming with VB for 25 years. Started with VB4 16bit Pro, VB5 Pro, VB6 Pro/Enterprise and now VB3 Pro. But I'm no expert, I'm still learning.

  10. #10

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    66

    Re: those nice little icons... hmmm i like em, i like em a lo'

    BEEEEEEEuatifull!

    Gentleman once again, you helped me(and others) out great!
    I almost feel guilty because all of the things i ask around here lol.

    THANKS BIG TIME!



    For now... i sail away.... <woooooooh...wooooooh....(boat..) :mike: >

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