Booji wrote: > Hi everybody , I am developing with VC++ 6.0 a .lib file and I want to add a > version to it . I tried to do it the way I used to do it with .exe files, but > seems it doesn't work : I mean, I add the version resource to the .rc file > included in the project,then I create the .lib > file without problems , but when I right click it there's no button > concerning the version .... the one I used to see on my .exes .... > > How can I do it, and , is it really possibile to do it with .libs (I guess it > should be anyway ....) ? > > Thank you > > > Leo
No. .rc files are for executables and DLLs only. They are an integral part of the PE file format (third data directory). .lib files don't have support for such things. You shouldn't be developing new applications with VC++ 6 anymore. It is an ancient compiler. -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus 1.1 Get on task. Stay on task. http://www.CubicleSoft.com/MyTaskFocus/
