Win32::OLE/excel errors

2006-03-16 Thread Josh . Perlmutter
dear Gurus- I have some more errors to work through before I'll feel ready to try out pulling out a specific sheet from among many. The following lines produces the errors shown under them. The link is to the full code. line 232 is after any loops the others are in LARGE loops so i'm not sure

RE: win32:: ole excel

2002-10-01 Thread Jenda Krynicky
From: Toby Stuart <[EMAIL PROTECTED]> > i'll bet it's because you are passing the literal string > "xlUnderlineStyleSingle" instead of its underlying value ie. 2 > > try > > $Sheet->Range("a10")->Font->{Underline} = 2; > > hth > > toby And if you want to be able to use the constants you hav

RE: win32:: ole excel

2002-09-30 Thread Toby Stuart
EMAIL PROTECTED]] > Sent: Tuesday, October 01, 2002 2:40 PM > To: [EMAIL PROTECTED] > Subject: win32:: ole excel > > > Hi All, > > Is there any way to underline a particular cell in excel sheet > using perl win32::OLE module.? > > I tried with belo

win32:: ole excel

2002-09-30 Thread praveen vejandla
Hi All, Is there any way to underline a particular cell in excel sheet using perl win32::OLE module.? I tried with below statement but it is not working. $Sheet->Range("a10")->Font->{Underline}= "xlUnderlineStyleSingle"; Thanks and Regards, Praveen ___