How to detect the browser version?
-
Dear all, How to detect what kind of browser is running and its version? For example, Netscape or IE; IE 5.0 or IE 6.0, ect. Best regards,
-
Dear all, How to detect what kind of browser is running and its version? For example, Netscape or IE; IE 5.0 or IE 6.0, ect. Best regards,
Your question cannot be answered in its current form (as more than one browser can be installed at any given time). If you want to know the default browser, simply use
FindExecutable()
.
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
-
Your question cannot be answered in its current form (as more than one browser can be installed at any given time). If you want to know the default browser, simply use
FindExecutable()
.
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
So, can we detect IE version? BRs,
-
So, can we detect IE version? BRs,
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Version
I hope this will work. http://www.priyank.in/ -
So, can we detect IE version? BRs,
Yes, just use
GetFileVersionInfo()
andVerQueryValue()
.
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
-
Yes, just use
GetFileVersionInfo()
andVerQueryValue()
.
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
Thanks all,