Bo Peng wrote: >> To solve this the lyx.exe must have an icon included that is >> automatically taken by the dialogs. How can this be achieved? > > We need to embed an icon, as well the manifest file with lyx.exe (and > lyxc.exe if needed). I am investigating it. > > Bo >
You need to also link a resource file when linking the (final) executable. To create that file you take the icon, create a lyx.rc file (that describes the resouce) like IDI_ICON1 ICON DISCARDABLE "/path/to/icon.ico" Then: rc.exe lyx.rc and the result is the resource you need to link. Hope this helps, Michael