Home > microsoft word > new word.application error

New Word.application Error

Contents

here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and microsoft word 12.0 object library dll download policies of this site About Us Learn more about Stack Overflow the

Excel.workbook User-defined Type Not Defined

company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags microsoft word 12.0 object library download Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of 6.2 million programmers, just like you, helping each other. Join them; it only

Vba Tools References Greyed Out

takes a minute: Sign up User defined type not defined- controlling Word from Excel up vote 0 down vote favorite I am trying to do some relatively simple copy and pasting from Excel 2007 into Word 2007. I've looked through this site and others, and keep getting hung up on the same thing- the third line n the code below keeps compile error in hidden module link mac giving me the "User type note defined" error msg. I am really confused since I just lifted this from another solution (and had similar issues with other solutions I tried to lift). Could someone please educate me on what is causing the error, and why? Sub ControlWord() ' **** The line below gives me the error **** Dim appWD As Word.Application ' Create a new instance of Word & make it visible Set appWD = CreateObject("Word.Application.12") appWD.Visible = True 'Find the last row with data in the spreadsheet FinalRow = Range("A9999").End(xlUp).Row For i = 1 To FinalRow ' Copy the current row Worksheets("Sheet1").Rows(i).Copy ' Tell Word to create a new document appWD.Documents.Add ' Tell Word to paste the contents of the clipboard into the new document appWD.Selection.Paste ' Save the new document with a sequential file name appWD.ActiveDocument.SaveAs Filename:="File" & i ' Close this new word document appWD.ActiveDocument.Close Next i ' Close the Word application appWD.Quit End Sub excel vba excel-vba ms-word excel-2007 share|improve this question edited Jul 31 '12 at 17:36 SeanC 11.2k52045 asked Jul 30 '12 at 20:13 T

soon) Ruby (coming soon) Getting Started Code Samples Resources Patterns and Practices App Registration Tool Events Podcasts Training API Sandbox Videos Documentation Office Add-ins Office Add-in Availability Office Add-ins Changelog Microsoft Graph API Office 365 Connectors Office 365

User Defined Type Not Defined Vba Excel

REST APIs SharePoint Add-ins Office UI Fabric Submit to the Office Store All Documentation

User-defined Type Not Defined Excel 2010

https://www.yammer.com/ http://feeds.feedburner.com/office/fmNx Ask a question Quick access Forums home Browse forums users FAQ Search related threads Remove From My Forums Answered by: microsoft word object library Compile Error: User-defined type not defined Microsoft Office for Developers > Access for Developers Question 0 Sign in to vote Hello all I'm trying to do a mail merge into Word. When I click on the http://stackoverflow.com/questions/11728899/user-defined-type-not-defined-controlling-word-from-excel button I'm getting the a Compile Error Please see the code below. Private Sub MailMergeButton_Click() On Error GoTo Err_MailMergeButton_Click Dim objwordApp As Word.Application Dim objWordDoc As Word.Document If AddressAlocationType = 3 Then Exit Sub Set objwordApp = CreateObject("objword.application") wordApp.Visible = True Select Case [AddressAlocationType] Case 1 Set objWordDoc = wordApp.Documents.Add("c:\database\W_L_G.dot") Case 2 Set objWordDoc = wordApp.Documents.Add("c:\database\W_L_P.dot") Case 3 https://social.msdn.microsoft.com/Forums/office/en-US/79a997cd-8352-4e2e-b0f7-b24462c89bd2/compile-error-userdefined-type-not-defined?forum=accessdev Exit Sub End Select Exit_MailMergeButton_Click: Exit Sub Err_MailMergeButton_Click: MsgBox Err.Description Resume Exit_MailMergeButton_Click End Sub Can someone be so kind to let me know what I'm doing wrong... Many thanks Thursday, November 10, 2011 1:04 PM Reply | Quote Answers 1 Sign in to vote You need to go in VBE windows, then menu Tools > References > then search for Microsoft Word xx.0 Object Library The xx is a Number, which can vary depending on which version of Office you have installed. To make use of the Word Object Library, you must have installed Word on your PC, I assume you have. You might use Late binding, to avoid using Word Object Library, but thats another topic. Daniel van den Berg | Washington, USA | "Anticipate the difficult by managing the easy" Marked as answer by bryan_rymer Thursday, November 10, 2011 3:26 PM Thursday, November 10, 2011 2:19 PM Reply | Quote All replies 1 Sign in to vote Forwhich line the compile error occurs? Have you added a reference to Microsoft Word Object Library? Thursday, November 10, 2011 1:09 PM Reply | Quote Moderator 0 Sign in to vote Thank you so much for your respond... please see the line below where

