Pages

Search

Microsoft Word - Lost document

Microsoft Word - Lost document


Lost document

Posted: 20 Jan 2015 03:01 PM PST

I downloaded free app for word to my iPad. I started composing a rather in depth historical document which I worked on for 4-5 days. Each time I opened word the document appeared. No problem. I never did name the document but word was saving it constantly. Today I tried to use app but it was frozen. I reset iPad, still no document and word still frozen. I installed upgrade to my ipad 8.1.2 I think. After download complete word is working perfectly but the document is not there. The thought of re-researching all this material is painful. Help!


Macro to copy text, then save file as copied text

Posted: 20 Jan 2015 02:36 PM PST

I have a vast number of job applications where I am copying and pasting from a "print view" from a web browser into a MS Word document, which produces a document with lots of tables and nested tables, Somewhere in there is the name of the applicant... I can record a macro to find their name, since it'll always be in the same table/cell location, but I would like to have it Save As the name of the applicant as well. I can't seem to do that second part by just recording a macro.

Sub testing()
'
' testing Macro
'
'
    Selection.Find.ClearFormatting
    Selection.Find.Replacement.ClearFormatting
    With Selection.Find
        .Text = "Name:"
        .Replacement.Text = ""
        .Forward = True
        .Wrap = wdFindContinue
        .Format = False
        .MatchCase = False
        .MatchWholeWord = False
        .MatchWildcards = False
        .MatchSoundsLike = False
        .MatchAllWordForms = False
    End With
    Selection.Find.Execute
    Selection.MoveRight Unit:=wdCell
    Selection.Copy

so far so good, but then I'm having problems with this part because it wants to save everything as "John Smith.doc" every time.

    ChangeFileOpenDirectory "C:\Users\fogharty\Desktop\"
    ActiveDocument.SaveAs2 FileName:="John Smith.doc", FileFormat:= _
        wdFormatDocument, LockComments:=False, Password:="", AddToRecentFiles:= _
        True, WritePassword:="", ReadOnlyRecommended:=False, EmbedTrueTypeFonts:= _
        False, SaveNativePictureFormat:=False, SaveFormsData:=False, _
        SaveAsAOCELetter:=False, CompatibilityMode:=0
End Sub

Ideally, it would save as the applicant's name plus the current date... "John Smith 1-20-2015.doc, and to a specific folder on the desktop. But perhaps I'm dreaming.

Any help will be greatly appreciated. Thank you.

One more question on indexing all words in a Word document

Posted: 20 Jan 2015 01:31 PM PST

Now and then I need to make indexes in Word documents of the entire text of that particular document i.e. of every word from 1 letter and up.

Someone was kind enough to help me to a macro that helps to list the frequency, but I also need the INDEX.

I checked several macro sources, but didn't find one that simply takes over de impossible handword of marking every word in a tekst by hand.

Hoping!

Extract Comments to a new Document Macro - Including line numbers

Posted: 20 Jan 2015 01:17 PM PST

Hello

I am a newbie to using Macros. I found a template for extracting comments to a new document and managed to successfully create it and personalise the table titles. The table includes the page number the comment relates to. It would be far more useful to me for it to show the line number. Is there a way of doing this? Below is the macro code thingy I have been using. How do I get it to show which line number the comments relate to? Thank you in advance! If I manage to do this it will streamline my interview data analysis no end!

Penny

