AU Browser Agent for IE9

Snitz™ Forums 2000
https://forum.snitz.com/forumTopic/Posts/69910?pagenum=1
05 November 2025, 06:44

Topic


Andy Humm
AU Browser Agent for IE9
29 April 2011, 15:57


I have just updated my laptop browser to IE9 and noticed that the Active Users OS/Brower column now shows Windows Vista / Safari even though I have Windows 7 and now IE9
Has anyone supplied the line of code that will display the IE9 and correct Browser

function fUserAgent(ua) and strBrowser

ElseIf instr(ua, "MSIE 8") Then
strBrowser = "Microsoft IE 8"
and

ElseIf instr(ua, "Windows Vista") or instr(ua, "Windows NT 6.0") then
strSystem = "Windows Vista"
Thanking you advance

 

Replies ...


HuwR
29 April 2011, 16:51


for IE 9 you need to add

ElseIf instr(ua, "MSIE 9") Then
strBrowser = "Microsoft IE 9"
and

then for windows 7

ElseIf instr(ua, "Windows NT 6.1") then
strSystem = "Windows 7"
Andy Humm
30 April 2011, 14:32


Thanks HuwR
© 2000-2021 Snitz™ Communications