Pages

Search

Microsoft Word - Got a laptop to write with. Want to be able to transfer Word files to PC.... Is there a way around buying 'Office' or 'Word 2013' to do this???!!!!

Microsoft Word - Got a laptop to write with. Want to be able to transfer Word files to PC.... Is there a way around buying 'Office' or 'Word 2013' to do this???!!!!


Got a laptop to write with. Want to be able to transfer Word files to PC.... Is there a way around buying 'Office' or 'Word 2013' to do this???!!!!

Posted: 19 Jan 2014 03:08 PM PST

I bought a laptop to use away from the PC, but I realised of course I'd have to get Office to be able to transfer Word files from one to the other. Is there a way around this, or do I basically have to shell out more dough for this product? I saw some free compatible software online but is that advisable to download??? Please advise. Also, can I use Office 2010 on my laptop which has Windows 8.1 on it? the 2013 seems very expensive. 

Word 2013 Line Spacing

Posted: 19 Jan 2014 02:45 PM PST

Hi: I am attempting to create some book spine and three-ring binder spine titles. I am limited to about one-half inch of width on the spines. I will be using a paper cutter to trim the printed titles to fit this narrow space.


So, I desire to use a large font size of 18 point or thereabouts. However, I am unable to "crowd" two lines of text to accommodate the spine width. I have tried all the "Line Spacing" features such as "single", "at least", "multiple" and various "point sizes"


I just cannot seem to overcome the minimum of "single line" spacing. The smaller point sizes just lop off the tops of the second line of text, but does not decrease the actual spacing between lines.


I guess I would expect that I could choose to have one line of text atop another or a very narrow space , but as I said I merely lop or chop off the second text line. As an example, say spacing actually measures 1/4". Why can I not change it to say 1/8" ?


Am I asking Word line spacing for the impossible?


Thanks,

Ron Reeland

Fomatting issue not sure how to eliminate or what caused this?

Posted: 19 Jan 2014 02:05 PM PST

I am helping my roommate edit his novel.  Somehow there is a line on the left margin and lines of dots.  When you move the mouse over the line of dots it changes to lines with arrows which look like they can be moved.  I have included the sample.  I have the vertical line appearing elsewhere in the manuscript.  I have never seen this before.  Any help would be greatly appreciated.  Thanks.

Nazis enslave millions and sends them to concentration camps. Americans desperately hope to stay out of the war. 

******

 

 

Having gotten the man to sell the land, purchased the land for her home, Rebecca's taunting task became raising the funds to pay for it, along with the construction of the home.   

When I copy the section from the document the lines appeared, but when I viewed it they were not there.  They appear around the *****.

Templates

Posted: 19 Jan 2014 01:35 PM PST

How do I save a template from an existing file, such as a job application, and then reopen it to fill-in the blanks without the format of the document moving around?

Word Web App Table Cell

Posted: 19 Jan 2014 12:28 PM PST

I have a table in a Word Web App document.  There is a cell with content in it.  The font color is black and it seems the background of just the text is slightly gray.  I can't edit or delete this content.  It seems that it is protected in some way.  What is going on here?  How can I remove this "protected" state and delete or edit this content?  I can't even delete the table row that the cell is in.  Thank you.

image in first page header doesn’t appear when having a second page in document

Posted: 19 Jan 2014 12:16 PM PST

I have a macro: It lets me choose images that will be placed in the headers (first page header and continuing pages) and it puts images into the footer (first page footer and continuing page footers).

It seems to work fine. BUT if I have a document with multiple pages the image in the first page header disappears! I have no idea what is wrong with the code :( 

This is what I would like to have eventually:

> first page header
image1 in top right corner
> first page footer
image2

> other page headers
image3 in top right corner
> other page footers
image4

Any tips or help would be highly appreciated :) 


This is the code I use: 

   Sub START()



'

' START Macro

'
       ' Custom form page parameters
  Const FPageWid = 7: Const FPageHgt = 2#
  Const FMargLft = 0.98: Const FMargRgt = 0.98
  Const FMargTop = 1.2: Const FMargBot = 1.8

' Word page dimensions
  Const WPageWid = 8.5: Const WPageHgt = 11

' Printer no-print area
  Const PNoPrTop = 0.25: Const PNoPrBot = 0.25
  Const PNoPrLft = 0.25: Const PNoPrRgt = 0.25

Dim WMargTop, WMargBot, WMargLft, WMargRgt      ' Word margins
  WMargTop = FMargTop
  WMargBot = FMargBot
  WMargLft = FMargLft
  WMargRgt = FMargRgt