Sub ExtractCommentsToNewDocument()

    '=========================
    'Macro created 2007 by Lene Fredborg, DocTools - www.thedoctools.com
    'Revised October 2013 by Lene Fredborg: Date column added to extract
    'THIS MACRO IS COPYRIGHT. YOU ARE WELCOME TO USE THE MACRO BUT YOU MUST KEEP THE LINE ABOVE.
    'YOU ARE NOT ALLOWED TO PUBLISH THE MACRO AS YOUR OWN, IN WHOLE OR IN PART.
    '=========================
    'The macro creates a new document
    'and extracts all comments from the active document
    'incl. metadata
    
    'Minor adjustments are made to the styles used
    'You may need to change the style settings and table layout to fit your needs
    '=========================

    Dim oDoc As Document
    Dim oNewDoc As Document
    Dim oTable As Table
    Dim nCount As Long
    Dim n As Long
    Dim Title As String
    
    Title = "Extract All Comments to New Document"
    Set oDoc = ActiveDocument
    nCount = ActiveDocument.Comments.Count
    
    If nCount = 0 Then
        MsgBox "The active document contains no comments.", vbOKOnly, Title
        GoTo ExitHere
    Else
        'Stop if user does not click Yes
        If MsgBox("Do  you want to extract all comments to a new document?", _
                vbYesNo + vbQuestion, Title) <> vbYes Then
            GoTo ExitHere
        End If
    End If
        
    Application.ScreenUpdating = False
    'Create a new document for the comments, base on Normal.dot
    Set oNewDoc = Documents.Add
    'Set to landscape
    oNewDoc.PageSetup.Orientation = wdOrientLandscape
    'Insert a 4-column table for the comments
    With oNewDoc
        .Content = ""
        Set oTable = .Tables.Add _
            (Range:=Selection.Range, _
            NumRows:=nCount + 1, _
            NumColumns:=5)
    End With
    
    'Insert info in header - change date format as you wish
    oNewDoc.Sections(1).Headers(wdHeaderFooterPrimary).Range.Text = _
        "Comments extracted from: " & oDoc.FullName & vbCr & _
        "Created by: " & Application.UserName & vbCr & _
        "Creation date: " & Format(Date, "MMMM d, yyyy")
            
    'Adjust the Normal style and Header style
    With oNewDoc.Styles(wdStyleNormal)
        .Font.Name = "Arial"
        .Font.Size = 10
        .ParagraphFormat.LeftIndent = 0
        .ParagraphFormat.SpaceAfter = 6
    End With
    
    With oNewDoc.Styles(wdStyleHeader)
        .Font.Size = 8
        .ParagraphFormat.SpaceAfter = 0
    End With

    'Format the table appropriately
    With oTable
        .Range.Style = wdStyleNormal
        .AllowAutoFit = False
        .PreferredWidthType = wdPreferredWidthPercent
        .PreferredWidth = 100
        .Columns.PreferredWidthType = wdPreferredWidthPercent
        .Columns(1).PreferredWidth = 5
        .Columns(2).PreferredWidth = 23
        .Columns(3).PreferredWidth = 42
        .Columns(4).PreferredWidth = 18
        .Columns(5).PreferredWidth = 12
        .Rows(1).HeadingFormat = True
    End With

    'Insert table headings
    With oTable.Rows(1)
        .Range.Font.Bold = True
        .Cells(1).Range.Text = "Page"
        .Cells(2).Range.Text = "Code"
        .Cells(3).Range.Text = "Text"
        .Cells(4).Range.Text = "Interview"
        .Cells(5).Range.Text = "Date"
    End With
    
    'Get info from each comment from oDoc and insert in table
    For n = 1 To nCount
        With oTable.Rows(n + 1)
            'Page number
            .Cells(1).Range.Text = _
                oDoc.Comments(n).Scope.Information(wdActiveEndPageNumber)
            'The comment itself
            .Cells(2).Range.Text = oDoc.Comments(n).Range.Text
            'The text marked by the comment
            .Cells(3).Range.Text = oDoc.Comments(n).Scope
            'The comment author
            .Cells(4).Range.Text = oDoc.Comments(n).Author
            'The comment date in format dd-MMM-yyyy
            .Cells(5).Range.Text = Format(oDoc.Comments(n).Date, "dd-MMM-yyyy")
        End With
    Next n
    
    Application.ScreenUpdating = True
    Application.ScreenRefresh
        
    oNewDoc.Activate
    MsgBox nCount & " comments found. Finished creating comments document.", vbOKOnly, Title

ExitHere:
    Set oDoc = Nothing
    Set oNewDoc = Nothing
    Set oTable = Nothing
End Sub

Equation symbols in Word

Posted: 20 Jan 2015 12:27 PM PST

Hello. I've got a question about some symbols.

I want to put the "normal subgroup" Symbol, I mean, this symbol.

but I don't wanna open that menu and search for the symbol.

For example, many symbols can be written with a command, for example "less or equal than" may be inserted writting "\leq" in the equation. Or the ones at the left side of the "normal subgroup symbol", for "is subset or has this as a subset", can be inserted writting "\subseteq" or "\superseteq", "\cdot" can be used for "dot product"

This works a lot similar to LaTeX. the command for "less or equal than", and of "is subset of" is the same, the one for "has this as a subset" is "\supseteq", "\cdot" also works.
And I can write the normal subgroup symbol with the "\triangleleft" command in LaTeX. So... is there any way I can personalize this to have some command, or some quick way to write this symbol? The command \triangleleft doesn't work in word (Even when a lot of LaTeX commands work in word)...

It would be very good if I could assign it a command like the ones in LaTeX.

microsoft word wont open documents

Posted: 20 Jan 2015 12:26 PM PST

I have the brand new word, 2013, I try to open my lecture notes from my blackboard website and presentations on powerpoint and neither of the programs will allow them to be opened. Ive tried everything just says can not open no other options...anyone have any ideas?

Avery Label Template not accurate

Posted: 20 Jan 2015 10:50 AM PST

Using Office 2013 on a Windows 7 machine

I am trying to print a full page of return address labels using an Avery template (either 8167 or 5267) from the mail merge -> labels list of choices.   The label text keeps creeping down bit by bit so that by the time I am at the bottom of the printed page, the labels are not usable.  The return address has crept so low that only the first two lines of the address are actually printed on the label.   Haven't had this problem before so I don't even know where to look for a fix.

Word macro to insert review changes into a separate doc

Posted: 20 Jan 2015 09:34 AM PST

Hi,

I have the following code to take my changes into a new document but the author, type etc. are not being inputted into their own columns - the table is displaying with multiple rows and 1 column. Is there a way to assign each arev to a column?

Dim arev As Revision
Dim docsource As Document, doctarget As Document
Set docsource = ActiveDocument
Set doctarget = Documents.Add
With docsource
    For Each arev In .Revisions
        doctarget.Range.InsertAfter arev.Author & vbTab & arev.Type & vbTab & arev.Range & vbCr
    Next arev
End With
doctarget.Range.ConvertToTable
End Sub

Thanks,

Adam

Possible to hide text until it's printed?

Posted: 20 Jan 2015 07:40 AM PST

I was curious - and I can't seem to track down any sort of answer. Is it possible to format text in a way that it remains hidden in the digital view of the document, but shows up in standard black when the document is printed?

Cropping width and height not setting independently

