You are making a mistake.
Users will
hate you because your program loads IE instead of their selected browser.
If I set my browser to be Opera, for example, and your program starts IE, I will not use your program any more.
It is that simple.
And it isn't just me.
If you want to start the user's browser for a specific page, then use
ShellExecute().
http://www.google.com/search?btnI=1&q=msdn+ShellExecute
If you want to start the browser by itself, use the code I gave you above.
If you
must start IE, for some valid reason (and "it
only works with IE" is not usually considered a valid reason by web designers), then you can find IE's location in the registry:
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE
(Yes, it is OK to do that.)
And, as
chrisname suggested, and I gave you code for, you could just find the Program Files directory and append "\\Internet Explorer\\iexplore.exe" to it, as all versions of IE (on Windows) are there (AFAIK).
Good luck!