Forums Excel Questions VBA - Word.Application Compile Error Results 1 to 2 of 2 VBA - Word.Application Compile ErrorThis is a discussion http://www.mrexcel.com/forum/excel-questions/639989-visual-basic-applications-word-application-compile-error.html on VBA - Word.Application Compile Error within the Excel Questions forums, part of the Question Forums category; I am getting a "Complie Error: User-defined type not defined" I cannot http://www.wiseowl.co.uk/blog/s199/vba-link-applications.htm figure out why i am getting this error. ... LinkBack LinkBack URL About LinkBacks Bookmark & Share Digg this Thread!Add Thread to del.icio.usBookmark in TechnoratiTweet this thread Thread microsoft word Tools Show Printable Version Display Linear Mode Switch to Hybrid Mode Switch to Threaded Mode Jun 5th, 2012,03:40 PM #1 SpeedyFingers New Member Join Date Mar 2012 Posts 38 VBA - Word.Application Compile Error I am getting a "Complie Error: User-defined type not defined" I cannot figure out why i am getting this error. Code: Sub Create_Letters() Dim objX type not defined As Object Dim rng1 As Range Dim rng2 As Range Dim wb As Workbook Dim wsControl As Worksheet Dim wsData As Worksheet ' Dim oApp As Word.Application Dim oBookMark As Word.Bookmark Dim oDoc As Word.Document ' Dim strDocumentFolder As String Dim strTemplate As String Dim strTemplateFolder As String Dim lngTemplateNameColumn As Long Dim strWordDocumentName As String Dim lngDocumentNameColumn As Long Dim lngRecordKount As Long ' not used but retain for future use ' Set wb = ThisWorkbook Set wsControl = wb.Worksheets("Control Sheet") wsControl.Activate Set wsData = wb.Worksheets(wsControl.[Data_Sheet].Value) strTemplateFolder = wsControl.[Template_Folder].Value strDocumentFolder = wsControl.[Document_Folder].Value wsData.Activate lngTemplateNameColumn = wsData.[Template_Name].Column lngDocumentNameColumn = wsData.[Document_Name].Column 'number of letters required: 'must not have any blank cells in column A - except at the end Set rng1 = wsData.Range(Cells(2, 1), Cells(Rows.Count, 1).End(xlUp)) lngRecordKount = rng1.Rows.Count ' 'Set oApp = CreateObject("Word Application") Set oApp = New Word.Application 'Process each record in turn For Each rng2 In rng1 strTemplate = strTemplateFolder & "\" & wsData.Cells(rng2.Row, lngTemplateNameColumn) strWordDocumentName = strDocumentFolder & "\" & wsData.Cells(rng2.Row, lngDocumentNameColumn) 'check that template exists If Dir(strTemplate) = "

Courses Microsoft Excel training + Excel training VBA (macros) Modelling in Excel Excel Power BI Power BI Desktop SQL Server training Writing SQL Integration Services Analysis Services Reporting Services Report Builder Programming courses T-SQL VBA macros C# Visual Basic DAX Business Intelligence SSRS SSAS (Tabular) SSAS (Cubes) SSIS Power BI Tools Go Wise Owl Training Blogs Referencing Word and other applications in Excel VBA Using VBA to Link Applications This page has 0 threads | Add post BLOGS BY TOPIC Blog home page (332) Excel + (112) SQL Server (144) Programming (138) General (22) Archived (70) BLOGS BY AUTHOR Andrew Gould (81) Andy Brown (235) David Wakefield (3) Jenny Brown (1) Michael Allsop (12) BLOGS BY YEAR 2010 (2) 2011 (76) 2012 (100) 2013 (45) 2014 (38) 2015 (23) 2016 (48) Referencing Word and other applications in Excel VBA Part three of a four-part series of blogs Even if you're writing Visual Basic macros within Excel, there's nothing to stop you inserting text into Word documents, manipulating PowerPoint slides or sending Outlook emails. This blog explains how to reference other applications, and write macros in Excel to link to other Microsoft Office software Creating References to Other Applications in VBA Using Tools References to Create a Reference to Word Using VBA to Link Applications (this blog) Using Bookmarks to Fill in a Word Document from Excel This blog is part of a complete Excel VBA tutorial. You can also learn to program in VBA on one of our VBA macros courses.

Posted by Andy Brown on 05 December 2011 You need a minimum screen resolution of about 700 pixels width to see our blogs. This is because they contain diagrams and tables which would not be viewable easily on a mobile phone or small laptop. Please use a larger tablet, notebook or d

 

Related content

autosave error microsoft word

Autosave Error Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Autosave Location a li li a href Microsoft Word Autosave Not Working a li li a href Microsoft Word Autosave Location Windows a li li a href Microsoft Word Autosave Location Mac a li ul td tr tbody table p be down Please try the request again Your cache administrator is webmaster Generated Sat Oct GMT by s hv squid p p One relatedl games Xbox games PC p h id Microsoft Word Autosave Location Windows p games Windows

contextual spelling error microsoft word

Contextual Spelling Error Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Show Spelling Errors a li li a href Microsoft Word Hide Spelling Errors a li li a href How To Check Spelling Mistake In Microsoft Word a li li a href What Does The Blue Line Mean In Microsoft Word a li ul td tr tbody table p your document for spelling and grammar errors so you may not even need to run relatedl a separate spelling and grammar check These errors are microsoft word spelling checker error

converter error microsoft word

Converter Error Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Converter Xlsx To Xls a li li a href Microsoft Office File Converter a li li a href Microsoft Word Conversion To Pdf a li ul td tr tbody table p product category keywords or phrases Advanced Search Search terms Screen Reader users press relatedl enter to Limit by product Limit by product microsoft word file conversion error This button does not work with screen readers Please use the microsoft word file conversion encoding error previous link instead Select a

common microsoft word error messages

Common Microsoft Word Error Messages table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Error Messages a li li a href Microsoft Word Error Message The Number Must Be Between And a li li a href Microsoft Word Error Message Insufficient Memory a li li a href Microsoft Word Error Message This Document Could Not Be Registered a li ul td tr tbody table p games PC games Windows p h id Microsoft Word Error Messages p games Windows phone games Entertainment All Entertainment microsoft word error message when saving a file

compile error microsoft word 2011

Compile Error Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Ms Word Compile Error In Hidden Module a li li a href Microsoft Word Free Trial a li li a href Microsoft Word Free Download Windows a li ul td tr tbody table p HomeLibraryWikiLearnGalleryDownloadsSupportForumsBlogs Ask a question Quick access Forums home Browse forums users FAQ Search related threads Remove From My Forums Answered by compile error in hidden module link on mac Microsoft relatedl Office Office and Office ProPlus - IT Pro microsoft word compile error in hidden module General

com add-in error in microsoft word

Com Add-in Error In Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Plugin a li li a href Microsoft Word Plugin Development a li li a href Math Fonts Microsoft Word a li ul td tr tbody table p my add-in crashing Applies To Excel Word PowerPoint Access Visio Excel Word PowerPoint Access Visio Visio Standard Visio Professional Less Applies To Excel Word relatedl PowerPoint Access Visio microsoft word plugin Excel Word PowerPoint Access Visio Visio p h id Microsoft Word Plugin p Standard Visio Professional More Which version