Posted: 20 Jan 2015 07:13 AM PST

I'm using Format Picture>Crop to crop a number of images to the same exact size, entering the dimensions into the Crop position Width: and Height: fields. Although it appears that these dimensions can be set independently of each other (which is exactly what I would expect), changing one dimension very slightly changes the other. For example, I try to crop an image to 4cm high and 5.5cm wide; Word resets the dimensions to 3.99cm high and 5.49cm wide. It's not a big enough adjustment to be a problem, but I can't understand why Word is doing this in the first place. Has anyone else had this problem?

Thanks!

office 365

Posted: 20 Jan 2015 01:19 AM PST

Have had 365 since April 2014 on both my desk top and laptop, all worked fine until December 2014 now office 365 doesn't work on my laptop.  I have uninstalled and re-installed, used the repair online and had remote assistance try and help. Now it still doesn't work on my laptop and I need urgent help as I need it for my studies.

Printing Problems on Avery Label

Posted: 19 Jan 2015 11:48 PM PST

I downloaded a template for Avery 5163 labels.     I completed the label, looked at the print preview and clicked print.   The labels ran through the printer, but did not print!    I can open other documents and they print with no problem.  I ran a diagnostics test in Microsoft Office 2010  and it shows no problems.  I also ran a troubleshooter for my HP Photosmart 6515, it also shows no problems!   Has anyone else had this issue?  If so, how did you correct it?  

This is frustrating!!!

microsoft word on ipad

Posted: 19 Jan 2015 08:37 PM PST

Hi

i have been trying to save documents on microsoft word into my onedrive email account but it seems to fail cos the 'connecting' box is flashing endlessly.. does anyone know of a solution?

thanks

Double sided numerical (001-300) tickets, Please Help!

Posted: 19 Jan 2015 03:51 PM PST

I use Microsoft Office 2010.

I need to make 300 double sided tickets that will be used for a charity sub sale. I usually use templates when I need to do things like this but I cant seem to find a template that suits my exact needs.

I need to make 6 double sided tickets per page. They need to have a numerical count from 001-300. I don't have a printer that prints double sided so I will need it that I can print out the 300 tickets and then place them all in the printer again upside down and print the backside evenly for me to cut them out. I'd prefer the tickets not have an border/outline but if its necessary I will make the exception.

If someone could point me to a tutorial or explain how I could do this, it would be greatly appreciated!

Microsoft Office Programs Crash When I Try to Insert a Picture

Posted: 19 Jan 2015 03:11 PM PST

Microsoft Office programs, Word, OneNote, and Excel, crash when I try to insert a picture.  This occurs when I try to insert a picture that I had saved to the Desktop.  I have repaired Office several times but this keeps happening.

I do have the add-in "Office Tabs" installed.

Any tips?

Macro for Document and PDF-Both With New Names and Locations

Posted: 19 Jan 2015 03:08 PM PST

I want to create a macro that allows me to "save as" an existing documents with a new title, and creates a PDF of it. I want to be able to create both simultaneously, name them the same thing, and I want to choose where they get saved.

So far, I've scoured the web and found this; it creates a new document and a PDF, but saves them both in the same place the original document is saved in.

Dim strName As String

ActiveDocument.Save

strName = Left(ActiveDocument.FullName, Len(ActiveDocument.FullName) - 4)

strName = strName & "pdf"

ActiveDocument.ExportAsFixedFormat OutputFileName:=strName, _

                              ExportFormat:=wdExportFormatPDF, OpenAfterExport:=False, OptimizeFor:= _

                              wdExportOptimizeForPrint, Range:=wdExportAllDocument, From:=1, to:=99, _

                              Item:=wdExportDocumentContent, IncludeDocProps:=True, KeepIRM:=True, _

                              CreateBookmarks:=wdExportCreateNoBookmarks, DocStructureTags:=True, _

                              BitmapMissingFonts:=True, UseISO19005_1:=True


Also, I've found this; It does half of what I want. It allows me to name and choose where the PDF goes, but doesn't include the document. 

Dim StrPath As String, StrName As String, Result

With ActiveDocument

 On Error GoTo Errhandler

 StrPath = GetFolder & "\"

 StrName = Split(.Name, ".")(0)

 While Dir(StrPath & StrName & ".pdf") <> ""

   Result = InputBox("WARNING - A file already exists with the name:" & vbCr & _

     Split(.Name, ".")(0) & vbCr & _

     "You may edit the filename or continue without editing." _

     & vbCr & vbTab & vbTab & vbTab & "Proceed?", "File Exists", StrName)

   If Result = vbCancel Then Exit Sub

   If StrName = Result Then GoTo Overwrite

   StrName = Result

 Wend

Overwrite:

 .ExportAsFixedFormat OutputFileName:=StrPath & StrName & ".pdf", _

 ExportFormat:=wdExportFormatPDF, OpenAfterExport:=False, _

 OptimizeFor:=wdExportOptimizeForPrint, Range:=wdExportAllDocument, _

 Item:=wdExportDocumentContent, IncludeDocProps:=True, KeepIRM:=True, _

 CreateBookmarks:=wdExportCreateNoBookmarks, DocStructureTags:=True, _

 BitmapMissingFonts:=True, UseISO19005_1:=False

End With

Errhandler:

End Sub

Function GetFolder() As String

Dim oFolder As Object

