Martin v. Löwis <mar...@v.loewis.de> wrote:

> 
> > The only reference to ErrorIcon was commented out by Martin a while
> > ago. It was the icon attached to the Error Dialog you.
> 
> I'm not quite sure why I commented this out. See whether adding it back
> fixes the problem.

Yes, it gets rid of the secondary error, the bit about ErrorIcon and ErrorDlg.

> The only reason I can see now is that py.ico isn't really an appropriate
> error icon, instead, a stop sign or something like that should be used -
> I may not have known then (as I don't know now) how to get that into the
> MSI file.

Well, in http://svn.python.org/projects/sandbox/branches/MvL/msi/msi.py:

   # Bitmaps
    add_data(db, "Binary",
             [("PythonWin", msilib.Binary(srcdir+r"\PCbuild\installer.bmp")),
              ("Up",msilib.Binary("Up.bin")),
              ("New",msilib.Binary("New.bin")),
              ("InfoIcon",msilib.Binary("info.bin")),
              ("ExclamationIcon",msilib.Binary("exclamic.bin")),
             ])

Doesn't this work?

Bill
_______________________________________________
Distutils-SIG maillist  -  Distutils-SIG@python.org
http://mail.python.org/mailman/listinfo/distutils-sig

Reply via email to