dialogue box error microsoft word

Dialogue Box Error Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href How To Close Dialog Box In Microsoft Word a li li a href What Is A Dialog Box In Microsoft Word a li li a href What Is A Dialog Box In Word a li ul td tr tbody table p Home Other VersionsLibraryForumsGallery Ask a question Quick access Forums home Browse forums users FAQ Search related threads Remove From My Forums Asked by Dialog Box Is Open relatedl Click Ok message in Microsoft Word Microsoft Office microsoft word dialogue

dim objword as word.application error

Dim Objword As Word application Error table id toc tbody tr td div id toctitle Contents div ul li a href User Defined Type Not Defined Word Vba a li li a href Microsoft Word Object Library Download a li li a href Vba Tools References Disabled a li ul td tr tbody table p help Post your question and get tips relatedl solutions from a community of IT Pros dim wdapp as word application user defined type not defined Developers It's quick easy Dim objDoc As Word Document isn't working microsoft word object library dll download P jfarley I

disk is full microsoft word error

Disk Is Full Microsoft Word Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Disk Full Error a li li a href Microsoft Word Disk Full Error Mac a li li a href Word Disk Full Error a li ul td tr tbody table p games PC games microsoft word disk full error Windows games Windows phone games Entertainment All Entertainment p h id Microsoft Word Disk Full Error p Movies TV Music Business Education Business Students educators p h id Microsoft Word Disk Full Error Mac p Developers Sale Sale

disk is full error microsoft word

Disk Is Full Error Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Disk Full Error a li li a href Microsoft Word Disk Full Error Mac a li li a href Microsoft Word Error Not Enough Disk Space a li li a href Microsoft Word The Disk Is Full Or Too Many Files Are Open a li ul td tr tbody table p games PC games p h id Microsoft Word Disk Full Error p Windows games Windows phone games Entertainment All Entertainment microsoft word disk full error Movies

docm error

Docm Error table id toc tbody tr td div id toctitle Contents div ul li a href Word Document Xml Error a li li a href Microsoft Word Error a li li a href Word Experienced An Error Trying To Open The File a li li a href Word Experienced An Error Trying To Open The File a li ul td tr tbody table p games PC games microsoft word error messages Windows games Windows phone games Entertainment All Entertainment p h id Word Document Xml Error p Movies TV Music Business Education Business Students educators microsoft word error codes

encoding error in microsoft word

Encoding Error In Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Character Encoding a li li a href Microsoft Word Text Encoding a li li a href Microsoft Word Decoding a li li a href Microsoft Word Encryption a li ul td tr tbody table p games PC games microsoft word file conversion encoding error Windows games Windows phone games Entertainment All Entertainment p h id Microsoft Word Character Encoding p Movies TV Music Business Education Business Students educators microsoft word encoding problems Developers Sale Sale Find a store

error bookmark not defined. microsoft word

Error Bookmark Not Defined Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Define New Number Format a li li a href Microsoft Word Define Sections a li li a href Microsoft Word Define Variable a li ul td tr tbody table p games PC games microsoft word error bookmark not defined Windows games Windows phone games Entertainment All Entertainment microsoft word error bookmark not defined in table of contents Movies TV Music Business Education Business Students educators ms word error bookmark not defined Developers Sale Sale Find a store

error bookmark not defined in microsoft word

Error Bookmark Not Defined In Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Define New Number Format a li li a href Microsoft Word Define Sections a li li a href Microsoft Word Define Variable a li ul td tr tbody table p games PC games microsoft word error bookmark not defined Windows games Windows phone games Entertainment All Entertainment microsoft word error bookmark not defined in table of contents Movies TV Music Business Education Business Students educators ms word error bookmark not defined Developers Sale Sale Find a

error codes for microsoft word

Error Codes For Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Spanish Codes For Microsoft Word a li li a href Codes For Microsoft Word a li li a href Spanish Letter Codes For Microsoft Word a li ul td tr tbody table p games PC games codes microsoft word Windows games Windows phone games Entertainment All Entertainment alt codes microsoft word Movies TV Music Business Education Business Students educators p h id Spanish Codes For Microsoft Word p Developers Sale Sale Find a store Gift cards Products Software services Windows

error doclip empty path microsoft word

Error Doclip Empty Path Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Common Microsoft Word Errors a li li a href Five Common Errors In Microsoft Word a li li a href Most Common Microsoft Word Issues a li ul td tr tbody table p be down Please try the request again Your cache administrator is webmaster Generated Tue Oct GMT by s ac squid p p here for a quick overview of the relatedl site Help Center Detailed answers to any questions p h id Most Common Microsoft Word Issues

error in create word 2003

Error In Create Word table id toc tbody tr td div id toctitle Contents div ul li a href Endless Save Loop In Microsoft Word a li li a href Microsoft Word Error Message When Saving A File Error Has Occurred a li ul td tr tbody table p games PC games p h id Endless Save Loop In Microsoft Word p Windows games Windows phone games Entertainment All Entertainment word could not create the work file check the temp environment variable Movies TV Music Business Education Business Students educators p h id Microsoft Word Error Message When Saving A

error in microsoft word previewer 2010

Error In Microsoft Word Previewer table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Previewer Not Working a li li a href Microsoft Excel Previewer Error Outlook a li li a href Microsoft Excel Previewer Error In Outlook a li li a href Microsoft Office Excel Previewer a li ul td tr tbody table p games PC games p h id Microsoft Word Previewer Not Working p Windows games Windows phone games Entertainment All Entertainment excel previewer not working Movies TV Music Business Education Business Students educators microsoft word previewer error in

error in microsoft word 2010 preview