Can anyone help come up with a variation on the two or just help fill in the gaps? I would really appreciate it. Thanks.

Can I text wrap a task name in a network diagram? Microsoft Project

Can I text wrap a task name in a network diagram? Microsoft Project


Can I text wrap a task name in a network diagram?

Posted: 24 Jan 2006 07:20 AM PST

Hi Mike,

You're welcome and thanks for the feedback.

I hate to say this but yes, I would come up with shorter names. Just
playing around gave me task names of about 130 characters before it cut
things off.

Julie
"Pikey_M" <microsoft.com> wrote in message
news:com... 


changing resource loading contour

Posted: 24 Jan 2006 06:41 AM PST


colin919 wrote: 

Just as an aside, "back" loading is when the work effort is mostly
toward the end of a task's duration. "Front" loading is when the work
is mostly at the beginning. Bell curve loading starts low, goes up in
the middle, and tapers off toward the end.
Hope this helps in your world.
 

Creating a filter that prompts me for a value

Posted: 24 Jan 2006 05:46 AM PST

Hi Greg,

You're welcome and thanks for the feedback.

If you wish to test for multiple numbers 23 OR 53 you'll need to modify the
filter with an OR condition.

Julie
"Greggy" <com> wrote in message
news:googlegroups.com... 


Linking tasks to milestones

Posted: 24 Jan 2006 03:02 AM PST

Jan,

You are a star. I can now carry on with my project, at least for today.

Thanks again

Regards

Figen

"Jan De Messemaeker" wrote:
 

Changing default working time on Project XP and 2003

Posted: 23 Jan 2006 12:19 PM PST

Hi Antonio,

Welcome to this Microsoft Project newsgroup :-)

You might like to see FAQ Item: 5. Default Working Hours

FAQs, companion products and other useful Project information can be seen at
this web address: http://www.mvps.org/project/

Hope this helps - please let us know how you get on :-)

Mike Glen
Project MVP

AntonioR20 wrote: 



Handbook/Manual Recommendation Needed

Posted: 23 Jan 2006 12:01 PM PST

Thanks, I ordered on Amazon.com

"davegb" wrote:
 

Adding dates

Posted: 23 Jan 2006 11:09 AM PST

Hi,

Have read your question and the replies. There is one other scenario that
may be what you need. It is a situation I come across regularly. The
situation is that a notification is required x days before a particular task
starts. The task starting though is not driven by the notification but
rather by other factors. ASn example might be in construction that before
the floor is poured the local authority is notified 1 week before the pour.
The pour date is predicated on many other tasks happening and where those
tasks are delayed so the floor pour is delayed. Using the normal FS link
with a 1 week delay makes the start of the floor pour starting seven days
after notification rather than notifying seven days before the pour. A
subtle difference but important.

In this situation I 'drive' the notification task back from the floor pour
in this case by the 1 week, using the notification task as a predecessor of
the floor pour BUT using a SF link and a -1week delay.

Using this approach if there is a change at all to the tasks that affect the
floor pour, then the notification date is changed. If the other tasks are
delayed then the notification can be delayed, if the floor pour can start
early then the notification period must show an earlier date.

In this case the notification does not drive the other task but is important
nonetheless.

Hope this helps .

"JRT" wrote:
 

Resequeuce tasks changes dates ????

Posted: 23 Jan 2006 08:21 AM PST

You're welcome, Dave :-)

Mike Glen
MS Project MVP


dave wrote: 



Having my cake and eating it, too

Posted: 23 Jan 2006 07:07 AM PST

In article <com>,
"Andrew K" <microsoft.com> wrote:
 

Andrew,
You're welcome. Dale and I had the same answer, he just detailed the
filter for you.

John 

Sorting my Project by ID

Posted: 23 Jan 2006 02:56 AM PST

In article <com>,
"Paul" <microsoft.com> wrote:
 

Paul,
You're welcome. It should be real easy to look at the sort criteria but
I guess the problem solved itself - scary.

John

How do you save an MSProject Gannt as a .gif file?

Posted: 22 Jan 2006 09:36 PM PST

Hi geordabroad ,

Welcome to this Microsoft Project newsgroup :-)

Please see FAQ Item: 16. Project Viewer.

FAQs, companion products and other useful Project information can be seen at
this web address:http://project.mvps.org/faqs.htm

Hope this helps - please let us know how you get on :-)

Mike Glen
Project MVP

geordabroad wrote: 



Add font color button to the microsoft project toolbar

Posted: 21 Jan 2006 09:01 PM PST


Cherie wrote: 

You could record a macro while you go to the font color selection box.
Then create a custom button (right click on any toolbar, Select
Customize, Select Commands, Macros, then drag the smiley face button
onto whichever toobar you like). Right click on the button, click
Change Button Image and select a button you like. The right click on
the button again, and select Assign to macro, select the macro you
recorded.
Hope this helps in your world.

How do I set up a simple calendar in project 2003

Posted: 20 Jan 2006 01:59 PM PST

Hi Sandy,

I would suggest using Microsoft Outlook's task list or the Outlook Calendar,
particularly as you want reminders. With tasks, you can set due dates,
start dates as well as add some notes that may be useful. You could also
create a new calendar in Outlook and use that visual look as well.

I hope this helps. Let us know how you get along.

Julie
"sknapp" <microsoft.com> wrote in message
news:com... 


Deleting tasks with actuals entered

Posted: 20 Jan 2006 01:02 PM PST

If all you they need to do is review the schedule, save the project with a
password. They will only have read access.
File/ save As/ Tool/ General Options...

"Shivesh" wrote:
 

Managing Multiple Projects

Posted: 20 Jan 2006 12:03 PM PST

You're welcome, Figan and thanks for your feedback :-)

Mike Glen
MS Project MVP


Figen wrote: 



Custom Calendar

Posted: 20 Jan 2006 10:22 AM PST

Look at Tools/Options/Calendar and see if that helps. You can set the start
of a year there then go to tools chage working time and look at the Standard
calendar there. It should say (Project Calendar) next to it. Good Luck

"JMZ" wrote:
 

Project should allow for "computer times" (ex. microseconds)

Posted: 20 Jan 2006 08:35 AM PST

It seems like it would be, and mathematically it probably would be trivial,
but consider how data is stored, what the data represents, and the
implications of such a change would be for scheduling projects such as MSP
is presently intended for. Project is storing its time values with an
integer counter register tracking 6 second "ticks" of a master clock. The
register stores sufficient ticks to cover the date range of 1/1/1984 thru
12/31/2049. If each "tick" were to represent a microsecond instead of a
deciminute, the register would max out and overlow with a date range one
six-millionth as long as present. In other words, the longest project it
could accomodate would last a little over 1 hour from start to finish.

Your basic error is in thinking that Project is some sort of time management
or calendaring tool. It is not. It is a tool designed to model the various
tasks required to complete the deliverable and schedule the work defined by
the model that is to be done by resources in projects that have observable
start and end points and result in a unique outcome.
--
Steve House [MVP]
MS Project Trainer & Consultant
Visit http://www.mvps.org/project/faqs.htm for the FAQs



"Bill Waters" <microsoft.com> wrote in message
news:com... 

Tools/Tracking/Update Project

Posted: 20 Jan 2006 07:11 AM PST

I have turned off the option to have task honor their constrants. Should this
work? I did look and these task I refer to have a start no earlier constrant.

"John M." wrote:
 

Microsoft Project and ISA Server

Posted: 20 Jan 2006 05:28 AM PST

Hi Luis,

Try posting on the server newsgroup. Please see FAQ Item: 24. Project
Newsgroups. FAQs, companion products and other useful Project information
can be seen at this web address: http://project.mvps.org/faqs.htm

Mike Glen
Project MVP


Luis Buratto wrote: 



Macro and Micro Planning

Posted: 20 Jan 2006 04:51 AM PST

Thanks for your help, much appreciated.
--
Robin


"davegb" wrote:
 

Schedule dates do not reflect duration

Posted: 20 Jan 2006 03:33 AM PST

In article <com>,
"Scottie" <microsoft.com> wrote:
 

Scottie,
In addition to what Catfish said, you might also want to display the
time (Tools/Options/View tab Date Format) in the Start and Finish field
to insure the task Duration is truly 5 full days.

John
Project MVP

Set the start and finish to be in the format of hours:minutes

Posted: 19 Jan 2006 05:25 PM PST

Hi ATOMMC ,

Welcome to this Microsoft Project newsgroup :)

Tools/Options.../View tab. Change the Date format to your requirement by
selecting from the pick list eg: 12:33. That should fix it for all of your
projects.

FAQs, companion products and other useful Project information can be seen at
this web address: http://project.mvps.org/faqs.htm

Hope this helps - please let us know how you get on :)

Mike Glen
MS Project MVP

ATOMMC wrote: 



Microsoft Word - Macro That Saves A Word Document as a Renamed Word Document and As A PDF.

Microsoft Word - Macro That Saves A Word Document as a Renamed Word Document and As A PDF.


Macro That Saves A Word Document as a Renamed Word Document and As A PDF.

Posted: 19 Jan 2015 02:47 PM PST

I want to create a macro that allows me to "save as" an existing documents with a new title, and creates a PDF of it. I want to be able to create both simultaneously, name them the same thing, and I want to choose where they get saved.

So far, I've scoured the web and found this; it creates a new document and a PDF, but saves them both in the same place the original document is saved in.

Dim strName As String

ActiveDocument.Save

strName = Left(ActiveDocument.FullName, Len(ActiveDocument.FullName) - 4)

strName = strName & "pdf"

ActiveDocument.ExportAsFixedFormat OutputFileName:=strName, _

                              ExportFormat:=wdExportFormatPDF, OpenAfterExport:=False, OptimizeFor:= _

                              wdExportOptimizeForPrint, Range:=wdExportAllDocument, From:=1, to:=99, _

                              Item:=wdExportDocumentContent, IncludeDocProps:=True, KeepIRM:=True, _

                              CreateBookmarks:=wdExportCreateNoBookmarks, DocStructureTags:=True, _

                              BitmapMissingFonts:=True, UseISO19005_1:=True


Also, I've found this; It does half of what I want. It allows me to name and choose where the PDF goes, but doesn't include the document. 

Dim StrPath As String, StrName As String, Result

With ActiveDocument

 On Error GoTo Errhandler

 StrPath = GetFolder & "\"

 StrName = Split(.Name, ".")(0)

 While Dir(StrPath & StrName & ".pdf") <> ""

   Result = InputBox("WARNING - A file already exists with the name:" & vbCr & _

     Split(.Name, ".")(0) & vbCr & _

     "You may edit the filename or continue without editing." _

     & vbCr & vbTab & vbTab & vbTab & "Proceed?", "File Exists", StrName)

   If Result = vbCancel Then Exit Sub

   If StrName = Result Then GoTo Overwrite

   StrName = Result

 Wend

Overwrite:

 .ExportAsFixedFormat OutputFileName:=StrPath & StrName & ".pdf", _

 ExportFormat:=wdExportFormatPDF, OpenAfterExport:=False, _

 OptimizeFor:=wdExportOptimizeForPrint, Range:=wdExportAllDocument, _

 Item:=wdExportDocumentContent, IncludeDocProps:=True, KeepIRM:=True, _

 CreateBookmarks:=wdExportCreateNoBookmarks, DocStructureTags:=True, _

 BitmapMissingFonts:=True, UseISO19005_1:=False

End With

Errhandler:

End Sub

Function GetFolder() As String

Dim oFolder As Object

Can anyone help come up with a variation on the two or just help fill in the gaps? I would really appreciate it. Thanks.

Problem with copy & paste in office

Posted: 19 Jan 2015 01:59 PM PST

Hi all : i got the problem too few days ago, it was the copy-paste option in pushbullet. u must disable it !!!

Formatting pictures with textbox over picture

Posted: 19 Jan 2015 01:33 PM PST

I have a document with 12 pictures.  Each picture has a textbox on it with Word Art.  When I look at reveal codes there is a page break between each picture as I wanted.  When I view print view,  web (filtered), or pdf the formatting is all messed up.  In one case two pictures over lap even though there is a page break between them.  Also having trouble with some text boxes not staying on the picture and/or going to a different page.

The document looks perfect when I am looking at it, however, I can recreate the overlapping pictures by changing one of those pictures to "text wrap behind text" when I do that the other picture jumps up a page. 

I have been working on this unsuccessfully for 5 days and am about to give up.

Open to all ideas.

Thank you!

Mail merge issue -- after merging, the font size changed in the merge fields from 12 pt to 14 pt

Posted: 19 Jan 2015 01:25 PM PST

I use mail merge to create Separation Agreements/Releases in my job.  The main document is a Word document and the data source is an Excel file.  After merging the documents, the final (merged) document has changed the font size in certain fields from 12 pt. to 14 pt.  for some reason.  I can't figure out why or how this is happening.  The main Word document doesn't seem to have any formatting changes in the font size and the Excel data source uses an entirely different font and size anyway.  I have to go through the entire document and highlight the fields that are larger and change them to 12 pt.  Any solution to this problem?  Thanks.

Major Bug In Word Update 1.5

Posted: 19 Jan 2015 12:18 PM PST

Hi guys

i am learning that Microsoft word for iOS is experiencing a major error. Everytime I try to open the app, it closes on me. In addition, I cannot open any documents and edit. What should I do? I can't delete the apps because it has all of my notes on it for exams and deleting them would be bad

Where have my documents gone?

Posted: 19 Jan 2015 12:13 PM PST

I have come to use Microsoft word appand it no longer opens and has deleted all my documents. Could anyone tell me how to resolve this and why this has happened?

thanks 

Drop down List Content Control not editable

Posted: 19 Jan 2015 11:32 AM PST

Hello. I have created a word template with a drop down list content control. It should be possible that anyone can edit a content when using the template. Therefore I have not selected the locking checkboxes in the content control properties (Content control cannot be deleted and contents cannot be edited not selected). Strangely Word is working like I have selected the checkbox 'contents cannot be edited'. Any idea what the problem is? When I try to edit a content the message 'The modification is not allowed because the selection is locked'. First I tried to create the drop down list in Word 2007, then in Word 2013. In both versions the same problem exists. No chance to edit the content. Help will be highly appreciated. Tks and rgds Babazrh

URGENT HELP NEEDED.....

Posted: 19 Jan 2015 10:41 AM PST

Dear Members/Experts,

 I am recently facing a problem while opening Microsoft office documents like word, excel etc.

whenever I tried to open a file it shows a error. pls. help. I clicked on repair now tab but nothing happened.

Grouping pictures and shapes

Posted: 19 Jan 2015 10:22 AM PST

Word 2007. After I insert a picture, I sometimes insert shape and place it on top of the picture. However, I cannot group them. If I change the picture wrap from in line to floating, then the shape goes behind the picture and cannot be brought forward. Is there a way to group them?

Office 2013 - "This modification is not allowed because selection is locked"

Posted: 19 Jan 2015 10:19 AM PST

I am using Office 2013 (Word).  The document I am working on is an old document that I have been using for well over a year.  It is a running "to-do" list with check boxes.  Before my current issue, I would check off the completed tasks for the week and then at the beginning of the next week, I would copy and paste the previous week's tasks, enter a new date at the top of the list, and simply delete the checked (completed) tasks.  All of a sudden, when I go to delete a task, I receive the message "This modification is not allowed because selection is locked".

Most of the other answers to this problem (apparently a common problem) seem to revolve around the document being restricted (not in this case) or an issue with the Word version not being activated (not in this case).  I am having no problems with any other Word docs, only this one.

EDIT:  I just figured out that if I ONLY use the "backspace" key, I can delete the line (task) in question, but if I highlight the entire line and try to delete it I receive the same message.

Any help is appreciated!

Billiken

