vijayasiva Posted May 27, 2004 Report Share Posted May 27, 2004 Any one who knows about user32.dll application function which will write value to the properties window(when right-click any application, properties window popup)-summary information like Title, subject, author, catogory, keywrods etc. Thanks & Regards Vijayasiva Quote Link to comment
Rolf Kalbermatter Posted May 28, 2004 Report Share Posted May 28, 2004 As long as it is about retrieving version information for executables and dlls you should try to look for the GetFileVersionInfo() and VerQueryValue() functions. Not really sure if they are in user32.dll. MSDN says they are provided by version.lib which would usually mean there should be a version.dll somewhere. Changing this information on existing files is a VERY bad idea as it will screw up installers which you might try to use to upgrade or uninstall existing applications. Accessing property pages of other Explorer namespace objects is very difficult to do without COM (the base of OLE) object handling. Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.