Error In Microsoft Word Preview table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Free Download For Windows a li li a href Microsoft Word How To Use a li ul td tr tbody table p networking Entertainment Software Operating Systems Books Software Development Education Software Graphics and Design Software Health and Fitness Software Medical Software Lifestyle Software GPS and Navigation News Software Reference Sports Travel Video Web relatedl Apps Weather Browsers Laptops Tablets Phones Hardware Security Software Gadgets microsoft word tutorial Subscribe Resources PCs Phones Printers Ultrabooks Blogs Viruses Cameras Components

error in microsoft word

Error In Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Error Messages a li li a href Microsoft Word Error When Closing a li li a href Microsoft Word Error Mac a li li a href Microsoft Word Runtime Error a li ul td tr tbody table p games PC games microsoft word error Windows games Windows phone games Entertainment All Entertainment p h id Microsoft Word Error Messages p Movies TV Music Business Education Business Students educators microsoft word error Developers Sale Sale Find a store Gift cards

error microsoft word previewer 2010

Error Microsoft Word Previewer table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Office Excel Previewer a li li a href Windows Email Previewer a li li a href This File Can t Be Previewed Pdf a li ul td tr tbody table p games PC games microsoft word previewer error in outlook Windows games Windows phone games Entertainment All Entertainment microsoft excel previewer error outlook Movies TV Music Business Education Business Students educators microsoft excel previewer error in outlook Developers Sale Sale Find a store Gift cards Products Software services Windows Office

error microsoft word has stopped working

Error Microsoft Word Has Stopped Working table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Has Stopped Working Error Message Windows a li li a href Microsoft Word Has Stopped Working a li li a href Microsoft Word Has Stopped Working Windows a li li a href Microsoft Word Has Stopped Working A Problem Caused The Program a li ul td tr tbody table p stopped working message when I start my Office application Applies To Excel Word Outlook PowerPoint Publisher Visio Professional Visio Standard Excel Word Outlook relatedl PowerPoint Publisher Visio

error microsoft word selection locked

Error Microsoft Word Selection Locked table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word This Modification Is Not Allowed a li li a href This Modification Is Not Allowed Because The Selection Is Locked a li ul td tr tbody table p Points Tech Solutions Web Webmaster Reviews Media Infographics Videos Tech Events Tools How do I find my relatedl IP address Browser and plugin tests You are here microsoft word selection is locked how to unlock Home Articles Software Microsoft Word This modification is selection is locked microsoft word hack not

error microsoft word 2010

Error Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Tutorial a li li a href Microsoft Word Starter a li li a href Microsoft Word Product Key a li ul td tr tbody table p games PC games microsoft word error messages Windows games Windows phone games Entertainment All Entertainment p h id Microsoft Word Tutorial p Movies TV Music Business Education Business Students educators microsoft word help Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet microsoft word templates Explorer

error microsoft word previewer

Error Microsoft Word Previewer table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Previewer Error In Outlook a li li a href Error In Microsoft Word Previewer a li li a href Microsoft Word Previewer Not Working In Outlook a li ul td tr tbody table p games PC games microsoft word previewer error Windows games Windows phone games Entertainment All Entertainment error in microsoft office word previewer Movies TV Music Business Education Business Students educators p h id Microsoft Word Previewer Error In Outlook p Developers Sale Sale Find a store

error microsoft word

Error Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Error Microsoft Word Previewer a li li a href Microsoft Word Error a li li a href Microsoft Word Error When Closing a li li a href Microsoft Word Error Mac a li ul td tr tbody table p games PC games p h id Error Microsoft Word Previewer p Windows games Windows phone games Entertainment All Entertainment microsoft word error Movies TV Music Business Education Business Students educators microsoft word error messages Developers Sale Sale Find a store Gift cards Products

error msg microsoft word has stopped working

Error Msg Microsoft Word Has Stopped Working table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Has Stopped Working Error Message Windows a li li a href Microsoft Word Has Stopped Working a li li a href Microsoft Word Has Stopped Working Windows a li li a href Microsoft Word Has Stopped Working A Problem Caused The Program a li ul td tr tbody table p Microsoft Office Has Stopped Working ishadi aplus SubscribeSubscribedUnsubscribe K Loading Loading Working Add to Want to watch this again later Sign in to relatedl add this

error not a valid link microsoft word 2010

Error Not A Valid Link Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Templates a li li a href Microsoft Word Starter a li li a href Microsoft Word How To Use a li ul td tr tbody table p Home Other VersionsLibraryForumsGallery Ask a question Quick access Forums home Browse forums users FAQ Search related threads Remove From My relatedl Forums Answered by Links between Word and microsoft word tutorial Excel do not work if source file is not opened Microsoft microsoft word help Office Word IT Pro

error not a valid link microsoft word

Error Not A Valid Link Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Hyperlink a li li a href Microsoft Word Hyperlink a li li a href Microsoft Word Hyperlink To Page Within Document a li ul td tr tbody table p cells in an Excel document using Edit Paste Special Paste Link Unformatted Text I did a bunch of these and they all worked fine Then they just stopped working relatedl I can do it a new document but for some reason in how to make a link

error opening microsoft word 2003

Error Opening Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Error Opening File a li li a href Steps In Opening Microsoft Word a li li a href Problems Opening Microsoft Word Documents a li li a href Opening Microsoft Word Files Without Word a li ul td tr tbody table p games PC games p h id Microsoft Word Error Opening File p Windows games Windows phone games Entertainment All Entertainment microsoft word there was an error opening the file Movies TV Music Business Education Business Students educators

error opening microsoft word file

Error Opening Microsoft Word File table id toc tbody tr td div id toctitle Contents div ul li a href Opening Microsoft Word Files Without Word a li li a href Microsoft Word File Corrupt Cannot Opened a li li a href Word Experienced An Error Trying To Open The File a li ul td tr tbody table p games PC games microsoft word free download Windows games Windows phone games Entertainment All Entertainment microsoft word there was an error opening the file Movies TV Music Business Education Business Students educators opening microsoft word files on a mac Developers Sale