Dim oDoc As Document
Dim oVars As Variables
Set oDoc = ActiveDocument
Set oVars = oDoc.Variables

With oVars
  .Add("WMargTop").Value = WMargTop
  .Add("WMargBot").Value = WMargBot
  .Add("WMargLft").Value = WMargLft
  .Add("WMargRgt").Value = WMargRgt
End With

With oDoc.PageSetup
  .TopMargin = InchesToPoints(oVars("WMargTop").Value)
  .BottomMargin = InchesToPoints(oVars("WMargBot").Value)
  .LeftMargin = InchesToPoints(oVars("WMargLft").Value)
  .RightMargin = InchesToPoints(oVars("WMargRgt").Value)
End With
    
    
    ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageHeader 'HEADER PAGINA 2 en verder
    
        Call AbilitecToevoeging


    ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageFooter 'FOOTER PAGINA 2 en verder
    Selection.InlineShapes.AddPicture FileName:= _
        "http://www.babettezijlstra.nl/wp-content/uploads/Footer-Adres1.jpg" _
        , LinkToFile:=False, SaveWithDocument:=True
    ActiveDocument.PageSetup.DifferentFirstPageHeaderFooter = True

         
    Dim asection As Section

Set asection = Selection.Sections(1)

With asection

With .PageSetup

End With

     ActiveWindow.ActivePane.View.SeekView = wdHeaderFooterFirstPage 'Footer PAGINA 1
 
     ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageFooter
    Selection.InlineShapes.AddPicture FileName:= _
        "http://www.babettezijlstra.nl/wp-content/uploads/Footer-Een-kopie.jpg" _
        , LinkToFile:=False, SaveWithDocument:=True
        
    ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument

ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageHeader

        Call AbilitecToevoegingDrie
        
     ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
 
End With
End Sub



   Sub AbilitecToevoeging()

  Dim oDialog As Word.Dialog
    Dim Shp As Word.Shape
    
    ' \\ Get a handle to the Insert picture dialog
    Set oDialog = Dialogs(wdDialogInsertPicture)

    ' \\ Work with dialog
    With oDialog
        ' \\ Display the dialog
        .Display

        ' \\Insert Shape Picture if the Name property (Filepath) <> ""
        ' \\ Set Left, Top, Width and Height properties to position the shape
        If .Name <> "" Then
            Set Shp = ActiveDocument.Shapes.AddPicture(FileName:=.Name, _
                LinkToFile:=False, _
                SaveWithDocument:=True, _
                Left:=274, _
                Top:=-35, _
                Width:=250, _
                Height:=234, _
                Anchor:=Selection.Range)

        End If
    End With

    ' \\ Clean up
    Set oDialog = Nothing

        Shp.WrapFormat.Type = wdWrapSquare
    
    End Sub



Sub AbilitecToevoegingDrie()

  Dim ladieda As Word.Dialog
    Dim Shp As Word.Shape
    
    ' \\ Get a handle to the Insert picture dialog
    Set ladieda = Dialogs(wdDialogInsertPicture)

    ' \\ Work with dialog
    With ladieda
        ' \\ Display the dialog
        .Display

        ' \\Insert Shape Picture if the Name property (Filepath) <> ""
        ' \\ Set Left, Top, Width and Height properties to position the shape
        If .Name <> "" Then
            Set Shp = ActiveDocument.Shapes.AddPicture(FileName:=.Name, _
                LinkToFile:=False, _
                SaveWithDocument:=True, _
             Left:=274, _
                Top:=-35, _
                Width:=250, _
                Height:=234, _
                Anchor:=Selection.Range)
        End If

    
        Shp.WrapFormat.Type = wdWrapSquare
    End With
    End Sub

Unintended jumping to a previous part of the text

Posted: 19 Jan 2014 11:38 AM PST

While creating a Word document (both in Word and in Outlook), I find that my cursor has jumped to a previous place in the text and the text I am creating is being inserted there.  I can't figure out a patterns to the jumps.  This happens on two different keyboards?   so I don't think I'm accidentally hitting a function key.  What am I doing?  (And as I typed the "oing" in "doing" it jumped up to the end of "keyboards" in the previous line.)  I am running Word Version 14.0.7106.5003 (32 bit)

Some words/text vary in size, although shown as correct size in Font window

Posted: 19 Jan 2014 11:37 AM PST

I'm having an odd problem. In a file that I converted from a PDF, some of the words are displaying in a slightly smaller and narrower/width font than the style is set for.

The formatting is simple for this file - I just need everything in 10-pt timesnewroman font. and that's what I've styled "Normal" as.

and I've selected the entire file and hit "Normal" to style it all as that. that didn't fix the varying font sizes.

I've selected individual lines and went into the Font setting to make them all 10-pt and that didn't do it. I tried making them 9 pt and then back to 10 pt and that didn't work.

BUT ... when I click on (select) the individual word and then hit "Normal", it fixes it (that is, it increases the font size and width to match the rest of the line).

For the life of me, I can't see any difference in the "features" of these non-compliant words.

Anyone have any idea how I can fix this, short of eyeballing 18 pages of lines and fixing each of the words individually?

thanks!

Louise

Microsoft office 2013

Posted: 19 Jan 2014 10:40 AM PST

Ok I have just recently bought and downloaded Microsoft Office 2013. But when I type up papers, or Excel worksheets and save them, when i go back I cant open it. Im confused

Sizing a window within Word 2013

Posted: 19 Jan 2014 10:09 AM PST

I have added the "open" button to my Quick Access Toolbar. This button works as intended. However, the window which opens fills the entire screen. I need a way to size this window. Right now I have go close the window in order to get back to the document I had been working on.

Where did MS Office go?

Posted: 19 Jan 2014 09:33 AM PST

When I converted to Windows 8.1, I selected to "save my files" then proceeded.  Now where is MS Word & MS Excel & PowerPoint, etc.?

Accessing Macros Shuts Down Word

Posted: 19 Jan 2014 08:50 AM PST

Hi,

I have Office 2013 suite, running on an Windows 8.1

I have been using basic macros to help me write my dissertation over the past few days on Word. Today however, when I run a macro, look up macros, or even try to change the macros in word, the entire programme shuts down.

I have tried restarting several times, but the problem seems to be persisting.

What should I do?

Many thanks in advance for all the help!

Microsoft office 365 university not working

Posted: 19 Jan 2014 08:36 AM PST

When I attempt to access any of the office packages I receive a pop up message which says, " The shortcut has been moved or changed" I don't know what has happened so I would be grateful for some advice :D

Did anyone find out the reason for the word cntl key holding down?

Posted: 19 Jan 2014 07:03 AM PST

I have the same problem. Like many of the posts I have done that has been suggested and switched off everything, but it raises its head again and again.

I even replaced the keyboard in my laptop, still the problem occurs. I disconnected all devices, but still after time it happens again.

I believe it is a problem in Word, and not with hardware in computers, once you restart the computer all fine, until the next time.

Has anyone had any success as yet with the problem.


Word 2013 stopped working; don't know what to do

Posted: 19 Jan 2014 04:46 AM PST

I just installed Office 2013 and everything was fine until today and now Word has stopped working.  I have tried to search the internet to find a solution but I am not that tech-saavy and don't understand most of the posts.  Can someone help with a really simple answer to the problem?  I cannot open in Safe mode either.   I am traveling overseas and don't have access to the original disks to reinstall.  Please help!


Error in highlighting text (scrolling over with mouse)

Posted: 18 Jan 2014 11:11 PM PST

Hi all,

I just installed office 2013 and have been having one consistently strange error.

On first opening up word, I have no problem and can easily highlight text (such as highlighting a sentence to delete it).
If I tab away from word, and then again return to the same file, I can no longer highlight.
A little windows loading symbol appears very momentarily (the amount of time it takes for me to click), and I am unable to select/highlight anything as before.

If I save and close word, and then reopen the file - I can then use it as normal (until I tab away once again).

Any idea about what this issue is?

I was using windows 8 with word 2010 previously, I have just got a new laptop, have installed windows 8.1 and have the one month office 2013 trial.

Thanks,

Table cell borders disappear when document converted to PDF

Posted: 18 Jan 2014 04:50 PM PST

Why do my table cells (some with shading, some without) boarder lines disappear when I convert my word 2010 document to PDF - this mostly happens with the top boarder but randomly with side boarders as well. Could it be something to do with my default cell margins?

read only ?

Posted: 18 Jan 2014 04:35 PM PST

Brand new Dell PC w/ MS Office 2013.   All documents (My docs and my external drive) come up as "Read only."  Have tried all kinds of recommended fexes and nothing seems to remedy the situation.  Very frustrating.   Any solutions?   Thanks.

Microsoft CRM - New CRM Installation

Microsoft CRM - New CRM Installation


New CRM Installation

Posted: 27 Sep 2004 10:53 AM PDT

While it will work, please realize that the only supported manner of doing this
is to use SBS.

Matt Parks
MVP - Microsoft CRM

----------------------------------------
----------------------------------------
On Mon, 27 Sep 2004 11:05:04 -0700, "Josh" <microsoft.com>
wrote:

yes! just the crm outlook client has to be on a different
machine
 
them 

