Author Topic: Changing Icon of The .EXE file in Visual Basic 6.0 (and red hat 8.0 licence)  (Read 1775 times)

loopers

  • Member
  • **
  • Posts: 25
  • Kudos: 0
    • http://geocities.com/cyalex2001/mypic.jpg
I am a beginner in Visual Basic. This is the problems that I have. After I wrote a program in Visual Basic, I have also compile and publish the program into the final output that is final product with the extension .EXE .

However, how can we change the icon of the program to something more interesting instead of using the normal Form icon provided by Visual Basic 6.0?

Any help will greatly be appreciated.

[topic title changed - sorry, but it's kind of gone on to a different subject, so i thought i'd make the title more accurate]

[ December 19, 2002: Message edited by: Calum ]

**********************************
To hack or not to hack, that is the question.

Julius Cracker

**********************************


voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
Someone please remove this account. Thanks...

Refalm

  • Administrator
  • Member
  • ***
  • Posts: 5,183
  • Kudos: 704
  • Sjembek!
    • RADIOKNOP

Gooseberry Clock

  • Member
  • **
  • Posts: 419
  • Kudos: 0
    • http://redrangersoftware.cjb.net/
Look for Icon in the form's properties.

Gooseberry Clock

  • Member
  • **
  • Posts: 419
  • Kudos: 0
    • http://redrangersoftware.cjb.net/
Loopers does, which is why I posted the answer. Would you rather I told him to piss off to some other site? 'cos I can do that, you know.

xyle_one

  • VIP
  • Member
  • ***
  • Posts: 2,213
  • Kudos: 135
since you are only beginning in vb, i think it would be wise to stop now, before your brain is completely lost to M$. as for helping, im sorry, i wouldnt ever use VisualBasic. and again. We are the Microsoft Eradication Society. we are not Microsoft Tech Support. If you are having trouble getting rid of vb, we can surely help with that  

Calum

  • Global Moderator
  • Member
  • ***
  • Posts: 7,812
  • Kudos: 1000
    • Calum Carlyle's music
quote:
Originally posted by * Red Ranger Software * PC Commando:
Loopers does, which is why I posted the answer. Would you rather I told him to piss off to some other site? 'cos I can do that, you know.


actually, i think that this site here would be the most useful to loopers, as somebody said already, however i think for specific windows questions it would be best to ask at the Windows BS as most of the posters here don't give a fuck, sorry i meant don't know that much about microsoft's proprietary software.
visit these websites and make yourself happy forever:
It's my music! | My music on MySpace | Integrational Polytheism

voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
I know quite a lot about it, one of the reasons I decided to stop using it.
Someone please remove this account. Thanks...

Bazoukas

  • Member
  • **
  • Posts: 866
  • Kudos: 140
    • http://whitehouse.com
try this. I promise you, you will love it C++ heaven enviroment

but you will need one of THESE to make THIS run smooth and nice.

 Hope that helped you a little    


*sorry Void I couldnt resist. I am a bad copycat i know  :(

[ December 16, 2002: Message edited by: bazoukas [The F*en Linux Militant] ]

Yeah

zooloo

  • Member
  • **
  • Posts: 104
  • Kudos: 0
    • http://www.websteam.co.uk
I don't know if it's the same sort of thing but... Python - anyone have an opinion on this.

There are several editors, I'm trying Idle.

Python editors at python.org

All open source and lovely.

zooloo
Open Source Software - What is the compelling reason to use anything else?

voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
Many Red Hat system tools are written in python. I know a lot of people who swear by it. I personally have never taken the time to learn it as the languages I currently use do everything I need them to.

[ December 16, 2002: Message edited by: void main ]

Someone please remove this account. Thanks...

jtpenrod

  • VIP
  • Member
  • ***
  • Posts: 675
  • Kudos: 105
quote:
I am a beginner in Visual Basic. This is the problems that I have. After I wrote a program in Visual Basic, I have also compile and publish the program into the final output that is final product with the extension .EXE .

However, how can we change the icon of the program to something more interesting instead of using the normal Form icon provided by Visual Basic 6.0?

Any help will greatly be appreciated.
The most helpful advise I can give you is this: Stop using it! NOW!. There are a couple of major problems here. As a serious programming language, BASIC SUX. Sure, it's real easy to learn, learn in a few weeks; spend years unlearning all the really bad habits it taught you. You'd do much better to learn C++. If you insist on developing for Winderz, then learn C#. His Gatesness intends to phase out Visual BASIC (even though he denies it -- don't believe unsubstantiated rumours till they're officially denied   ;)   ).

You might want to give FOX a try. This is a cross-platform programming aid that you can use to write apps that'll run on *NIX, and Winderz. Also, unlike Visual BASIC, it's free (as in beer), it's GPL'd (free as in freedom), and all the source code is provided. So you will be able to see exactly how your apps work. This is one thing you can never do with Visual BASIC as it's proprietary. You never get to see anything more than bits and pieces of your apps. In conclusion, it's a dumbed-down development environment that will dumb you down as well.

Best of all, ditch Winderz completely, learn to program for *NIX and learn how to become a real programmer.     That way, you'll learn what programming is all about, as 90% of it isn't hidden away from you. That's why so many Winderz programs are so bad: dumbed-down development environments inevitably lead to dumbed-down developers. It's a fate to be avoided.
_____________________________________
Live Free or Die: Linux

Their fundamental design flaws are completely concealed by their superficial design flaws.
Live Free or Die: Linux
If software can be free, why can't dolphins?

jtpenrod

  • VIP
  • Member
  • ***
  • Posts: 675
  • Kudos: 105
quote:
don't know if it's the same sort of thing but... Python - anyone have an opinion on this.

There are several editors, I'm trying Idle.


The only similarity between BASIC and Python is that they're both interpreted. Python is so much better. The syntax is nice and clean, and C-like, so you can more easily pick up C and C++ after learning Python, as the syntax won't be completely unfamiliar. Python is also object oriented. This allows writing modular programs with it. Also, FXPy is a very good toolkit for writing graphical apps in Python. Another nice thing about it is that you can extend Python by writing your own C++ modules.

Also, Ruby isn't none too shabby either, even if it is a bit harder to learn than Python.
______________________________________
Live Free or Die: Linux

Their fundamental design flaws are completely concealed by their superficial design flaws.
Live Free or Die: Linux
If software can be free, why can't dolphins?

Calum

  • Global Moderator
  • Member
  • ***
  • Posts: 7,812
  • Kudos: 1000
    • Calum Carlyle's music
jtpenrod, where's all this free beer i keep hearing about? i haven't got any of it yet!
visit these websites and make yourself happy forever:
It's my music! | My music on MySpace | Integrational Polytheism

voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
quote:
Originally posted by Calum:
jtpenrod, where's all this free beer i keep hearing about? i haven't got any of it yet!


You can lead a horse to water, but you can't make it drink:

http://www.linuxiso.org/
Someone please remove this account. Thanks...