error opening microsoft word mac

Error Opening Microsoft Word Mac table id toc tbody tr td div id toctitle Contents div ul li a href How To Stop Microsoft Word From Opening On Startup Mac a li li a href Microsoft Word Quit Unexpectedly Mac a li li a href Microsoft Error Reporting For Mac Update a li ul td tr tbody table p games PC games microsoft word for mac not opening Windows games Windows phone games Entertainment All Entertainment microsoft word crashes when opening mac Movies TV Music Business Education Business Students educators how to stop microsoft word from opening automatically mac Developers

error opening microsoft word 2007

Error Opening Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Not Opening a li li a href Steps In Opening Microsoft Word a li li a href Problems Opening Microsoft Word Documents a li ul td tr tbody table p games PC games microsoft word error opening file Windows games Windows phone games Entertainment All Entertainment p h id Microsoft Word Not Opening p Movies TV Music Business Education Business Students educators microsoft word there was an error opening the file Developers Sale Sale Find a store Gift cards

error opening microsoft word document

Error Opening Microsoft Word Document table id toc tbody tr td div id toctitle Contents div ul li a href Opening A Pages Document In Microsoft Word a li li a href How To Open A Microsoft Word Document In Google Docs a li li a href Microsoft Word There Was An Error Opening The File a li li a href Word Experienced An Error Trying To Open The File Outlook a li ul td tr tbody table p games PC games microsoft word opening every document Windows games Windows phone games Entertainment All Entertainment p h id Opening A

error opening microsoft word

Error Opening Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word There Was An Error Opening The File a li li a href Problems Opening Microsoft Word a li li a href Problems Opening Microsoft Word Documents a li li a href Opening Microsoft Word Files On A Mac a li ul td tr tbody table p Learn relatedl more You're viewing YouTube error opening microsoft word in Russian You can change this p h id Microsoft Word There Was An Error Opening The File p preference below steps in

error report microsoft word

Error Report Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Error Reporting Mac a li li a href How To Write A Report On Microsoft Word a li li a href Microsoft Word Report Cover Page Templates a li li a href Microsoft Word Report Format a li ul td tr tbody table p games PC games microsoft word error report exc bad access Windows games Windows phone games Entertainment All Entertainment p h id Microsoft Word Error Reporting Mac p Movies TV Music Business Education Business Students educators

error saving file microsoft word

Error Saving File Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Freezes When Saving a li li a href Saving Microsoft Word Document a li ul td tr tbody table p be down Please try the request again Your cache administrator is webmaster Generated Thu Oct GMT by s ac squid p p Error When Saving MS Word Document Posted by Lucy John Follow me Lucyy John Microsoft Word is the excellent document processing application used for creating documents by most of the computer users These Word relatedl files

error starting word to go

Error Starting Word To Go table id toc tbody tr td div id toctitle Contents div ul li a href Compile Error In Hidden Module Link a li li a href Microsoft Word a li ul td tr tbody table p games PC games p h id Compile Error In Hidden Module Link p Windows games Windows phone games Entertainment All Entertainment microsoft office Movies TV Music Business Education Business Students educators p h id Microsoft Word p Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet microsoft word online Explorer Microsoft

error starting ms help office 2003

Error Starting Ms Help Office table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Not Opening Windows a li li a href Microsoft Word Has Stopped Working a li li a href Microsoft Word Problems a li ul td tr tbody table p List Welcome Guide More BleepingComputer com rarr Software rarr Business Applications Javascript Disabled Detected You currently have javascript disabled Several functions may not work relatedl Please re-enable javascript to access full functionality BLEEPINGCOMPUTER NEEDS YOUR microsoft word has stopped working HELP BleepingComputer is being sued by Enigma Software because

error term symbol microsoft word

Error Term Symbol Microsoft Word table id toc tbody tr td div id toctitle Contents div ul li a href Symbol Codes Microsoft Word a li li a href Heart Symbol Microsoft Word a li li a href Dagger Symbol Microsoft Word a li li a href Tick Symbol Microsoft Word a li ul td tr tbody table p Applies To Word Less Applies To Word More Which version do I have More Some of the content in this topic may not be applicable to some relatedl languages In Microsoft Office Word you can insert mathematical symbols p h id

fix microsoft word printing error all text on left margin

Fix Microsoft Word Printing Error All Text On Left Margin table id toc tbody tr td div id toctitle Contents div ul li a href Margins Incorrect When Printing a li li a href How To Fix Printer Margins a li li a href Word Margins Incorrect When Printing a li ul td tr tbody table p Bio Allen Wyatt With more than non-fiction books and numerous magazine articles to his credit Allen Wyatt is an internationally recognized author He is relatedl president of Sharon Parq Associates a computer and publishing services company margins outside printable area word Learn more

mac microsoft library error

Mac Microsoft Library Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Not Opening On Mac a li li a href Microsoft Error Reporting Mac Office a li ul td tr tbody table p games PC games microsoft word quit unexpectedly mac Windows games Windows phone games Entertainment All Entertainment microsoft error reporting mac disable Movies TV Music Business Education Business Students educators microsoft error reporting for mac update Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet microsoft word has encountered a

mac word error

Mac Word Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Error Reporting For Mac Update a li li a href Microsoft Word Has Encountered A Problem And Needs To Close a li li a href Microsoft Error Reporting Mac Office a li li a href Microsoft Error Reporting For Mac Download a li ul td tr tbody table p games PC games microsoft word quit unexpectedly mac Windows games Windows phone games Entertainment All Entertainment p h id Microsoft Error Reporting For Mac Update p Movies TV Music Business Education Business

microsoft office 2008 mac error

