Sharing and a question
:confused:
I'm wrote a shorter way to detect the version of IE installed, based in some great tutorials here in the Nsis Forum and the Nsis DOCS, here is the code:
Function .onGUIInit
Push $R0
Push $R1
Push $1
GetDllVersion "$SYSDIR\mshtml.dll" $R0 $R1
IntOp $1 $R0 / 0x00010000 ;We only need the first digit
StrCmp $1 "3" GoodVer
MessageBox MB_OK|MB_ICONSTOP "You got the $1.x version of Internet Explorer. $\r$\We need 4.x or more power."
GoodVer:
FunctionEnd
But only read the version of the mshtml.dll
My question is: Does the mshtml.dll come with Intenet Explorer 3 or in older versions?
In the case that the end user has that version...
Thanks