
Senecan Tragedy: Back on Stage? Patrick Kragelund 9. Construction of the Self in Senecan Drama John G. Boundary Violation and the Landscape of the Self in Senecan Tragedy Charles Segal 7.

The Will in Seneca the Younger Brad Inwood 6. Imagination and Meditation in Seneca: The Example of Praemeditatio Mireille Armisen-Marchetti 5. Self-scrutiny and Self-transformation in Seneca’s Letters Catharine Edwards 4. Seneca’s Epistles to Lucilius: A Revaluation Marcus Wilson 3. Enquiries concerning reproduction outside the scope of the above should be sent to the Rights Department, Oxford University Press, at the address above You must not circulate this book in any other binding or cover and you must impose the same condition on any acquirer British Library Cataloguing in Publication Data Data available Library of Congress Cataloging in Publication Data Data available Typeset by SPI Publisher Services, Pondicherry, India Printed in Great Britain on acid-free paper by Biddles Ltd., King’s Lynn, Norfolk ISBN 978–0–19–928208–1Ĭontents Introduction John G. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, without the prior permission in writing of Oxford University Press, or as expressly permitted by law, or under terms agreed with the appropriate reprographics rights organization. It furthers the University’s objective of excellence in research, scholarship, and education by publishing worldwide in Oxford New York Auckland Cape Town Dar es Salaam Hong Kong Karachi Kuala Lumpur Madrid Melbourne Mexico City Nairobi New Delhi Shanghai Taipei Toronto With oYces in Argentina Austria Brazil Chile Czech Republic France Greece Guatemala Hungary Italy Japan Poland Portugal Singapore South Korea Switzerland Thailand Turkey Ukraine Vietnam Oxford is a registered trade mark of Oxford University Press in the UK and in certain other countries Published in the United States by Oxford University Press Inc., New York ß Oxford University Press 2008 The moral rights of the authors have been asserted Database right Oxford University Press (maker) First published 2008 All rights reserved. Great Clarendon Street, Oxford ox2 6dp Oxford University Press is a department of the University of Oxford. Knox The Attic Orators Edited by Edwin Carawan Catullus Edited by Julia Haig Gaisser Lucretius Edited by Monica R. Harrison Aristophanes Edited by Erich Segal Greek Tragedy Edited by Erich Segal Menander, Plautus, and Terence Edited by Erich Segal The Greek Novel Edited by Simon Swain Euripides Edited by Judith Mossman Ancient Literary Criticism Edited by Andrew Laird Aeschylus Edited by Michael Lloyd Ovid Edited by Peter E. OXFORD READINGS IN CLASSICAL STUDIES Greek Religion Edited by Richard Buxton Homer’s Iliad Edited by Douglas L. HelperExcel.OXF O R D R E A D I N G S I N S E N E C A 'write file to Documents folder (ex: C:\Users\\Documents\TestExcel.xlsx)ĭim filename As String = System.IO.Path.Combine(Environment.GetFolderPath(), "TestExcel.xlsx") Usage: Private Sub Button1_Click(sender As Object, e As EventArgs) Handles btnRun.Click 'save Workbook - if file exists, overwrite itĮxcelWorkbook.SaveAs(filename,, ,, ,, ,, ,, , )ĭebug.WriteLine("Error (CreateExcelWorkbook): " & ex.Message) If excelApp IsNot Nothing AndAlso excelWorkbook IsNot Nothing Then 'excelWorksheet.Cells(1, "B") = "Product Description"ĮxcelWorksheet.Cells(1, 1) = "Product Code"ĮxcelWorksheet.Cells(1, 2) = "Product Description" 'excelWorksheet.Cells(1, "A") = "Product Code" 'indices are 1-based in Excel A1 = Cells(1,1)

'add a worksheet And set the value to the New worksheetĮxcelWorksheet = () 'only necessary if Excel application Visibility property = true 'disable user control while modifying the Excel Workbook 'suppress displaying alerts (such as prompting to overwrite existing file) Public Sub CreateExcelWorkbook(filename As String)ĭim oMissing As Object = ĭim excelApp As Excel.Application = Nothingĭim excelWorkbook As Excel.Workbook = Nothingĭim excelWorksheet As Excel.Worksheet = Nothing 'Project => Add Reference => COM => Microsoft Excel 16.0 Object Library Option 2: Specify the namespace Dim objApp As .Applicationĭim objBook As ._WorkbookĪdd a Module to your project (name: HelperExcel.vb)

Option 1: Add Imports statement: Imports Excel =

You have two options to resolve your issue:
