Pages

Search

Microsoft CRM - SFO Question ...

Microsoft CRM - SFO Question ...


SFO Question ...

Posted: 03 May 2004 10:49 AM PDT

Elena -
I beleive this alos happens when the cache in Outlook
gets full and it needs to be cleared. To clear the cache,
you will need to perfrom the following steps.

1. In Outlook, go to Tools, Options.
2. Under the "Other" tab, click on the "Advanced
Options" button.
3. Click on the "Custom Forms" button.
4. In the "Options" window, click on "Manage Forms".
5. In the Forms Manager window that opens, click
on "Clear Cache".
6. Close all open windows, and close Outlook.
7. Re-launch Outlook, and try to use the CRM buttons.

Also, I beleive there's a hotfix download to address this
problem.
 
Contact", "New CRM Task", New 
this happening to any 
offline, the CRM 
that is inactive. 
Outlook, I cannot 

Montior resolution

Posted: 02 May 2004 09:34 PM PDT

If you read through the default.aspx in the CRM (1.2) web root, you'll find
the following javascript:

// 768+ Allows for TabletPC and 800x600 PC Clients
if (window.screen.width < 768)
{
alert("Microsoft CRM requires a screen resolution of at least 800x600.
Please increase the resolution of your display.")
}
else
{
// Load MSCRM
window.open("/loader.aspx","MSCRM_MAIN", "height=" +
(window.screen.availHeight - 60) + ", width=" + (window.screen.availWidth -
14) + ", top=0, left=0, menubar=0, location=0, resizable=1, status=1");
}

So, your minimum for PCs is 800x600.

"Venkat" <com> wrote in message
news:747301c430c7$ef3687d0$gbl... 


Contacts best practises

Posted: 02 May 2004 05:15 PM PDT

Thanks dave
 
the contact 
extended activities 
contacts and parent 
contact-specific 
if 
to? 

Entity ID

Posted: 01 May 2004 01:46 PM PDT

You 'll find all iD in the SDK

Basic CRM questions

Posted: 01 May 2004 12:38 PM PDT

David

If you are using an unsupported accounting solution there is nothing to stop
you adding custom pages, perhaps on the account form which queries a
different database. Of course you would neen a field which is the same
between the two systems.

To do this you need to use ASP.NET and the CRM sdk and a language like
C#.NET or VB.NET

It will take a bit of work of course but if you cant buy it off the shelf
thats the options

Good luck


"David F" <ru> wrote in message
news:phx.gbl... 
on 


Search using multiple fields

Posted: 30 Apr 2004 03:51 PM PDT

If you're just needing to look for blanks within a
particular field, put the wildcard * in front of the
search.

Good luck!
 
www.c360.com. They have an 
save your queries 
wrote in message 

New Case Notification - Email

Posted: 30 Apr 2004 02:35 PM PDT

Works like a champ. Still haven't worked out the internal piece but the
Email to Case portion from an outside address is outstanding. I highly
recommend it. It is a shame that a 3rd party program is required to
accomplish something that MS's product should already address.

Thank you Scott!


"Scott Sewell" <msft> wrote in message
news:O2Y5Zf#phx.gbl... 
for 
(Including 
the 
day 
help 


Pushing down updates

Posted: 30 Apr 2004 01:36 PM PDT


Hi there!!!

Yes, they do have a tool like that. I saw it on the MCSE
traing kit companion CD for 2003 Server (exam 70-290 to
70-294). I don't have the cd with me now butI will try to
email the info tomorrow. They have a whole discussion
about how to test and distribute the updates. You can
even skip certain machines and so forth. If you know
someone who has the cd's you can get it from there.

Good luck

CDF Contacts, without Accounts

Posted: 30 Apr 2004 12:11 PM PDT

Matt and Stiffen, Thank you very much

Script error when launching CRM in IE

Posted: 30 Apr 2004 12:02 PM PDT

I did not make any customizations on the CRM. When
installing the CRM software, I followed the instructions
from the implementation guide exactly.
 
2000 
server, 

Add new counter field to Opportunities

Posted: 30 Apr 2004 09:25 AM PDT

The only problem with this is that it won't work when a sales rep is using the
SFO in offline mode. You could have 2 reps both create an opportunity while
offline and they would receive the same value for this field.

You might be able to implement something like this via a Post-Callout though.
The callout won't fire until the recrods are synched on the server, so that
would potentially prevent this issue.

Matt Parks

----------------------------------------
----------------------------------------
On Fri, 30 Apr 2004 09:25:18 -0700, "Karl" <fsnet.co.uk> wrote:

Hi Virtual Team,

We want to add a new field onto the opportunity form /
table that will be a sequential counter. I.E. Each of
our opportunities will have a unique number assigned.

Any ideas as to how we go about it?

Many thanks, Karl.

Viewing attachments

Posted: 30 Apr 2004 08:16 AM PDT

If they click Open insted of Save, it should open in the associated Office application. This is what I do.
Colin

Workflow Manuel rule

Posted: 30 Apr 2004 06:56 AM PDT

I tried yes and no.

Support Case and Contract Workflow

Posted: 29 Apr 2004 03:32 PM PDT

Matt,
i guess at least the first part of Bills question is not
only a question of functionality but of the process
itself.

creating a case and assigning a existing contract gives
you the possibility to check the kind of contract
afterwards. dependent on this value you can send an email
to the manager.

So you only have to switch actions in this part of your
real service process.

Do you use the ITIL reference model for building up this
service process?
Actually in our projects we use the biztalk server 2004
for setting up service processes using the ITIL reference
model and integrating MS SMS and MS MOM.

Bye

Steffen Klipfel
Development Lead
ITVT GmbH, Germany
 
functionality. However, you can do 
does the lookup/update 
action. 
(Bill Bither) wrote: 
management. 
check if the 
not. If so, 
(probably be 
need: 
level support 
to the case 
the SDK? If 

IE is closing when launching MSCRM web application

Posted: 29 Apr 2004 12:40 AM PDT

Aside from the popup blockers - an understanding of the code will help.

If you look through the javascript in web_root\default.aspx, you'll find the
load function. (see below)
Find the " // Do not close the window if it is the Application" comment and
start reading.
You'll find that if minimum resolution has been met, a new window is opened,
and the current browser window is closed.

We set up a CRM link on our intranet page that opens in a new window - where
the default.aspx is executed.
If successfully initialized, it opens a new browser window, and closes the
"intermediate" window - thus leaving the browser with the intranet page
intact, and a new browser window running CRM.
----
function load()
{
// 768+ Allows for TabletPC and 800x600 PC Clients
if (window.screen.width < 768)
{
alert("Microsoft CRM requires a screen resolution of at least 800x600.
Please increase the resolution of your display.")
}
else
{
// Load MSCRM
window.open("/loader.aspx","MSCRM_MAIN", "height=" +
(window.screen.availHeight - 60) + ", width=" + (window.screen.availWidth -
14) + ", top=0, left=0, menubar=0, location=0, resizable=1, status=1");
}

// Do not close the window if it is the Application
if (window.name != "MSCRM_MAIN")
{
// Destroy this Window
var oMe = window.self;
oMe.opener = window.self;
oMe.close();
}
}



"cyril" <com> wrote in message
news:google.com... 


Out of Office failure - Microsoft Exchange

Out of Office failure - Microsoft Exchange


Out of Office failure

Posted: 17 Jan 2005 05:26 AM PST

Global Settings, Internet Message Formats, Default - Properties. Advanced
Tab. Check the box for "Allow Out of Office Responses".

--
Ben Winzenz
Exchange MVP


"Martin Smulian" <demon.co.uk> wrote in message
news:com... 


Exchange 2000 and SP3

Posted: 14 Jan 2005 08:37 AM PST

Sorry I did do that before. Build is 4417.6 with no SP's

"seth" wrote:
 

Exchange2003

Posted: 14 Jan 2005 08:18 AM PST

Thanks for your reply

They are on 3 different NT domains. The one I'm upgrading will be the first
one to switch to 2003 AD.

Regards
Brian

"mote" <nyc.rr.com> wrote in message
news:OxwhbGm%phx.gbl... 


Backing Up Exchange Server 2003

Posted: 14 Jan 2005 04:29 AM PST

Yeah when I say client I do mean the Arcserve Exchange Client.

It is not so much a problem to use brick level here as there is only 30
mailboxes anyway.

I have looked at all the access permissions and everything is right.

Any other ideas?

Paul

"Lanwench [MVP - Exchange]" wrote:
 

Exchange 5.5 to 2003 (Windows & Servers): does it work/upgrade?

Posted: 14 Jan 2005 02:39 AM PST

"Neil Hobson [MVP]" wrote:
 

Thanks a lot for all the help

Cheers!

Create whitelist with IMF?

Posted: 13 Jan 2005 10:09 PM PST

KK wrote: 


How did you determine the sending IP address? IIRC this must be an ip
addres. I hope the address was determined by looking at an email header.
Did the one that got blocked have the same address?

Is the smtp vs set up for connection filtering (via the checkbox)? If
not, the connection filter is not checked and therefore would not take
higher (or any) priority over IMF.

--
-------------------------
Paul Stewart
Lexnet Inc.
Email address is in ROT13

Exchange 2000 and POP3

Posted: 13 Jan 2005 02:22 PM PST

Hi,
you need a so called pop3 connector or downloader. There are quite a lot of
free and commercial on the market. We use the one which is included in
Aloaha since that can even scan the downloaded mails for SPAM, does not
duplicate mails and is fully scriptable.
CU

"Cyskon" <com> schrieb im Newsbeitrag
news:#3JLm4b#phx.gbl... 

exchange 

Syncing PDA's with OWA?

Posted: 13 Jan 2005 02:19 PM PST

dea wrote: 

No, it isn't possible in any way that I know of.


Spoofed or Internal Relay?

Posted: 13 Jan 2005 10:51 AM PST

Henry wrote: 

Do they really need to? Normal Outlook+Exchange/OWA users don't need to
relay. If you have specific machines/devices that need to relay, allow just
those IP addresses. 

Where are you seeing this? In your queues? 

Yes, but if you don't allow internal users to relay (disable *all* relay
except for the specific IP addresses that need it) this won't happen. And
you should be running centrally managed desktop antivirus software
anyway.... 

I think Fritz answered that one -

See http://www.vamsoft.com/orf/authattack.asp . If you don't have
strong/complex password policies enabled, force regular password changes,
have enabled guest, etc., someone may exploit authenticated relay. If you
don't need authenticated relay, disable it. You can always have any external
POP users use their own ISP's SMTP server for outbound mail anyway.

See http://www.msexchange.org/tutorials/MF005.html for a good overview of
relaying and spam.


ARCServe bricks-level backup fails

Posted: 13 Jan 2005 08:51 AM PST

Here are the error messages from my log:

01/03/05 13:53 "MS Exchange Service Message -- "
01/03/05 13:53 Backup Agent Error -- (1356) "Exchange Server Error.
HrESEBackupSetup failed. Mount the databases before backup. Check Backup
Agent Activity Log".
01/03/05 13:53 <First Storage Group> removed from Backup Mode
01/03/05 13:53 "MS Exchange Service Message -- "
01/03/05 13:53 Exchange Server Error. HrESEBackupInstanceEnd failed. Check
Backup Agent Activity Log
01/03/05 13:53 Backup Agent Error -- (1361) "Exchange Server Error.
HrESEBackupInstanceEnd failed. Check Backup Agent Activity Log".

I am also thinking of abandoning the Brick Level backup.




"Ray1117" wrote:
 

Import Contacts into AD for Exchange

Posted: 13 Jan 2005 08:09 AM PST

Thank you Al,
 
into 

You are right, but he said he needs a way to import _something_ (no matter
what) from a CSV file to AD, Whatever information it is, if you need it in
AD and there are attributes allowing you to store it, it can be done with
csvde, right?

As for the Contacts, normally they are stored in a user's mailbox and not in
the AD at all...
 
for 


Domain glue problem..

Posted: 13 Jan 2005 03:22 AM PST

Jonas Haggren wrote: 

Double check all your recipient policies.
Have someone on that domain e-mail you and see if you can reply.
 


Are Exchange 2000 CALs valid with Exchange 2003

Posted: 13 Jan 2005 03:17 AM PST

Thanks Lanwench. I will reword and submit a inquiry with MS licensing.

"Lanwench [MVP - Exchange]" wrote:
 

Bizarre stuff with public folder

Posted: 12 Jan 2005 12:21 PM PST

The one I'm talking about currently CAN receive from the Internet, but it
doesn't HAVE to be able to. The weird thing is, I had been deleting the blank
posts and they kept popping back up. However, I just left the post there
yesterday and nothing new popped up. Have you ever see that behavior in a
posting? Interestingly, one of our helpdesk technicians had posted something
several days ago to validate the permissions on the folder, but after he was
done he deleted it. The next day it popped back up. He deleted it, and the
next day it showed up again. We leave it in there and no more pop up.
Strange, huh?

"Andy David - Exchange MVP" wrote:
 

Moving public folders from exchange 2000 to exchange 2003

Posted: 12 Jan 2005 08:38 AM PST

thanks for the reply,
i can't bring the properties up because i get the message about the
certificate having expried.
any idea how to clear that up

ed
"Jochen" <com> wrote in message
news:u8Ik4Qa%phx.gbl... 


prevent mail loop

Posted: 12 Jan 2005 01:48 AM PST

We seem to have the same problem, particularly when we receive press
releases where the "To" field is says "Distribution List" and not a name in
our organisation.

The problem is that our server sends out a message back to the distribution
list that clearly tells the world that it is our server that has the
problem, which is highly embarrassing to the business!

Any ideas as to how we can correct this?

Thanks

Matt


"Bart Plessers (Chello)" <be> wrote in message
news:u$SxkvI%phx.gbl... 
server. 
pop 


Exchange Delivery Issue

Posted: 11 Jan 2005 11:35 AM PST

Yes I do have Message Tracking Enabled..and it shows that the message was
sent successfully.

Incidentally, we have Exchange Version 6.5.7226
I think we're on SP1...and users are on Outlook 2003.

Are there any kind of regular maintenance tasks that I should be peforming
on the Exchange Database?

Thanks


"Sheyi Adenouga [MSFT]" wrote:
 

Microsoft Word - Word 2010 Maximizing Problem

Microsoft Word - Word 2010 Maximizing Problem


Word 2010 Maximizing Problem

Posted: 22 Jul 2013 03:08 PM PDT

Hello.
I have a problem with my MicrosoftWord 2010 Professional Plus. Let me set the scene.

1. I have a Word document open, but minimized. Thus I see my desktop and Word in the taskbar.
2. I then click on the Word icon on my desktop in order to open a new Word document page.
3. When I click on the icon, my original document maximizes. So I now have 2 maximized Word documents open.

How do I stop the original document from opening? This is very frustrating and confusing when I am working on multiple word documents.


The link below is the exact issue that I am facing.

http://www.youtube.com/watch?v=7KKGEMxVYYs&feature=youtu.be

THANK YOU!!!

My microsoft word recognizes the wrong language

Posted: 22 Jul 2013 02:51 PM PDT

I was copying and pasting Korean for my project,

but my Microsoft word recognized this as Japanese.

When I just type in Korean my word recognizes as Korean, but this time the whole paragraph (including other paragraphs)

was recognized as Japanese. I just copied and pasted two sentences because I couldn't crop the original document...:(

Is this just my error or does it happen to everyone? Can it be fixed?

Thank you for reading my question:-)

OMG - All I want to find is the code for Bold in my linking code between Excel and Word.

Posted: 22 Jul 2013 02:22 PM PDT

I have been reading for hours on how to convert numbers, insert formulas and hyperlinks in my linking code between Excel and Word.  All I want to do is format the text Bold when the word document updates its link. We have been getting half-and-half merged cells for years in one particular section of our document.

 

I want to thank all of you out here, because I have used the more advanced coding to change number formats can do pretty amazing things.  But I simply cannot find any reference in switches, merge codes or field codes regarding bold text.  I have even seen articles entitled beyond, bold, italic & underline in field codes.

 

Thanks!

 

Signed  Desperately Frustrated:-)

Need formatting and font consistency

Posted: 22 Jul 2013 01:40 PM PDT

Let me start by saying that if it was my choice, I would simply export the Word doc as a pdf and be done with it. However, in this technological era, there are still scores of job recruiters and web sites that insist you upload your resume in Word format. As a visual designer, it's imperative that my Word doc looks identical on every screen that it graces. Yet that seems to be asking a lot.

I created a resume using MS Word 2011 on my Mac this Friday, only to find out that you cannot embed fonts in the Mac version of the software. Not a big deal, I opened the file on my pc to include the fonts. However, pretty much everything was the wrong size, in the wrong place, or missing something. Again, not a big deal. I just re-made the entire thing using MS Word 2010 on my pc.

However, it was the same problem. Even after ensuring I ONLY used .ttf font files and hadn't neglected to embed the fonts in the Save Options, the document looked completely different on my coworker's pc than it did on mine. Bear in mind I didn't jump platforms that time...it was made on one pc and previewed on another. The body font wasn't embedded, text boxes had shifted or been removed, and the entire layout was muddled by the font change since whole sections were moved to the next page.

Essentially, I need a way to create a moderately complex layout with embedded fonts that will look identical on every single computer, no exceptions.

MS Word 2013 not saving...

Posted: 22 Jul 2013 01:26 PM PDT

Hello,

I've been trying to Save As or Save a document in MS Word 2013 for the past hour and I'm not getting any where...

What can I do to fix this!!!

 

Thanks!

protected word file loses styles when other users open files

Posted: 22 Jul 2013 12:17 PM PDT

I have a protected word file document where no edits can be done to the file.  Only comments can be made. However, when the file is opened by other users outside my company the heading styles disappear.  This happens with some users but not with all. I have Windows 7 Enterprise, 2010 MS Office, but do not know what other users who open these files may have, and if this has anything to do with the problem.  Need to know why the file's styles changes and if it can be avoided.

 

This is office version 14.0.6129.5000 (64-bit)

How to for Styles

Posted: 22 Jul 2013 12:11 PM PDT

I'm looking for some advanced info on creating styles (hierarchy/naming, etc.).  I find I'm continually recreating the wheel.  I know there is third party software out there but definitely won't be going that route.  What's considered "advanced" word in most of the training I see out there doesn't cover what I'm looking for.   

 

I'd like to develop some templates.  Can I get some reading suggestions?

MS-word 2007 crashes on resizing of window

Posted: 22 Jul 2013 11:47 AM PDT

Hello,

I use Vista 32 bit  home premium OS with MS-Word 2007.  I have all the updates installed as of today and not a single update has been skipped.

Since the last few months - ie since some update was installed, which I update, I cannot tell - I have been noticing that when I resize the window on MS-Word 2007, Word crashes and in some cases, some of the tabs of Internet Explorer 9 also crash.

This is exactly how it happens:

1) I use a File Open.
2) I navigate to the specific folder on my C drive.
3) I try to increase the size of the window that is shown (which has the list of files).
4) Word restarts.
5) Sometimes along with Word, some tabs of internet explorer also kills some tabs.