WORD toolbar defaut tab in Office 365 Home

Posted: 19 Jan 2015 10:15 AM PST

When I open WORD the tool bar tab at the top of the page defaults to the "File" tab.  Until now it has always defaulted to the "Home" tab that shows the toolbar commands used in Word documents.  If I click on "Home" to perform a command, it performs the command and then the tab goes back to "File" instead of staying on the "Home" tab.  How can I make the "Home" tab the default when opening WORD?  And also, how do I get it too remain on the tab I select until I manually change to a different tab?

Office 2010 template download error

Posted: 19 Jan 2015 09:22 AM PST

When I try to download template in word it gives me error

"Template Download Error
> The template cannot be downloaded. To fix this problem, do the following:
> - Make sure your computer is connected to the Internet .
> - Make sure your browser is not in offline mode.
> -Try to download the template again later."

I need to download a calendar, yesterday it worked and today it doesn't. I am running on windows 8.1. 

recreate a document

Posted: 19 Jan 2015 09:10 AM PST

can anyone help me I am not that computer savvy but can learn I hive loads of sheets of documents all different and they have actions written on them but they have been filled in by someone I have to keep current up to date records so need to create copies of these documents but without the ticks and comments that have been added just need the blank forms how on earth do I do this in layman's terms please have been told to use excel but don't know how

MS Word 2010 Email Merge doesn't work with the HTML Option Using Windows 8.1

Posted: 19 Jan 2015 08:21 AM PST

I am running Windows 8.1

I am using Microsoft Office Professional Plus 2010.

Outlook is my default email program.

When I complete an e-mail merge, I can send as an attachment, no issues.

I can send as plain text, though this opens a dialog box asking me to allow internet access for a specified time period, and I have to click OK on each e-mail.  At least it works.

When I choose to send as HTML, the merge completes, but no e-mails are sent.  I see the dozens of merges being completed, but there are no e-mails in my outbox or my sent e-mail folders in Outlook.