Microsoft Office Mac Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Quit Unexpectedly Mac a li li a href Microsoft Error Reporting Mac Disable a li li a href Microsoft Error Reporting Mac Office a li li a href How To Fix Microsoft Word On Mac a li ul td tr tbody table p games PC games p h id Microsoft Word Quit Unexpectedly Mac p Windows games Windows phone games Entertainment All Entertainment microsoft error reporting for mac update Movies TV Music Business Education Business Students educators p h

microsoft office error messages help

Microsoft Office Error Messages Help table id toc tbody tr td div id toctitle Contents div ul li a href Word Error Message Insufficient Memory a li li a href Microsoft Word Error Message When Saving A File Error Has Occurred a li li a href Compile Error In Hidden Module Link a li ul td tr tbody table p games PC games microsoft word error codes Windows games Windows phone games Entertainment All Entertainment p h id Word Error Message Insufficient Memory p Movies TV Music Business Education Business Students educators microsoft word error Developers Sale Sale Find a

microsoft office mac error

Microsoft Office Mac Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Error Reporting Mac Disable a li li a href Microsoft Word Has Encountered A Problem And Needs To Close a li li a href Microsoft Error Reporting Mac Office a li ul td tr tbody table p games PC games microsoft word quit unexpectedly mac Windows games Windows phone games Entertainment All Entertainment microsoft error reporting for mac update Movies TV Music Business Education Business Students educators p h id Microsoft Error Reporting Mac Disable p Developers Sale Sale Find

microsoft office for mac error messages

Microsoft Office For Mac Error Messages table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Error Reporting Mac Disable a li li a href Microsoft Word Not Opening On Mac a li li a href There Was A Problem And Microsoft Word Was Closed a li ul td tr tbody table p games PC games microsoft word quit unexpectedly mac Windows games Windows phone games Entertainment All Entertainment p h id Microsoft Error Reporting Mac Disable p Movies TV Music Business Education Business Students educators microsoft error reporting for mac update Developers Sale

microsoft office word 12.0 error

Microsoft Office Word Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Has Stopped Working a li li a href Microsoft Word Problems a li ul td tr tbody table p be down Please try the request again Your cache administrator is webmaster Generated Wed Oct GMT by s ac squid p p Help Suggestions Send Feedback Answers Home All Categories Arts Humanities Beauty Style Business Finance Cars Transportation Computers Internet Consumer Electronics Dining Out Education Reference Entertainment Music Environment Family Relationships Food relatedl Drink Games Recreation Health Home p h

microsoft word 2003 safe mode error

Microsoft Word Safe Mode Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Error Messages a li li a href Microsoft Word Error a li li a href Microsoft Word Error Messages a li li a href Word Has Run Into An Error That Is Preventing It From Working Correctly a li ul td tr tbody table p games PC games p h id Microsoft Word Error Messages p Windows games Windows phone games Entertainment All Entertainment microsoft word error codes Movies TV Music Business Education Business Students educators word error

microsoft word 2002 runtime error fix

Microsoft Word Runtime Error Fix table id toc tbody tr td div id toctitle Contents div ul li a href Ms Word Runtime Error a li li a href Microsoft Word Runtime Error Abnormal Program Termination a li li a href Word Compile Error In Hidden Module Link Mac a li li a href Microsoft Word Compile Error In Hidden Module Link a li ul td tr tbody table p called a runtime error That s because the error occurred during the period known as the software s runtime Typical Runtime Errors in MS Word MS Word runtime errors are

microsoft word 2008 mac error

Microsoft Word Mac Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Error Reporting For Mac Update a li li a href Microsoft Word Not Opening On Mac a li li a href How To Fix Microsoft Word On Mac a li ul td tr tbody table p games PC games microsoft word quit unexpectedly mac Windows games Windows phone games Entertainment All Entertainment p h id Microsoft Error Reporting For Mac Update p Movies TV Music Business Education Business Students educators microsoft error reporting mac disable Developers Sale Sale Find a

microsoft word 2007 error log

Microsoft Word Error Log table id toc tbody tr td div id toctitle Contents div ul li a href Office Repair Tool a li li a href Microsoft Word Logs a li li a href Office Install Log Location a li ul td tr tbody table p United States Australia United Kingdom Japan Newsletters Forums Resource Library Tech Pro Free Trial Membership Membership My Profile People relatedl Subscriptions My stuff Preferences Send a message Log office install log location Out TechRepublic Search GO Topics CXO Cloud Big Data Security Innovation Software Data microsoft office diagnostics Centers Networking Startups Tech Work

microsoft word 2000 error

Microsoft Word Error p games PC games Windows games Windows phone games Entertainment All Entertainment Movies TV Music Business Education Business Students educators Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet Explorer Microsoft Edge Skype OneNote OneDrive Microsoft Health MSN Bing Microsoft Groove Microsoft Movies TV Devices Xbox All Microsoft devices Microsoft Surface All Windows PCs tablets PC accessories Xbox games Microsoft Lumia All Windows phones Microsoft HoloLens For business Cloud Platform Microsoft Azure Microsoft Dynamics Windows for business Office for business Skype for business Surface for business Enterprise solutions Small

microsoft word err=1120 there is a printer error

Microsoft Word Err There Is A Printer Error p for Help Receive Real-Time Help Create a Freelance Project Hire for a Full Time Job Ways to Get Help Ask a Question Ask for Help Receive Real-Time Help Create a Freelance Project Hire relatedl for a Full Time Job Ways to Get Help Expand Search Submit Close Search Login Join Today Products BackProducts Gigs Live Careers Vendor Services Groups Website Testing Store Headlines Experts Exchange Questions Microsoft word Err Want to Advertise Here Solved Microsoft word Err Posted on - - MS Office Verified Solution Comments Views Last Modified - -

microsoft word 2008 error