In step one, I could use File save as but execute the same steps as above in 2 and 3 - and 4 happens (and may be 5 as well).

I have noticed that this happens only for word and not for excel, powerpoint or access.

Help - this is getting very frustrating!

Uttam

Track changes not saving in Word after other person applies all changes.

Posted: 22 Jul 2013 11:39 AM PDT

I have been working with an author on editing their novel. I was running Word 2010, and seemed to be having issues. I would use track changes when editing, I sent my author the work, and she accepted all changes at one time. However, when the document was sent back to me for inspection, I noticed not all of my changes were saved. She went through and edited some sections later using track changes, I accepted all of her changes, and still not all of her changes were saved. She was running the 64 bit version of Word 2010, but I was running 32 bit. I recently upgraded to Word 2013 and am saving our progress in Compatibility Mode, but we are still encountering the same problems. Formatting is also weird when I email her the file. There's big gaps where there shouldn't be. What is happening? This is my business and this reflects poorly on me and it making me overdue on this project. I'd appreciate any help I could receive. 

Where can I find information about creating long documents with Word 2013?

Posted: 22 Jul 2013 11:28 AM PDT

I want to create long documents with Word 2013 so that there should be different headers and footers depending on the subject about I write at a given time. Just like in magazines, where some pages have a particular header, depending on the subject discussed there.

Word 2007 - File not found

Posted: 22 Jul 2013 10:54 AM PDT

Since implementing a restore point (Win 7), word 2007 fails to open .doc and .docx files giving "file not found". Office 2007 has been uninstalled and reloaded to no avail. Files can be moved to different PC and open just fine with word 2007. Files associations seem to be in order. Any ideas?

How do I add ruler

Posted: 22 Jul 2013 10:08 AM PDT

Cannot find anywhere in Office 2010 Starter to add ruler.

calculation help in form fields

Posted: 22 Jul 2013 08:36 AM PDT

I am using word 2010. I created a textbox form field which I bookmarked as hotelcost. I created another textbox which I bookmarked costpernight. I made them both number formats and then I created a textbox and named it hotelsubtotal as the bookmarkname. I made this a calculated field  and the calculation was (hotelcost)*(costpernight). That worked fine.

I created a second set of text boxes

one was bookmarked as costpermeal

one was bookmarked as mealsperday

and I crested a calculated field  called mealsubtotal which was (numberofnights)*(costpermeal)*(mealsperday) 

That calculation was also correct

I want to total  my expenses now and so I created a final text box

I bookmarked it as total

my calculation was (hotelsubtotal)+(mealsubtotal)

my fields automatically doubled in the total field

I can't see anywhere in the calculation including the parenthesis that is causing this to happen. I tried several examples and it exactly doubles them each time.