Customizing Activity View- adding Account details

Posted: 25 Sep 2004 06:09 PM PDT

Hello Mark
I have tried using those links but when i click on the add columns i dont
see the account field ('Object name schema'). I guess should make changes in
xml page viewer to add the object name field . Do you know where i can do
that. Thank you for the assistance

Kal

"Mark Anthony" wrote:
 

Is SFO really this difficult????

Posted: 25 Sep 2004 08:41 AM PDT

LocalSystem account.

"John O'Donnell" wrote:
 

program GUI

Posted: 24 Sep 2004 01:43 PM PDT

another option - our Developer Components for MS CRM.
www.customereffective.com\products\dc

would help reduce time / effort / and technical skill level required
to do what you are looking to do with MS CRM.

Mike

Adding user error

Posted: 24 Sep 2004 12:17 PM PDT

Brian,

May be time for a support ticket with MBS.

Matt Parks
MVP - Microsoft CRM

----------------------------------------
----------------------------------------
On Mon, 27 Sep 2004 06:09:03 -0700, "Brian Banet"
<microsoft.com> wrote:

Matt,

The user in question does not exist in any of the groups or roles in the CRM
OU. I have noticed however that if I run the User Data export from the
redeployment tools, the user in question does show up in the exported XML
data. There must be a table that is referencing that domain user somewhere,
but I can not find it anywhere.

"Matt Parks" wrote:
 

CRM E-mail in Draft Folder

Posted: 24 Sep 2004 11:45 AM PDT

Support for the Outlook sent folder is being added in MSCRM 2005

--
Alex Simons
Director of Program Management
Microsoft CRM
-------------------------
This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm
"Matt Parks" <com> wrote in message
news:com... 
Outlook, 
e-mail 
folder 
recipients 


CRM Workflow Manager

Posted: 24 Sep 2004 11:37 AM PDT

Unfortunately, without coding some SDK calls yourself, you can't specify both a
recipient and a template. The only work around I've been able to find it is to
create a activity that instructs a user to manually send the email, but that
isn't a very good solution either.

Matt Parks
MVP - Microsoft CRM

----------------------------------------
----------------------------------------
On 27 Sep 2004 11:05:10 -0700, "com" <com> wrote:

I have run into this issue as Matt describes. Using the template, I can
only send to client addresses, I cannot find a way for it to reference
a User to send to. Is there a way to call up that template up as an
attachment? Would the information in the template be populated within?
If not, what methods are there to reference specific Opportunity
information and display it within the generated Workflow message?
Thanks,
Scott

Auto Numbering

Posted: 24 Sep 2004 09:02 AM PDT

Thanks Matt
I want to keep the prefix but change the autonumber. But I understand by
looking at the organizationBase table I'll be able to do this.

Hans Inge Letnes
ErgoGroup
Norway

"Matt Parks" wrote:
 

CRMContact.Create problem

Posted: 23 Sep 2004 04:47 AM PDT

my code here worked when importing data in c# and start is a date string

DateTime MyDate = System.Convert.ToDateTime(start);
String mydate = MyDate.ToString("yyyy-MM-dd HH:mm:ss");

--
John O'Donnell
Microsoft CRM MVP
http://www.microsoft.com/BusinessSolutions/Community/CRMFaqLanding.aspx


"Ashfaq Ali" <com> wrote in message
news:phx.gbl... 
"<contact><firstname></firstname><middlename></middlename><lastname>Rietdijk 
00:00:01</birthdate><emailaddress1></emailaddress1><address1_line1>Dorpsdijk 
127</address1_line1><address1_postalcode>3161CA</address1_postalcode><addres 
s1_city>Rhoon</address1_city><telephone1>010-5015331</telephone1><fax>010-50 
<file>D:\crm\Build\3297\src\platform\include\Util\ CrmDateConvert.h</file> 


Microsoft Word - Watermark Options in Word 2013

Microsoft Word - Watermark Options in Word 2013


Watermark Options in Word 2013

Posted: 18 Jan 2014 01:31 PM PST

Hello:


I noticed with I click the Watermark icon from the Design tab there is a dropdown menu option called  "More Watermarks from Office.com".  When I click that option it says "No online content available".  My question is, what is the purpose of this option when there is no option?


Thank you,

Problems with opening Microsoft Word and Excel

Posted: 18 Jan 2014 10:22 AM PST

Hi,

 

I have just installed Office and every time I try to open Word on my computer I get this message:

 

roblem Event Name: BEX

Application Name: WINWORD.EXE

Application Version: 15.0.4551.1505

Application Timestamp: 525f7150

Fault Module Name: unknown

Fault Module Version: 0.0.0.0

Fault Module Timestamp: 00000000

Exception Offset: 003ad720

Exception Code: c0000005

Exception Data: 00000008

OS Version: 6.1.7600.2.0.0.768.3

Locale ID: 2057

Additional information about the problem:

LCID: 1033

skulcid: 1033

 

 

 

Any thoughts/solutions to stop this happening? 

 

 

Paragraph default problem

Posted: 18 Jan 2014 09:33 AM PST

Every time I set 0 pt and single space formatting as the default, the next time I open up Word, it has reverted to 10 pt and Multiple space. What do I need to do to get 0 pt single spacing set as the default and have it stay that way?

Don't Add Space between paragraphs option not working with tracked deletions

Posted: 18 Jan 2014 09:05 AM PST

I've just ran into the following issue in Word 2013:
If

 

  1. Create new word document
  2. Create 3 paragraphs, something like

  1. Assign some style to paragraph 1, say, "Heading1"
  2. Assign different style to paragraph 3, say, "Heading2"
  3. Enable "Review"->"Tracked changes"
  4. Remove second paragraph

  1. Now modify "before paragraph" spacing for "Heading2":

Set "Styles"-> "Heading 2"-> "Modify" -> "Format"->"Paragraph"-> "Spacing"-> "Before" to "30 pt"

Note, that now spacing increased:

  1. Set"Styles"-> "Heading 2"-> "Modify" -> "Format"->"Paragraph"-> "Spacing"-> "Don't Add Space between paragraphs"

 

Somehow, spacing decreased again. But why?

1.       Styles of first and second are different.

2.       If one accepts deletion (those "Removed text" deletion which is still a "tracked change"), spacing becomes corect again.

Here's a ".docx" file, demonstrating this bug. Note, that word web app seem to correctly display this document (indent is large).

 

So, anyone knows how to fix this?


PS. I'm sorry, but it looks like this forum doesn't allow to manually set adequate picture sizes.

 

 

Unspecified error /word/document.xml, Line: 2, Column: 0

Posted: 18 Jan 2014 08:36 AM PST

I was working on my summary for a maths exam and the file got corrupted. The cause for the corruption is my adding of a (word) equation, changing the size and I think I pressed enter on the middle of it to split it into 2 lines. This is very urgent as I need to use this document on the exam.

The equation is:
It is located on the fourth page (out of 4).

The document
http://sdrv.ms/1ayNoCX

Earlier version
This is an earlier version of the document (minus 7 hours of work) - that doesn't contain this equation.
http://sdrv.ms/1ayNt9K

Note that you need MathType installed to view some of the equations.

Mail Merge.....Where is the File of individual letters.

Posted: 18 Jan 2014 07:29 AM PST

I USE MAIL MERGE TO MAKE INDIVIDUAL FORMS FROM AN EXCEL DATABASE.   i WOULD LIKE TO INSERT A PICTURE OR A MAP FROM ANOTHER SOURCE AT A LATER TIME.  WHERE CAN I FIND THE INDIVIDUAL FORMS.  CAN I FIND THIS FILE -- OPEN IT -- AND ADD THINGS FROM ANOTHER SOURCE TO INDIVIDUAL ITEMS?   IF I CAN DO THIS WHAT WOULD THE FILE NAME BE AND WHERE IS IT LOCATED?

Word 2013 documents: number of pages increases when opened with earlier versions.

Posted: 18 Jan 2014 06:43 AM PST

I created a 64 page document using Word 2013 which I saved and sent to a friend as an email attachment. My friend has Word 2010 installed on his computer, when he opened my document it was 70 pages with a bit of tweaking he was able to get it back to 64 pages.

If I save the same document in Word 97-2003 format or RTF format it saves in both cases as 71 pages.

What is causing the problem or is there a master plan by Microsoft to drive people insane!

I can't open any downloaded Word files - please help!

Posted: 18 Jan 2014 03:46 AM PST

I tried to open an attachment from an email (Outlook) and I have the error message:

'Word experienced an error trying to open this file' and then it goes on to list the possible solutions such as 'Open and Repair' and 'Recover Text converter'. I have tried both these options and the same error message comes up again.

When I tried to open other files that I had not downloaded, they opened fine and I had no issue. Basically, any Word file in my 'Downloads' folder does not open.

Can someone please explain what I can/should do to make this work again?

Thank you!

OFFICE 2013

Posted: 17 Jan 2014 11:14 PM PST

I HAVE FRESHLY INSTALLED WINDOWS 7  OS (32 BIT) , OFFICE 2013 AND OTHER APPLICATION OF ADOBE 
WHEN EVERY I PRINT A DOCUMENT IN WORD IT SAYS {THE WORD IS PRINTING IN THE BACKGROUND} AND I HAVE CHECKED THE OPTION OF WORD AND CLEAR THE MARK IN THE PRINT OPTION BUT NO USE I AM USING HP LASERJET CP 5525 DN PRINTER AND I HAVE UPGRADED THE PRINTER SOFTER ALSO 

Word 2010 & Word 2013

Posted: 17 Jan 2014 10:53 PM PST

How do I change the Style to stay as I set it?

Every time I open Word I have to reset 'Normal' to how I like it. Is there a way the will make 'Normal" stay the way I like it?

I am about to start university and they have a set way that they like my assignments to be set out, this is why I want my 'Normal' to stay as I set it and make it stay set, otherwise it takes time for me to reset 'Normal' that I could be using writing my assignments.

I own both 2010 & 2013 and cannot make 'Normal' stay set on wither of them.

word 2013

Posted: 17 Jan 2014 06:38 PM PST

I have a message that i have to activate with a code my microsoft word i have had this computer 3 yrs never had this problem i got a code from microsoft and activated it but it is still keeps asking me to put in a code each time i use word help PLease need this app for work

Word 2013 Download Issues

Posted: 17 Jan 2014 06:18 PM PST

So I bough word on a previous computer, I upgraded from windows 7 to 8 and went from HP to toshiba.

My problem is I cannot activate the word I bought like a month a go on this new computer because it says I already reached the limit of the product key. Am I going to be forced to buy word a 2nd time because I have another computer?

Open existing client files in Word 2013

Posted: 17 Jan 2014 05:10 PM PST

I have added an "Open" button to the banner in Word's document page, hoping to bypass the cumbersome process of getting to my client files. The only way I can get a file now is to lcick on File>open>computer>browse>Document Library and then select my file. I have to do this for every freaking file that I  need to open. Why cannot I not create some sort of short cut to do this? I am very annoyed.

Update endnote cross references

Posted: 17 Jan 2014 03:06 PM PST

I have been using cross references for situations where, e.g., I have "see note 134." Use a reference type of endnote, Insert reference to Endnote number and insert as hyperlink. The "ctrl + click" works ok, but when I need to update the endnote, F9  does not work. Also when I right click on the number there is no "edit" in the dropdown list.


Guy  

office word 2013 server error while inserting online pictures.

Posted: 17 Jan 2014 11:05 AM PST

Original title office word

 

click on insert and then on the online pictures and it wont log in. it say having server issues but my other pc log on fine

Word 2000 Spell Checker - Microsoft Office forums

Word 2000 Spell Checker - Microsoft Office forums


Word 2000 Spell Checker

Posted: 14 Mar 2006 11:46 AM PST

garfield-n-odie [MVP] wrote: 

Many thanks for your reply. Your instructions were crystal clear and
the solution worked perfectly.

Much appreciated.
Echy
 

Open Volume liscence

Posted: 14 Mar 2006 09:40 AM PST

Thanks for your help.

I have also found sellers on eBay using the following statement inorder
to sell OEM software.

"In order to comply with eBay's & Microsoft's Software Regulations,
this purchase will include an untested, non-warranted, piece of
hardware at no additional cost to the buyer."

But I looked at Microsofts EULA and they said that the hardware must
include a power source, hardrive, motherboard, case, etc....

How does eBay (or Microsoft) let these sellers get away with selling
under these pretences?

Registered name change

Posted: 13 Mar 2006 10:05 PM PST

thanx


"garfield-n-odie [MVP]" <microsoft.com> wrote in
message news:%phx.gbl... 


Microsoft should improve copy protection.

Posted: 13 Mar 2006 09:08 AM PST

On Tue, 14 Mar 2006 13:57:30 +0200, "SeanL" <seanl@askme> wrote: 

If you want a program that is small enough to run off a 3.5
boot disk and will create a bootable DVD for restores, go to

http://www.bootitng.com/image.html

Will also write a backup image to a 2nd internal OR external
hard drive that is connected via usb cable


John Thomas Smith
http://www.direct2usales.com
http://www.pacifier.com/~jtsmith

Office upgrade and GPO

Posted: 13 Mar 2006 08:20 AM PST

I absolutly agree that software should not be deploy using GPO in the user
container especially sth like Office. If you refer to my posting

"I would like to deploy OFFICE 2k3 to all of them. I am
optioning to go to a third party software distribution tools"

the "Per user" GPO was done by consultants prior to me being employ at my
current company. I am trying to clean it out. I understand that a "Detect
and repair" is insufficent I am trying to get a install that can do without
it.

as far as uninstalling it goes. When I log in as the "admin" user I do not
see the program in "control panle-> add and remove program" however, if the
I log in as a user who has it installed its there. The dilema is that these
machines generally have 10 to 15 user profiles in it. I am thinking for
deleting all the user profile.

Any suggestions?

Thanks

JAck


I have try deleting the folder

<%program files%>\ms\office\10

and the registry

HKLM\software\microsoft\office\10

prior to the installation

but still no luck any other suggestions?

"Gerry Hickman" wrote:
 

Installing Access2000

Posted: 13 Mar 2006 06:41 AM PST

Hi and thnx alot.. i found the Wizard and made a cmw file that is now
distrubuting Access 2000.

"Bob Buckland ?:-)" wrote:
 

open documents

Posted: 12 Mar 2006 08:26 AM PST

It's possible that the Norton Office Plugin is still registered
in Windows, even if you uninstalled Norton. Search for the
OFFICEAV.DLL file on your system (include hidden and system
files/folders). If you find it, note the folder where it is
located, and use the "regsvr32 /u" method described in KB329820
to unregister the DLL.

sammy5 wrote:
 

what is best program or website for designing posters

Posted: 12 Mar 2006 02:29 AM PST

http://www.microsoft.com/office/publisher/howtobuy/default.mspx
"gudda96" <microsoft.com> wrote in message
news:com... 


Limited Account gets "Preparing to install... " but Admin acct doe

Posted: 11 Mar 2006 03:50 PM PST

It was one of the first things I tried since it was a real quickie. No
change whatosever. I checked the keys in question and they were not missing
before I ran the utility and there appeared to be no change to them
afterwards.

Other thoughts?

"ANONYMOUS" wrote:
 

Connect MS Word's Send cmd to OE instead of Outlook - How?

Posted: 10 Mar 2006 06:48 AM PST

Hi "Anonymous",
 
Thanks for that guidance, but that's not what I want to do right now.
 
No problem.

Mysteriously, my problem "solved itself." I had posted this question
because MS Word forwarded my doc to Outlook, which in turn kept the doc in
its Outbox and failed to send it to the intended recipient.

Today, I re-entered my password for my email account in Outlook. Then I
sent a Word doc and, voila, it wound up in Outlook's Sent folder and then in
FireFox's InBox. I'm a happy camper again.
 
It sure did! It got me off my duff to search for another solution.
--
Regards,
Richard


Have I too many CD-Roms?

Posted: 09 Mar 2006 09:29 AM PST

No. Updates were from purchased CDs. Curiouser and curiouser. Thanks
for your help. When 'it' happens, I'll let you know.......Thanks again
Rognic

Update Project Dialog Box Microsoft Project

Update Project Dialog Box Microsoft Project


Update Project Dialog Box

Posted: 10 Mar 2005 11:53 AM PST

Hi Anita,

Those settings control how Project updates % Complete on tasks that should
have been in progess (but not finished) as of the status date (date appearing
in the Update Project dialog box). The choice set 0-100% complete would mark
a task that should have been started by not completed as of the date the
appropriate % complete. For example, a 10 day task that that started on 28
April 2005 should have been 50% complete as of 4 March 2005. If I choose
"set 0-100% complete it is marked as 50% complete.
If I choose 0 or 100% complete only the same task with the same update date
(4 March) the % complete is not touched by Project because it is not
scheduled to be completed until 11 March 2005.

Hope this helps. Let us know how you get along.

Julie

"Anita" wrote:
 

to show actual % of work completed

Posted: 10 Mar 2005 11:23 AM PST

Hi ML,

I'm not sure from your post if you want to show the % work complete in the
task sheet (in which case follow "Project Slaves" direction) or as text next
to the bar in the Gantt chart. To show % Work Complete next to the bar,
choose Format> Bar Styles. Find the bar for the task type (Normal, Critical
etc.). At the bottom of the Format Bar Styles dialog box, click the Text
tab, select where you want the text to appear (Left, Right etc.) and select %
Work Complete from the field list.

Hope this helps. Let us know how you get along.

Julie

"ML" wrote:
 

How do you remove a subproject from a master project?

Posted: 10 Mar 2005 11:13 AM PST

Hi Todd,

Have you installed SP-1 for Project 2003? The ability to remove a subtask
was a bug that was fixed. See the KB article:

http://support.microsoft.com/default.aspx?scid=kb;en-us;834684

The hot fix referenced was included in SP-1.

See KB article:
http://support.microsoft.com/default.aspx?scid=kb;en-us;837240
for details and download instructions.

Hope this helps. Let us know how you get along.