Microsoft Word Error table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Error Reporting For Mac Update a li li a href Microsoft Word Has Encountered A Problem And Needs To Close a li li a href Microsoft Error Reporting Mac Office a li li a href Microsoft Error Reporting For Mac Download a li ul td tr tbody table p games PC games microsoft word quit unexpectedly mac Windows games Windows phone games Entertainment All Entertainment p h id Microsoft Error Reporting For Mac Update p Movies TV Music Business Education Business

microsoft word error 0 command failed

Microsoft Word Error Command Failed p SQL Server Express resources Windows Server resources Programs MSDN subscriptions Overview Benefits Administrators Students Microsoft Imagine Microsoft Student Partners ISV Startups TechRewards Events Community Magazine Forums Blogs Channel Documentation APIs relatedl and reference Dev centers Samples Retired content We re sorry The content you requested has been removed You ll be auto redirected in second Ask a question Quick access Forums home Browse forums users FAQ Search related threads Remove From My Forums Answered by Documents Open throws Command failed error in Word when User Templates are stored on a network share Microsoft Office

microsoft word error 5151

Microsoft Word Error p DriverDoc WinSweeper SupersonicPC FileViewPro About Support Contact Errors Troubleshooting rsaquo Runtime Errors rsaquo relatedl Microsoft Corporation rsaquo Microsoft Word rsaquo Error How To Fix Microsoft Word Error Error Number Error Error Name Microsoft Word Error Error Description Error Microsoft Word has encountered a problem and needs to close We are sorry for the inconvenience Developer Microsoft Corporation Software Microsoft Word Applies to Windows XP Vista Download NowWinThruster - Scan your PC for computer errors Compatible with Windows Vista XP and Symptoms of Error Error appears and crashes the active program window Your PC frequently crashes with

microsoft word error 800a1066

Microsoft Word Error a p p p p p adjust it and savethe relatedl document again as result doc I a href http microsoft public word vba general narkive com tMQenFFa urgent-help-needed-opening-word-document-from-asp http microsoft public word vba general narkive com tMQenFFa urgent-help-needed-opening-word-document-from-asp a wrote the following code toperform this action but if a href http microsoft public scripting vbscript narkive com jzeO TlJ word-automation-with-vbscript-does-not-work http microsoft public scripting vbscript narkive com jzeO TlJ word-automation-with-vbscript-does-not-work a I run the application I get an error Microsoft Word error ' a 'Command failed pro test-word asp line Can somebody tell me what I'm

microsoft word 1712 error

Microsoft Word Error p be down Please try the request again Your cache administrator is webmaster Generated Thu Oct GMT by s wx squid p p a Fortune verification firm Get a Professional Answer Via email text message or notification as you wait on our site Ask follow up relatedl questions if you need to Satisfaction Guarantee Rate the answer you receive Ask cvd Your Own Question cvd Computer Analyst Category Mac Satisfied Customers Experience I have a BA in CIT with over years experience Type Your Mac Question Here cvd is online now meta meta My microsoft word wont

microsoft word form text error

Microsoft Word Form Text Error p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site relatedl About Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Super User Questions Tags Users Badges Unanswered Ask Question Super User is a question and answer site for computer enthusiasts and power users Join them it only takes a minute Sign up Here's how it works Anybody can ask a question Anybody can answer The best

microsoft word as email editor error message

Microsoft Word As Email Editor Error Message p be down Please try the request again Your cache administrator is webmaster Generated Thu Oct GMT by s wx squid p p Ask a question help others and get answers from the community Discussions Start a thread and discuss today's topics with top experts Blogs relatedl Read the latest tech blogs written by experienced community members Outlook Error when using Word as Editor Problem starts when I reply or forward an e-mail from an Outlook E-mail Sender XavierD pts Tags Thanks We'll email youwhen relevant content isadded and updated Following Follow Microsoft

microsoft word error a file error has occurred

Microsoft Word Error A File Error Has Occurred p be down Please try the request again Your cache administrator is webmaster Generated Thu Oct GMT by s wx squid p p Error When Saving MS Word Document Posted by Lucy John Follow me Lucyy John Microsoft Word is the excellent document processing application used for creating documents by most of the computer users These relatedl Word files are easily accessible Windows and Mac platforms But while trying to access edit Word documents users face numerous errors that block access to the Word file One such issue is file error when

microsoft word error report

Microsoft Word Error Report table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Error Reporting For Mac Update a li li a href Microsoft Word Has Encountered A Problem And Needs To Close a li li a href Microsoft Error Reporting Mac Office a li ul td tr tbody table p games PC games microsoft error reporting mac disable Windows games Windows phone games Entertainment All Entertainment microsoft word quit unexpectedly mac Movies TV Music Business Education Business Students educators p h id Microsoft Error Reporting For Mac Update p Developers Sale Sale

microsoft word error 1025

Microsoft Word Error p games PC games Windows games Windows phone games Entertainment All Entertainment Movies TV Music Business Education Business Students educators Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet Explorer Microsoft Edge Skype OneNote OneDrive Microsoft Health MSN Bing Microsoft Groove Microsoft Movies TV Devices Xbox All Microsoft devices Microsoft Surface All Windows PCs tablets PC accessories Xbox games Microsoft Lumia All Windows phones Microsoft HoloLens For business Cloud Platform Microsoft Azure Microsoft Dynamics Windows for business Office for business Skype for business Surface for business Enterprise solutions Small

microsoft word - foreign language in error message

Microsoft Word - Foreign Language In Error Message table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Spanish Language a li li a href Microsoft Word Spanish a li li a href Microsoft Word Spanish Dictionary a li li a href Microsoft Word Tutorial Spanish a li ul td tr tbody table p detection Applies To Word Outlook Word Outlook Language Preferences Word Outlook Word Outlook Office relatedl Less Applies To Word Outlook microsoft word foreign language characters Word Outlook Language Preferences Word p h id Microsoft Word Spanish Language p Outlook