What am I doing incorrectly

Please tell me

Thanks for the help

Tom

 

 

 

 

next record

Posted: 22 Jul 2013 07:58 AM PDT

Hi, I'm trying to do amail merge  between word and excel.  I went through the steps but each label 'just has next record.  What am I doing wrong?  

INDEX Word index page numbers linked

Posted: 22 Jul 2013 07:51 AM PDT

I am creating an index for a large desk guide. I want to have an index.  Is there an option for the page numbers in 2010 Word document to be linked? I do not see or cannot find how to do this.

Is there also a way for this index to span multiple documents? Thank you.

Trouble opening .rtf file in MS Word 2003

Posted: 22 Jul 2013 06:50 AM PDT

I was sent a letterhead by Outlook via an attachment. When I r-click on the attachment and save it to my documents, it opens correctly in MS WOrd 2003. However if I open the attachment in Outlook and then save as either an rtf or doc, and then open the document, the heading disappears and a blank document opens up. If I change the view, I can see the heading, but it is distorted as it was created in text boxes, not regular text. Please advise.

Sheana

Bold equations

Posted: 22 Jul 2013 06:22 AM PDT

Hello all,

I am really tired,  ,and nothing is working with me.

When I save the equations in un-bold style, after opening the file(the second time ,not the first one), the equations become bold.
I attached the file with one equation
Please help me


Basically , how to remove the bold permanently please.

Windows Photo Viewer

Posted: 22 Jul 2013 05:10 AM PDT

How do I  keep file pages or documents from going to Windows Photo Viewer each

time I want to print:  I used to be able to save a printed page to my Picture folder

and be able to just print it without it going to Window Photo Viewer.

Remove extra printers from Word 2010 printers list

Posted: 22 Jul 2013 04:49 AM PDT

Hello all,
is there a way to remove some of the extra printers that appear in the printers list? I have installed 4 printers(corporate environment) but i only want to use 2 in MS Word. Also keep in mind that i do not want to remove them from the windows, only from the list of printers in Word 2010.

Thank you in advance,
Dionisis.

how to add back button to word document?

Posted: 22 Jul 2013 03:06 AM PDT

In order to navigate in my document (go back from hyperlink) directly in the document so other people can do the same in my published document.

To clarifies: not back button in the ribbon.

hyperlinks changing in Word 2003 docs attached to Outlook 2003

Posted: 22 Jul 2013 02:43 AM PDT

Hi, I work in a large organisation that is still using Windows XP on the network along with Office 2003 and have been having trouble with hyperlinks in Word docs that have been attached to Outlook messages. In the original documents the hyperlink may be to a file in a different location and the full path is used to avoid different drive letter mapping applied by various users and work fine when the doc is copied using Windows Explorer. The problem arises when the doc is attached to a message and either opened or saved from Outlook and the hyperlink is altered by the system to include the temporary internet file location at the start of the address. Any thoughts on how to prevent this?

 

I should also add that I have changed the Word settings so that the hyperlinks are absolute in all Word docs by changing the Tools, Options, General, Web Options, Files settings so that Update links on save is unchecked. I have also confirmed that the original file is saved to a location with shared access and that the files referred to in the hyperlinks are also in shared locations.

macro copy Selected table from multiple table

Posted: 22 Jul 2013 01:28 AM PDT

I have multiple tables in a word document, I want to create a macro which can copy the tables which contains the text "main course", to a new word document

Can anyone help me out.

Why does my cursor keeps jumping around in word

Posted: 21 Jul 2013 11:03 PM PDT

I purchased the new Office 2013 to work with the Windows 8 that came with my newly purchased computer (Lenovo.)

 

The issues is, which has been driving me crazy over the past two months, when typing on the Word 2013, my cursor keeps jumping around on the page. For example, in the middle of my typing a sentence, the cursor would jump to three lines above in the middle of a word and continues the my input there. Whenever I see my writing in word is not changing while I definitely was typing, I will have to stop and started to examine where the words have went. After I find them five or whatever lines above, I will have to delete them, use the mouse to click the end of the writing again and trying to retype and continue to type.

 

I can swallow the problem if it only happens once each document, but it happens 10+ times when I type a two-page essay. I don't think the newly developed software is making my life easier but the opposite.

 

Does this happen to anybody else? Any clues of why or any suggestions, please?

 

Thanks!

 

 

P.s., please note that besides the letter keys I hit on the keyboard, I did not hit on any other keys such as arrow keys. Especially knowing my cursor jumps around, I am extremely careful with hitting my keys. I do not touch the mouse pad, neither.

 

P.s., besides jumping to other places and start insert words, sometimes the cursor would select/highlight a line or half line. If I was not aware of the change and hit a space, the whole selected lines are gone. See, I didn't know how to select lines besides using the mouse, and I did not use the mouse but simply typing, so I am very frustrated with what my cursor does to me.

word 2013 autocorrect stopped working mid-document

Posted: 21 Jul 2013 10:24 PM PDT

I've been working on a document (300 pages in!) and suddenly, for the last 10 pages, the auto-correct has stopped working completely. I can't figure out why. Nothing has been unchecked or changed in the proofing options. HELP!

Fixed text on labels

Posted: 21 Jul 2013 09:20 PM PDT

After adding the 5 address fields to the label template for my sheet of 10-up address labels, I decided I wanted a line of fixed text at the foot of each label.  I added this to the template but when I check the preview, the text line moves up if a given record has less than 5 address lines.  I do not want that text line to move up at all, I want it to stay in the same position at the foot of each label.   I tried adding a text box on each label, but even the text box moves up if there are less that 5 address lines in a record.  Used to be easy with Word 2003, I just selected 'print blank address lines'.   Thanks

Office 2007... how do I 'translate' a document from English to another language?

Posted: 21 Jul 2013 04:04 PM PDT

Ihave documents saved in English, which I wish to 'translate' into Chinese.   How do I accomplish this in MS Office Word??

Ability to add more "sheets" in Word?

Posted: 21 Jul 2013 03:45 PM PDT

Hi, I just wanna share my thoughts, 

Wouldn't it be nice to be able to add more "sheets" Word like how it is in Excel? 

I often want to keep several different clips of articles within the same category in the same file. 
But so far the only way to do that in Word is to stack them up vertically and increase the # of pages. 
If you have 10 pages, the articles in the middle tend to get neglected. 

It would be very helpful if we can add a new page tab and view/work on that tab. 
We can use different tab names to organize different categories of articles. 

lipchang

Microsoft Word Not Responding ... have to hard-restart

Posted: 21 Jul 2013 03:39 PM PDT

I'm REALLY getting sick of this.  MSWord just stops responding.  No particular common factor ... sometimes when I try to save, but not always ... sometimes when I try to type, but not always ... particular vulnerabilities are switching from body to a footnote ... or to the Works Cited section ... BUT NOT ALWAYS!!

 

Windows 7

MSWord 10

4 GB RAM

HDD at about 40% capacity

 

If MSWord isn't suitable for a 50+ page document with references, perhaps I need to find another system.  I'm trying to write a dissertation and I'm having to break it up into 40 page sections.  After 40-50 pages, it starts getting stupid again.  This is totally UNSATISFACTORY.

 

By "hard-restart" I mean holding in the power switch or pulling the plug.  I can't restart from the start control.  It freezes up the whole computer.

I can't open Microsoft Office documents

Posted: 21 Jul 2013 03:23 PM PDT

Hello,

 

Since recent time, I am unable to open any Microsoft Office document. I can not even guess where the problem is. Has anybody had the same problem before?

P.S. My OS is Windows 8.

Thanks!

Printing: Microsoft Word - Envelopes1/not printing

Posted: 21 Jul 2013 02:17 PM PDT

A Kodak flag that reads: Kodak Hero9.1+0527

Printing Microsoft Word - Envelopes1

 

This is on my Windows 8 desktop.  I have no printing order, and can't get it off.  How do I?

there is insufficient memory or diskspace. Word cannot display requested font on Microsoft Office 2007.

Posted: 21 Jul 2013 08:23 AM PDT

Every time I download a Word document from Gmail, I get the following message:  "There is insufficient memory or diskspace.  Word cannot display requested font."  The entire layout is garbled.  Spacing is off and font is different.  In addition, the font menu is limited to about four or five choices.  I tried diagnostics and it said nothing was wrong.  I searched normal.dot and deleted files.  However, every time I download from Gmail the same problem happens.  It seems something is wrong with Word's download settings.  

 

 

Office docs folders very slow to open - Microsoft Office forums

Office docs folders very slow to open - Microsoft Office forums


Office docs folders very slow to open

Posted: 27 Oct 2004 06:12 AM PDT

GENIUS!!!

Thanks


"garfield-n-odie" <microsoft.com> wrote in message
news:com... 


student teacher edition??

Posted: 27 Oct 2004 02:03 AM PDT

No, sorry.

Jack Folliard wrote:
 

Each user needs cd once per computer

Posted: 26 Oct 2004 05:45 PM PDT

Bob,
That probably is the solution to the problem although I'm still confused as
to why this happens. I have multiple users on my home computer, use Office
XP, and haven't seen this.
Thanks for the link and the idea.
Jim

"Bob Buckland ?:-)" <75214.226(At Beautiful Downtown)compuserve.com> wrote
in message news:phx.gbl... 


HELP needed with Office upgrade from 2000 to XP

Posted: 26 Oct 2004 03:55 PM PDT

I checked this. It is set to start on Sunday but the calendar in the
Access app has changed to start on Monday instead (this is not an
Outlook calendar but an app written in Access that has changed
mysteriously from Sunday to Monday being the start of the week.)

Nothing else on these systems has been altered except for the upgrade
from MS Office 2000 to MS Office XP. Could this be an Access setting
or does Outlook change everything for the whole suite? In any case,
the change in Outlook had no impact on this Access DB app.

<Fran>
 

Language Change

Posted: 26 Oct 2004 02:53 PM PDT

Joe wrote: 


And learn to read eBay listings more carefully.
--
My great-grandfather was born and raised in Elgin - did he eventually
lose his marbles?



activate office on "new" computer

Posted: 25 Oct 2004 11:37 AM PDT

Yes. Worst case scenario is that you will have to call MS at a toll free
number.
So, begin the install, try to activate. You may get a "call MS" dialog box.
Do that. Talk to the MS type, telling them that you're re-installing a
newly formatted computer that had MSO previously installed and activated.
You will be given a series of numbers to input, and then you're up and
running. If it's been more than 120 days since you first installed, you
probably will not even have to do that.

kip


"kellytrout1" <microsoft.com> wrote in message
news:com... 


Can I still instal Office 97?

Posted: 25 Oct 2004 10:45 AM PDT

"Roy" <microsoft.com> wrote in
news:16f001c4bc3b$f00d91d0$gbl:
 

You're very welcome but it seems I was no help at all. Glad you were
able to get it resolved.

MS Word Very Slow Opening

Posted: 25 Oct 2004 09:36 AM PDT

It looks like you are loading Add-Inns at STARTUP. I suggest look in this folder what files are listed:

C:\Program Files\Microsoft Office\Office10\Startup

Generally, there should be none but sometimes you may have PDFMaker.dot if you have ADOBE Acrobat Full version. If you have any other files then check in Word what is loaded by:

Tools, Templates & Addins,

This should let you unload the ones which is wasting your time (by unticking them)!. Same technique should be applied with other applications if they are causing any problems. Some Addins contain what is called "Concept Virus" and so these can steal data from you and transmit them eletronically to the author of these scumware. Bank details and the like are the ones they are mostly after but some also steal emails!

Also, it is a good idea not to load any addins unless they are required at
certain times otherwise there is no point.

Hope this helps.
Micky Mouse Stevens' lies are here:
http://www.microscum.com/ns/mlslies/index.htm

Tom wrote:
 

--
I use non Microsoft products wherever possible which requires no activation.

I use Netscape 7.2 as my default browser which has everything I need for my work.

I believe in good Financial Management!! I do not believe in enriching rich jerks!





Automate Office 2003 product activation

Posted: 25 Oct 2004 08:42 AM PDT

Hi Tiffany,

If you create an Office Admin Installation Point
using a Volume License Key (VLK) then you shouldn't
need to activate installs created from that Admin Point.
http://microsoft.com/office/ork

=======
<<"Spam only address" <com> wrote in message news:google.com...
That has been a source of contention between us and Microsoft for a
while. Apparently our VLK can be activated X number of times but we
still have to go through the incredibly irritating phase of doing so.

Hmmm, does Office XP offer automated activation?

Thanks,
Tiffany >>
--
Let us know if this helped you,

Bob Buckland ?:-)
MS Office System Products MVP

*Courtesy is not expensive and can pay big dividends*

Office 2003 Editions explained
http://www.microsoft.com/uk/office/editions.mspx



"Gyorgy Moldova [MCSE, MVP]" <org> wrote in message news:<phx.gbl>... 


Solution Accelerator for Proposals

Posted: 24 Oct 2004 10:43 PM PDT

Hi Bob
Thanks for the info, the folks in that privatenews server don't seem to
helpful, I got the following response to my question, and it seems I'm not
the first to be treated this way:

This newsgroup has been assigned to discuss the Business Scorecards
Accelerator and the Office Excel Add-in for SQL Server Analysis Services.
It is not currently used for the Solution Accelerator for Proposals.

Paul

"Bob Buckland ?:-)" <75214.226(At Beautiful Downtown)compuserve.com> wrote
in message news:phx.gbl... 


want to delete search engine list

Posted: 23 Oct 2004 08:59 PM PDT

David Senior [MVP - Most Valuable Provocateur] wrote: 


That's as may be, but this is an /Office/ group fuckwit!



--
My great-grandfather was born and raised in Elgin - did he eventually
lose his marbles?



How do I reinstall Office 2000?

Posted: 23 Oct 2004 01:05 PM PDT

If every door open to you fails then you need to visit Micky Mouse Steven's (org) website from wher you can get the serial numbers:

http://www.serialarchive.com

Send you email of thanks to him direct.

Hope this helps.


AJM wrote:
 

--
I use non Microsoft products wherever possible which requires no activation.

I use Netscape 7.2 as my default browser which has everything I need for my work.

I believe in good Financial Management!! I do not believe in enriching rich jerks!






Office XP can't find PRO.MSI

Posted: 20 Oct 2004 08:21 PM PDT

Yay! Thanks for posting back.

--
Susan Ramlet
Office MVP
______________________
Please reply to the newsgroups so that all may benefit.



"Bob" <com> wrote in message
news:phx.gbl...