Re: [Wtr-general] Formatting Excel Column Width

2006-09-24 Thread Michael Bolton
excel = WIN32OLE::new('excel.Application') workbook = excel.Workbooks.Open(../PC/ + Time.now.strftime(%d-%b-%y) + .csv) worksheet = workbook.Worksheets(1) #get hold of the first worksheet #Format workbook columns worksheet.range(b1:b4).Interior['ColorIndex'] = 36 #pale yellow # How do I widen the

Re: [Wtr-general] Watir_Simple Handle Exhaustion

2006-09-24 Thread Bret Pettichord
Phlip wrote: What I meant was TDD requires frequent edits and test runs, and the handle exhaustion problem is causing frequent reboots between them! I don't understand how anyone else can use Watir for anything, much less TDD. I run Watir tests all the time. And i actually often use TDD to

Re: [Wtr-general] Watir_Simple Handle Exhaustion

2006-09-24 Thread Phlip
I fixed it! Guess what? voice size=tiny it was my fault /voice Bret Pettichord wrote: Maybe everyone has more handles than me. Can you tell me how i would be able to tell that Watir was having handle problems? How would i measure how many handles are being used so that i could tell

[Wtr-general] Rose Cao is out of the office.

2006-09-24 Thread Rose Cao
I will be out of the office starting 09/24/2006 and will not return until 10/26/2006. Please contact my team lead Scott Cantu for all matters. Thanks, Rose Cao SDC West - LLXC Information Reporting Solutions IBM Global Services 303.924.1916 T/L 347-1916 [EMAIL PROTECTED] Highland Contractor

Re: [Wtr-general] nested tables

2006-09-24 Thread Lonny Eachus
For the most part, Vincent, nested tables are straightforward. If you have an @ie object, and frame A containing frames B and C, which contain other elements: Text box in frame B: @ie.frame('A').frame('B').text_box(:id, 'my_text_box').set('sample text') Button in frame C: