|
-
May 20th, 1999, 03:19 AM
#1
CWebbrowser(1) IE3/IE4
I want to have an application with the webbrowser ActiveX CWebbrowser for IE3 and CWebbrowser1 for IE4. How can I find out what IE is installed on the PC?
-
May 28th, 1999, 08:28 AM
#2
Re: CWebbrowser(1) IE3/IE4
BOOL _IsIE40()
{
BOOL bfRC = FALSE;
RegistryKey orkVersion("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Internet Explorer" );
TCHAR *ptcTemp = orkVersion.Value( "Version" );
if ( ptcTemp ) {
ptcTemp[ 4 ] = '\0';
double dlVersion = atof( ptcTemp );
bfRC = ( dlVersion >= 4.71 );
free( ptcTemp );
}
m_bfIsIE40 = bfRC;
return bfRC;
}
-
May 28th, 1999, 10:27 AM
#3
Re: CWebbrowser(1) IE3/IE4
What is RegistryKey? Is that not Java?
Wayne
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|