Re: excel application

2006-03-29 Thread luca72
Thanks Peter Regards Luca -- http://mail.python.org/mailman/listinfo/python-list

Re: excel application

2006-03-29 Thread Petr Jakes
Luca, you can find a lot of answers to your questions on this discussion group. If you will try to search using key words "excel constants" for example, you will get the link to the following link (among others): http://tinyurl.com/go3qf IMHO it is good idea to search the web and discussion groups

Re: excel application

2006-03-29 Thread luca72
Thanks a lot Luciano Regards Luca -- http://mail.python.org/mailman/listinfo/python-list

Re: excel application

2006-03-29 Thread [EMAIL PROTECTED]
Hi Luca, The words xlDiagonalDown e xlNone are Excel constants and don't are in the Local NameSpace use these values: xlNone = -4142 xlDiagonalDown = 5 Then the last line stay like that """ packing.ActiveSheet.Selection.Borders(5).LineStyle = -4142 # Excel Constants: xlNone = -4142 xl