I have run the repair function for Microsoft Office.  I have downloaded all updates.  I have done a clean boot of Windows.  I even tried to use the fix (though it's designed for Windows 7), #980681.  Still nothing.

Can anyone suggest anything else?

Create a link between word documents for standardised templates

Posted: 19 Jan 2015 04:03 AM PST

Hello

I am trying to create a standard document that will be used for different purposes. I want fields such as company names and other details to be edited and maintained throughout the document. I tried to create a table of variables within excel and then import them into the different areas within my document but i always end up with boxes around the inputed data or it ruins my formatting. Is there anything i can change?

Different line spacing for English character and Chinese character

Posted: 19 Jan 2015 12:21 AM PST

Line spacing is single. I choose the minus sign, then "mark selected texts as" Chinese (PRC) or English (United States). The line spacing would change as shown in pic. 2 and pic. 3. Why?

 

Don't Show Message - Print out of Margin

Posted: 18 Jan 2015 08:49 PM PST

Hi All,

I am using Printer - Epson L210.

In Some Word Documents I require Matter out of Printable Area.

---

But, below Message show again and again

Can make it ' Don't show again'

-----

Any trick

Thanks

Ravi Vare

How to create a smaller header on the continuation page of Microsoft Word 2013?

Posted: 18 Jan 2015 08:19 PM PST

I created a letterhead using word 2013 that contains logo and contact details on the header of the first page, and a preset different header for all subsequent pages.  This means that when the content on the main letterhead goes into second and subsequent pages, a different header is created automatically, with a smaller logo on the top right corner of the page.

My challenge now is that I would like to set the header margin for the subsequent pages to be smaller but can't seem to do this without affecting the whole document.  Whenever I change the header margin, it affects the whole document.  Please help.

Regards,

Phil

Where is Word, Excel and PowerPoint found once downloaded Win 8.1?

Posted: 18 Jan 2015 08:17 PM PST

I am new to using Win 8.1 having come from an XP op system. What and where do I go to actually use my MS Office which has successfully been installed? I can't create a word document because I don't know where the heck it is!

FILE SEARCH WINDOWS 8 OFFICE 2013 WORD

Posted: 18 Jan 2015 06:19 PM PST

Hi,

Just recently the search function stopped working when I try to search for files in my folders.  It used to but now it doesn't.  Was there an update that changed that and if so, which one so I can uninstall it?  If not, how do I fix it?  I tried the indexing/rebuilding route.  It worked once and I was able to do a search but went right back to returning no results in a search and I couldn't get it to work again.  It is very frustrating as I work with a lot of word documents and folders and need to be able to search them.  Also, when I click on a help link, I get a message that the content is no longer available.  What's that about?  What's the point of having the link if it doesn't work?  I want to avoid doing a system restore if at all possible because I don't really know what restore point to go back to.  Please help.

Thanks.

Trouble with Paste

Posted: 18 Jan 2015 06:16 PM PST

Using Office 2010 on a Windows 8.1 system:

I frequently want to copy a URL from an open Chrome website and then paste it into either a new Outlook email or into a Word document.  The paste function doesn't work.  I have to repeat the copy and then repeat the paste several times before it finally works.  It just won't work the first time.

Any suggestions??

SQL Database

Posted: 18 Jan 2015 05:32 PM PST

What is an SQL database and what is it doing for me when I'm creating an App?

removing "scroll" symbol from copy and paste into Word

Posted: 18 Jan 2015 04:29 PM PST

Hello,

this is my problem: when copying  an email from Outlook/Hotmail onto Word, Word then displays all these little "scroll" symbols. They are little yellow squares, with a slightly unwound scroll, top right to bottom left. (SEE FURTHER DOWN)

I want to keep source formatting, but do not want to manually remove these symbols each time I copy and paste an email, before I save the docx. The other issue is, if I do not remove these "symbols" and save the docx, upon opening the docx again, the symbols are not there, but the "grey background rectangle" that appeared from the copy and paste of the address details remains, as well as the blank spaces there were occupied by the scroll symbols. Now I could choose just paste text option, but then that removes all source formatting - not what I want.

I encountered this years ago when in XP, but I cannot remember how I undid it (whether in Word options, or something in the control panel subheadings), or what I may have done recently and it has appeared again.

I tried the local Microsoft store today, but they (their store employees) had not seen this before, nor knew how to resolve this.

Anyone else had this issue and managed to resolve it?

Word 2013 cursor not lining up after viewing in Web mode

Posted: 18 Jan 2015 04:24 PM PST

Weird problem: when viewing a document in Word 2013 in web mode, I am getting erratic behavior (for example, text disappearing after clicking a new paragraph).   When I click back to print mode, the cursor is wacky - when I click on a place in the document, the cursor looks like its 1 or 2 lines above or below it.  So, I can't see where I'm typing!  Incidentally, this is a document with a very long, multi page table (a list of definitions).  I am running Windows 8 x64 on a Surface Pro 2.

Linux sys as a ADSL router? - Forums Linux

Linux sys as a ADSL router? - Forums Linux


Linux sys as a ADSL router?

Posted: 06 May 2009 01:41 PM PDT

>"nicc777" <com> wrote 

How else can you plug your ADSL line into your PC?

In the old days of dial-up, you needed a modem, right? Otherwise you
couldn't connect your PC to your phone line. Well, this is the broadband
equivalent. Either you need an ADSL modem or a cablemodem, but you
definitely need a modem.

You don't need an external one, if that's what you mean. I presume you can
get internal ADSL modems on PCI cards, though I've never looked as I'm on
cable.

As John says, it's easy with Debian. I've used a Debian PC as a router for
ten years.

CC

Can't get dvds or cds to play on linux

Posted: 30 Apr 2009 05:06 AM PDT


"Michael Black" <ca> wrote in message
news:example.net... 

Hi, Checked my original post and I've forgot to mention that its on a laptop
so there's no audio cable from the DVD/cd to the soundcard. I didn't post
any info as it doesn't give you any, just brings up a unable to play message
with 'no reason' underneath.' I've checked an a Mandriva newsgroup and its
a common prob with some laptops, there's a way around it by using a player,
for example VLC, to open the DVD and play the individual vob files.

Invisible Mouse Pointer after installing Debian 5.01 XFCE

Posted: 29 Apr 2009 09:59 PM PDT

JamesG wrote: 

I had that problem once. I finally fixed it juggling some /etc file. It was
months later that I looked and found I had the keyboard and mouse in each
other's socket.

--
Good leadership is getting ahead of a popular movement and giving it focus.
Pretend leaders try to get ahead of a popular movement and direct it towards
their own cause.
-- The Iron Webmaster, 4135
http://www.haaretz.com What is Israel really like? http://www.jpost.com a7
Sat May 2 05:03:22 EDT 2009

Debian testing download Q

Posted: 29 Apr 2009 03:00 AM PDT

Aragorn wrote: 

That's why they are called 'crunchies'

Or 'Grunchies' ;-)

 
Ja mijnheer;-)

Apparently it's why the caricature Irishman always says 'an all, and
all' the end of every sentence..its a literal translation of the Gaelic.. 

My dual boot iMac won't boot Linux from the hard drive.

Posted: 26 Apr 2009 02:40 PM PDT

On Apr 26, 5:40pm, piscesboy <com> wrote: 

A colleague is using Ubuntu for precisely this. It took some work with
the Mac compatible boot loader, but he's a happy camper.

PCMCIA card that will work with Debian?

Posted: 26 Apr 2009 01:15 PM PDT

com wrote: 

That card is currently classified as redband and currently has no open source
driver. It appears that you will need to use an ndiswrapper to utilize that
card.

Mark.

--
Mark Hobley
Linux User: #370818 http://markhobley.yi.org/

Old Computer, New External USB Drive

Posted: 25 Apr 2009 07:18 PM PDT

On 2009-04-28, JohnF <see.sig.for.email.com> wrote: 


On t'other hand, I rescued an old Dell Optiplex from the trash and installed a
USB 2 card in it. The card runs fine at full speed. No problems at all
detecting whatever I plug into it. The machine was built in 1998 and has a
376MHz Pentium II in it. Perhaps the machines you tried really _do_ have
processors that are too slow to run USB 2 cards. Unlikely, but possible.

W.

Udev Issues

Posted: 23 Apr 2009 08:49 AM PDT

On Thu, 23 Apr 2009 11:49:20 -0400, Bart Simpson wrote:
 

No experience
is it randomly remapping?
can you tie stuff/config to specific hardware ports?





--
Once again, our prime minister Kevin Rudd brings stability to the nation
by reassurring the nation that one law still exists for the rich
and another for the poor. After a personal visit;
http://www.abc.net.au/news/stories/2009/04/27/2553855.htm