Julie

"Todd Olson" wrote:
 

Project capabilities

Posted: 10 Mar 2005 10:25 AM PST

In article <phx.gbl>,
"JackD" <momokuri@gmail> wrote:
 


Jack,
I respect your opinion. Thanks for weighing in.

Actually with regard to the accounting month issue, the method I use
does not try to do it all in Project. Like you said, the Project
timescale can NOT be changed to accommodate a non-standard calendar.
However, the data CAN be converted and exported to an application where
it can be readily integrated with other company financial systems.

With regard to cost. If a macro or add-in is developed to provide needed
functionality, why can't it be made available to all users in a company,
whether there are 10 employees or 10's of thousands? It is no different
than existing add-ins and utilities.

And I do agree, some of the requests for added "functionality" are NOT
worth the effort to write up in code. I think we have both seen that on
this newsgroup. However, I think it is always wise to think outside of
the box, but it isn't always worth the effort to implement the resulting
solution.

John

Project 2003 - reformatting summary tasks, tasks, & subtasks

Posted: 10 Mar 2005 10:01 AM PST

Yay! Worked like a charm! Thank you so much!

"JulieS" wrote:
 

Can I set repeating subtasks for each task entered in Project?

Posted: 10 Mar 2005 09:43 AM PST

Hi Laura,

The macro not recording the indent is odd. If you look at the VBA code in
the VB Editor does the code include the text "Outline Indent" (without the
quotes.)

As far as the linking to previous tasks, that is controlled Project wide
through Tools>Options the Schedule tab and the choice "AutoLink Inserted or
Moved Tasks". If that option is on, you should see the linking occurring
even without the macro.

What version of Project are you using?

Julie

"Laura" wrote:
 

I need to specify time as well as date in Constraint Date

Posted: 10 Mar 2005 07:26 AM PST

Hi Mike

absolutely, firstly ensure that you're seeing your times in the start &
finish columns (tools / options / view - change the date format to one that
includes the time as well) .. now when you set your constraints (an
remember, try to minimise the number of constraints in a project - use links
instead where possible) ... choose the date as per normal then at the end of
the year bit click in the cell, press the space bar and type the time (e.g.
7:00 am)

Hope this helps
Cheers
JulieD

"Mike" <net> wrote in message
news:googlegroups.com... 


can't find Microsoft Project 9.0 OLE DB on my list of OLE DB Providers

Posted: 10 Mar 2005 06:50 AM PST

Hi Julie,

Yes the Project 10 OLE DB provider did appear once I went to the
"Other/Advanced" choice in the Data Connection Wizard.

According to the Prjoledb.htm file "To view data access pages on a local
provider, you need to use Microsoft Access 2000 or 2002 along with Microsoft
Project installed on the computer viewing the provider. Microsoft Project
automatically installs the OLE DB Provider, any international .dll, the
appropriate registry keys, and any needed ActiveX controls."

So I don't know if modification of your installation of Project is in order.
Sorry, I installed project so long ago I don't recall the installation
settings I selected. I do know I installed Project *after* installing Access.

Hope this helps.
Cheers!
The Other(2) Julie

"JulieD" wrote:
 

Auto Filter

Posted: 10 Mar 2005 02:34 AM PST

Hi Empowerment Group,

Are you typing in the test or selecting it from the list of durations in the
Custom AutoFilter? If you are typing, are you adding the quotes around the
duration or just entering the number and measurement unit? If I type in "3d"
with the quotes, I get a message "The entry is not valid." However, typing in
the quotes shouldn't work for any filter in the duration field.

Hope this helps. Let us know how you get along.
Julie


"The Empowerment Group" wrote:
 

How do I set up a Mail client server in Outlook

Posted: 09 Mar 2005 05:19 PM PST

Joe,

This NG is dedicated to the Microsoft Project software. You would have
better luck posting in an NG dedicated to Outlook.

SarahK

Screens

Posted: 09 Mar 2005 01:39 PM PST

Tools>Customize>Toolbars...
Select Commands tab, then click "View" in "Categories",then try to find
"View" dropdown list in "Commands" window, then drag and drop it to the
toolbar


"Harry" wrote:
 

Custom Fields in Project

Posted: 09 Mar 2005 12:17 PM PST

Try to make a template for this kind of project with your custom fields even
value lists for these fields if you want

"Harry" wrote:
 

is scheduling from a finish date the best way to approach this scenario

Posted: 09 Mar 2005 08:17 AM PST

Hi Jan

thanks for this ...

Cheers
JulieD

"Jan De Messemaeker" <jandemes at prom hyphen ade dot be> wrote in message
news:phx.gbl...