microsoft word error not a valid bookmark self-reference

Microsoft Word Error Not A Valid Bookmark Self-reference p visit from the selection below Home raquo Microsoft Office Word Forum - WordBanter forum raquo Microsoft relatedl Word Newsgroups raquo Microsoft Word Help error bookmark self-reference Author Name Remember Me Password Site Map Home Register Authors List Today's Posts Search Web Partners Search Forums Show Threads Show Posts Advanced Search Go to Page error bookmark self-reference laquo Previous Thread Next Thread raquo Thread Tools Display Modes April th AM posted to microsoft public word docmanagement Jonathan external usenet poster Posts error bookmark self-reference WD I'm no noob but am feeling stupid

microsoft word error reporting mac

Microsoft Word Error Reporting Mac table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Error Reporting For Mac Update a li li a href Microsoft Error Reporting Mac Office a li li a href Microsoft Error Reporting For Mac Download a li ul td tr tbody table p games PC games microsoft error reporting mac disable Windows games Windows phone games Entertainment All Entertainment p h id Microsoft Error Reporting For Mac Update p Movies TV Music Business Education Business Students educators p h id Microsoft Error Reporting Mac Office p Developers Sale

microsoft word 2010 error log

Microsoft Word Error Log table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Office Logs a li li a href Office Error Logs a li li a href Microsoft Word Error Logging a li ul td tr tbody table p games PC games microsoft word logs Windows games Windows phone games Entertainment All Entertainment microsoft word log file Movies TV Music Business Education Business Students educators p h id Microsoft Office Logs p Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet p h id

microsoft word appcrash error

Microsoft Word Appcrash Error table id toc tbody tr td div id toctitle Contents div ul li a href Ccleaner a li ul td tr tbody table p be down Please try the request again Your cache administrator is webmaster Generated Thu Oct GMT by s nt squid p p Google Het beschrijft hoe wij gegevens gebruiken en welke opties je hebt Je moet dit vandaag nog doen relatedl Navigatie overslaan NLUploadenInloggenZoeken Laden Kies je taal Sluiten Meer informatie View this message in English Je gebruikt YouTube in het Nederlands Je kunt deze voorkeur hieronder wijzigen Learn more You're viewing

microsoft word error when closing mac

Microsoft Word Error When Closing Mac table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Quit Unexpectedly Mac a li li a href Microsoft Error Reporting Mac Disable a li li a href Microsoft Error Reporting Mac Office a li li a href Microsoft Error Reporting For Mac Download a li ul td tr tbody table p games PC games microsoft word has encountered a problem and needs to close Windows games Windows phone games Entertainment All Entertainment p h id Microsoft Word Quit Unexpectedly Mac p Movies TV Music Business Education

microsoft word 2003 error message

Microsoft Word Error Message table id toc tbody tr td div id toctitle Contents div ul li a href Microsoft Word Error Codes a li li a href Word Error Message Insufficient Memory a li li a href Microsoft Word Error a li ul td tr tbody table p games PC games microsoft word error messages Windows games Windows phone games Entertainment All Entertainment p h id Microsoft Word Error Codes p Movies TV Music Business Education Business Students educators p h id Word Error Message Insufficient Memory p Developers Sale Sale Find a store Gift cards Products Software services

microsoft word merge error message record 2 empty

Microsoft Word Merge Error Message Record Empty p Direct Thermal Labels Thermal Transfer Labels POSTCARDS Four-of-a-Kind up Jumbo up Utility up Single up Double Postcards up Eight-of-a-Kind UP DOOR HANGERS DH UP-CIR perfed circle DH UP-MP perfed 'x' DH UP-POC punched out relatedl circle DH UP-POP pop-out circle DH UP-CIR perfed circle Hangers with Cards Hangers with Postcards DH UPP-MP perfed 'x' DH UPP-CIR perfed circle W 's 's W 's MISC INT R S MAILING EDDM Fundraising Sets Inserts Invoice Forms Mailers w Reply Card Note Cards Greeting Cards Survey Sets OTHER PRODUCTS Bulletins PrinTable POP Cards PrinTable Tent

microsoft word error cocreate

Microsoft Word Error Cocreate p be down Please try the request again Your cache administrator is webmaster Generated Wed Oct GMT by s ac squid p p View unanswered posts View active topics Topic TitleTopic description It is currently Thu Oct pm Document relatedl Template Error Can't co-create object If you think that something doesn't work in Aware IM post your message here posts Page of posts Search Search Reply Document Template Error Can't co-create object by curtisk Tue Aug am I'm using the evaluation version of Aware IM and I want to upload a Microsoft Word template In the

microsoft word and an unexpected error has occurred and hyperlink

Microsoft Word And An Unexpected Error Has Occurred And Hyperlink p be down Please try the request again Your cache administrator is webmaster Generated Thu Oct GMT by s wx squid p p Home Other VersionsLibraryForumsGallery Ask a question Quick access Forums home Browse forums users FAQ Search related threads Remove From My Forums Answered by PDF link in Word unexpected relatedl error Microsoft Office Word IT Pro Discussions Question Sign in to vote When clicking a pdf-linked document in Word the error message an unexpected error occured will be displayed The link is set absolute and when I copy

microsoft word error unknown switch argument

Microsoft Word Error Unknown Switch Argument p E-Journals E-Books Streaming Media Collections Catalog UNC-CH libraries Guides Citing and Writing Special Collections more Services For all For researchers For clinicians For instructors relatedl About Visitor information Hours Staff directory Friends' Caf eacute Support the HSL Employment Annual reports more Using the Library Reserve a room Today's schedule Register for a class Recommend a purchase Borrow renew return Interlibrary Loan and Document Delivery Computing printing scanning Accessibility services Connecting from on campus off campus and UNC Hospitals Admin Sign In HSL Home raquo Ask a Librarian Your browser has javascript disabled Without