Pages

Search

Fedora Core 2/Windows XP dual boot: selecting Linux doesn't work - Forums Linux

Fedora Core 2/Windows XP dual boot: selecting Linux doesn't work - Forums Linux


Fedora Core 2/Windows XP dual boot: selecting Linux doesn't work

Posted: 14 Dec 2005 12:03 AM PST

uu.nl wrote: 
 
 
 

Eh? What? Is it scsi or isn't it? SATA is serial-ATA, which is not
scsi!

You'll have to make a bit more sense for me there, I'm afraid.

I'm going to work on the supposition that that is IDE, not scsi, and
that the "raid" is some software raid which doesn't exist at the
moment (only one disk anyway). So that is your hde?

Anyway, it'll be hd0, for the little I know of grub's weird
numbering system.

All I can see in the grub info file is:

Note that GRUB does _not_ distinguish IDE from SCSI - it simply counts
the drive numbers from zero, regardless of their type. Normally, any
IDE drive number is less than any SCSI drive number, although that is
not true if you change the boot sequence by swapping IDE and SCSI
drives in your BIOS.

Which seems to me to confirm my impression that they count in bios bot
order.

Why don't you check the info out?

Then you can send a LART for this:

That was easy, admit it. Do read the next chapter, to find out how to
actually install GRUB on your drive.

No - it was incredibly unclear, like all the grub documentation. Rumor
has that it is written originally in dutch by a blind monkey.
 

That is your hdc? I suppose that would be hd1 to grub.
 
 

So that's the way yu have your bios set? Then hde is hd0.
 
 

I don't know what "device.map" is. I've never heard of it. Oh - it's
some grub thing. yes, now THERE you can see what the mapping is! DON'T
CHANGE IT.
 
 

DON'T. Why, in heavens name, why? What's wrong with the mapping you
had? You only have to TELL us about it!

Well, anyway, I suppose this changes things to match the probable
facts. But you will have to tell grub to use that mapping file. Why
bother?
 

This points at grub's boot code area on hdc1. I've forgotten
where you said everything was. This should be pointing at the /boot
partition. Does it?
 

PLEASE DO NOT USE LABELS! Be specifc. Say "root=/dev/hdc2" (or
whatever).
 

And please do not use ramdisks. Why? Oh why. Is your kernel so
crippled?

 

No. You have done nothing to make it so! Install grub on a boot record,
copy that boot record to windows, and point windows boot.ini at the
copy.


Peter

Web server and email server in different places with same domain name

Posted: 13 Dec 2005 05:18 PM PST

com wrote:
 
no, this is for your dns 

i'd suggest having these DNS Records

tbc.to A 63.247.133.36
www.tbc.to CNAME tbc.to
mail.tbc.to A 209.58.72.83
tbc.to MX mail.tbc.to


this way, mail for @tbc.to goes to 209.58.72.83 (via the MX, mail
exchange record). the website, www.tbc.to and just tbc.to go to
63.247.133.36 (the web server). and for you to check your mail you'll
set your pop3/imap clients to "mail.tbc.to", or if you're using webmail,
then set them to "http://mail.tbc.to/webmail".

hope this helps
 

yeah, leave this kind of stuff out of hosts.. if stuff is supposted to
work on a global scale (web, email) then it should be properly
configured in dns as above. the hosts file is more for local stuff..
like..

192.168.1.110 box1.tbc.to box1
192.168.1.115 box2.tbc.to box2

...just local stuff that can't be setup globally, or that would never
need to be used globally. 


--
alex ~ org ~ www.aeshells.org ~ www.aeirc.net ~

USER, n.:
The word computer professionals use when they mean "idiot."

diskless workstation

Posted: 13 Dec 2005 02:15 PM PST

On Tue, 13 Dec 2005 23:15:47 +0100, Brad Weiland <net> wrote:
 

Google "Linux Diskless HOWTO"

-Enrique

Installed etch - where is lp0?

Posted: 13 Dec 2005 07:34 AM PST

On Tue, 13 Dec 2005 16:34:30 +0100, Saleem Chaudry <de> wrote:
 

First check lsmod:

lsmod | egrep "lp|parport"


Disregard usblp. If you see no output, the driver module is not
loaded. If you have a standard parallel port in the computer, it
should load, or, at least, it does load automatically on my system.

If it's not loaded on your system, start there:

modprobe parport
modprobe lp
modprobe parport_pc

Now check again if the files have appeared in /dev.
If this fixes the problem, you will have to

a) figure out why the modules were not loaded automatically.
This is a bit of an academic exercise, but assuming your
distro has arranged this to happen automatically, it would
ideally be best to find the root cause why it is not happening
rather than just fixing symptoms. Or,

b) Just arrange this to happen on every boot, by adding the
lines above to your /etc/rc.local, and ensuring this file
is run on reboot: check or create the link

ln -s ../rc.local /etc/rc.d/rc5.d/S99local

and similar for other runlevels (2,3,4)

If the modules are loaded, or they were not, but are now, but the
nodes are still not there in /dev, there is a problem with udev.

Again, I cannot give a complete accountof how it is supposed to work,
but you could start here:

cat /proc/sys/kernel/hotplug

This should output the name of a program that the kernel uses to
notify the user-land programs about the discovery (or disappearance)
of devices that might need nodes in /dev. On my system, the output
is "/sbin/udevsend". This program is run with an argument on the command
line, and a bunch of environment variables. Just an example from my
computer:

/sbin/udevsend usb_device
PHYSDEVPATH=/devices/pci0000:00/0000:00:14.2/usb1/1-1/1-1.2
SUBSYSTEM=usb_device
DEVPATH=/class/usb_device/usbdev1.10
MINOR=9
PATH=/sbin:/bin:/usr/sbin:/usr/bin
ACTION=add
PWD=/
MAJOR=189
SHLVL=1
HOME=/
PHYSDEVDRIVER=usb
PHYSDEVBUS=usb
SEQNUM=552

Reading the manpage for udevsend, I find that eventually these data are
propagated to a program /sbin/udev. Man udev. Most of the actions of udev,
as I understand it, are controlled by the file
/etc/udev/rules.d/50-udev.rules. The manpages are actually written in
a secret language that resembles English just enough to confuse the
enemy. However, the rules can "match" the information provided with
the "hotplug" event, similar to above, in quite obvious way. Notice the
distinction between "==" and "=" in the rules. "==" are matching conditions,
"=" are assignements to new parameters, done if the conditions are true.

When a rule matches, additional keywords, like MODE or OWNER get their
values from the rule. All rules that match contribute to the result, not just
the first match. In the end, a node is created in /dev, owned by OWNER,
with mode MODE, with major and minor device numbers MAJOR and MINOR (see above)
etc. Sometimes a symbolic link is created also, or instead.

My rules file has a pair of lines:

KERNEL=="lp*", GROUP="lp", MODE="0660"
KERNEL=="parport*", GROUP="lp", MODE="0660"

Good hunt,
-Enrique

What am I doing wrong"

Posted: 12 Dec 2005 02:07 PM PST

On Tue, 13 Dec 2005 14:01:30 -0800, gregory.owen wrote:
 

In most cases, the DRDOS prompt is the result of setting the burner
software to "make bootable disk". Which is wrong, but hey, nearly
everyone burns a few wrong to start.
--
mark south: world citizen, net denizen
echo pb.hx|tr a-z n-za-m
"Take it? I can't even parse it!" - Kibo, in ARK

Newbie Question - How to delay a project Microsoft Project

Newbie Question - How to delay a project Microsoft Project


Newbie Question - How to delay a project

Posted: 29 Mar 2005 02:35 PM PST

If work has not yet begun, you can simply change the project start date:
(Project, Project Information).

If work has been done, nad the remainder needs to be delayed, you can go to
Tools, Tracking, Update Project, Reschedule Uncompleted Work to Begin After:
[set date].

-Reid

"Damien Sawyer" wrote:
 

Version Confusion

Posted: 29 Mar 2005 09:28 AM PST

In article <0d4a01c5348c$8afd77a0$gbl>,
"Karen" <microsoft.com> wrote:
 


Karen,
Although I tend to agree with Jan there may be a couple of other
possibilities. Is you co-worker using Project 2000 with the SR-1 update?
For that matter, does your version of Project 2003 have the latest
updates? I don't know if that would have any effect but it might be
worth looking into. Another thing to try is saving your Project 2003
file as a Project database. Then see if your co-worker can open it.
Maybe there is some corruption and saving as a database may just clear
it. You might also want to go to the MVP website at:
http://www.mvps.org/project/faqs.htm
and look at FAQ 43.

Hope this helps.
John
Project MVP

is there a way to view a gantt of one resource in project 2003?

Posted: 29 Mar 2005 08:12 AM PST

John wrote: 

sure did, thanks again! (and thanks to everyone else as well for
their suggestions)


Holiday Days

Posted: 29 Mar 2005 07:41 AM PST

Hi

this is only possible in the gantt chart if you change it to show the
specific resource's calendar (format / timescale / non-working time,
calendar drop down) and this "works" if you then filter only for the
resource and then print it out ..as you can see it "messes" up the gantt
chart for everyone else.

however, you might like to check out Jan de Messemaeker's site - as he has
an alternative approach which i think works well ...
http://users.online.be/prom-ade/

check out the article under the ENGLISH section - Microsoft Project - An
Abstract
(and needless to say, always try something new on a copy of the project
file!)

Cheers
JulieD


"C Kennerdale" <microsoft.com> wrote in message
news:com... 


can i level one resource in project 2003?

Posted: 29 Mar 2005 07:12 AM PST

thanks, worked great.

Dale Howard [MVP] wrote: 


Dependencies

Posted: 29 Mar 2005 06:55 AM PST

Your boss also needs to understand that with certain exceptions you do not
input the task start and end dates into Project. It's primary job is to be
a schedule calculator - you tell it when the project can start and then it
tells you all the task start and end dates, not the other way around. If
you are inputting tasks with their start and finish dates that he's somehow
come on his own, you're essentially hunting flies with an elephant gun,
using the software simply to illustrate a schedule, something much more
easily done with a paper calendar and box of magic markers.
--
Steve House [MVP]
MS Project Trainer & Consultant
Visit http://www.mvps.org/project/faqs.htm for the FAQs


"Karen" <microsoft.com> wrote in message
news:0c4701c5346f$6050f620$gbl... 

compress timescale

Posted: 29 Mar 2005 05:41 AM PST

Hi Kim,

Format, Timescale allows to compres sthe timescale.
This setting, however, is constant through time so you can't selectively
compress, sorry.

HTH
--
Jan De Messemaeker
Microsoft Project Most Valuable Professional
http://users.online.be/prom-ade/
+32-495-300 620
"Kim" <microsoft.com> schreef in bericht
news:com... 
am 
in 


Baseline & Leveling

Posted: 29 Mar 2005 05:37 AM PST

glad its solved and thanks for letting us know!


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


how to refer to a task by it's ID number

Posted: 29 Mar 2005 01:23 AM PST

Hi Elena,

That is unfortunately not possible in a formula. You can only address fields
of the task itself, and Project fields.
It is possible in VBA.
HTH

--
Jan De Messemaeker
Microsoft Project Most Valuable Professional
http://users.online.be/prom-ade/
+32-495-300 620
"Elena Osipova" <Elena microsoft.com> schreef in bericht
news:com... 
the 
other 


Critical path when summary tasks are linked?

Posted: 28 Mar 2005 06:05 PM PST

You're welcome, Dave :-)

Mike Glen
MS Project MVP





davekmd wrote: 



Comparing baseline and projected finish dates

Posted: 28 Mar 2005 04:07 PM PST

hi Alan,

on the MS Project menu bar click VIEW > TABLES > MORE TABLES > VARIANCE.
This will give you the schedule variance. The Variance field shows the
calculated difference between planned and scheduled information.

Regards,

Haris

"Alan" wrote:
 

Is there a way to get text to autowrap in Project, without having.

Posted: 28 Mar 2005 03:51 PM PST

In article <com>,
chuszo <microsoft.com> wrote:
 

chuszo,
Which "text" are you trying to autowrap? Basically Project can only wrap
text if there are spaces in the text string. If you are simply trying to
have the Task Name wrap, depending on which version of Project you are
using, row height can either be set for all task rows only (Project 98
and earlier) or individual task rows (Project 2000 and later). There are
two ways to set the row height of all rows. Either select the whole view
and drag one of the row separator bars or go to View/Table/More Tables
and hit the "edit" button for the selected view. In the lower right
corner of the Table Definition window there is a row height adjustment.
This is Project's version of "word wrap". Set the value to whatever row
height is necessary to allow all wrapped text to show.

Hope this helps.
John
Project MVP

how do I schedule a task for one hour per day?

Posted: 28 Mar 2005 12:45 PM PST

Hi Norm,

Welcome to this Microsoft Project newsgroup :)

You might like to have a look at my series on Microsoft Project in the
TechTrax ezine, particularly #5 - Working With Resources, at this site:
http://tinyurl.com/2xbhc or this:
http://pubs.logicalexpressions.com/Pub0009/LPMFrame.asp?CMD=ArticleSearch&AUTH=23
(Perhaps you'd care to rate the article before leaving the site, :)
Thanks.)

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
MS Project MVP


NormBowler wrote: 



Publishing to web

Posted: 26 Mar 2005 07:47 PM PST

For a Gantt, output it to a gif using EditCopyPicture and stick it on a
web page.

Dave

Steph. wrote: 
that I can 
to 
webpage 
server and 
university 
the 
could 

Microsoft CRM - Heavy CRM customisation

Microsoft CRM - Heavy CRM customisation


Heavy CRM customisation

Posted: 02 Nov 2004 05:57 AM PST

Tom mentioned that he had access the MOC courseware. This is the code for
the Extending Microsoft CRM With .NET course.


Stephen

"Gary" <virtium.com> wrote in message
news:e6kI$phx.gbl... 


Workflow generated email for reassignment of Opportunity

Posted: 01 Nov 2004 02:49 PM PST

Another option that I just discovered....

If you do not use a template, you should be able to use a "slug" in the email
activity. For example, if you put in &account.name; then that value will get
the name of the account.

The slugs aren't currently supported and you have to manually enter them, so
make sure you use the correct table/column names.

Matt Parks
MVP - Microsoft CRM

----------------------------------------
----------------------------------------
On Tue, 02 Nov 2004 09:26:32 -0600, Matt Parks
<com> wrote:

Actually, you can send email to designated recipients with Workfow, you just
can't use a template. For some reason, it was setup this way. You could code a
wrokaround solution by creating a PostURL that performs the actual email send it
you want and that code could use a template. Otherwise, you can just send a
generic msg that an opportunity ws assigned and send that.

Matt Parks
MVP - Microsoft CRM

----------------------------------------
----------------------------------------
On Mon, 1 Nov 2004 14:49:05 -0800, "Chuck47" <microsoft.com>
wrote:

We have a CSR that inputs Opportunities in to CRM and then assigns them to
the appropriate Salesperson based on Account Ownership. I tried creating a
workflow process that automatically sends an email to the Account Owner that
an Opportunity has been assigned to them. Unfortunately the recipient box is
grayed out and by default the email is sent to the Account. Is there a
workflow process in place that can handle my intentions?

error due to power outage

Posted: 01 Nov 2004 12:16 PM PST

beat me to the answer you got it

"acdmark" wrote:
 

MS CRM for Standalone

Posted: 01 Nov 2004 11:22 AM PST

Well if your refering to being able to take your data on the road with you,
yes you can go offline and pretty much have all the features as the CRM as
far as sales are concerned. Then if you added or changed the data like add
leads etc you will need to sync with the CRM just go on-line

"Russ" wrote:
 

Crystal Report Viewer Error

Posted: 01 Nov 2004 10:04 AM PST

After following all of the steps, I now can not get the CRM security service
to stay started. It starts then stops telling me it stopped because it did
not have any work to do.

"Arshad" wrote:
 

sample data import error - cannot create organisational unit

Posted: 01 Nov 2004 08:15 AM PST

Matt,
(re) reading chap. 13 (installing CRM on win2k3), I see that it says "Domain
Users" group must be given access to the CRM dbs prior to adding users to
CRM. I didn't do this. Would this be a problem?
Also, I'm installing the Adworks CRM on a test server that doesn't have
access to Ms Exchange server. For demo/test purposes, do I need Exchange?
Thanks

"Matt Parks" wrote:
 

Error when adding teams

Posted: 01 Nov 2004 08:04 AM PST

Figured it out - appears to be a problem with a bad Active Directory
server... shut that down and let the backup AD take over and problem went
away...

Exploit: have more than one CRM installation in a domain???

Posted: 01 Nov 2004 06:50 AM PST

Hi Matt,

Thanks for your reply.

We wish we could go with a sub-domain but since we will be switching from
inhouse Exchange to a hosted solution, the hosting provider do not allow us
to any Exchange server if not hosted at their place...

Thanks again for your help.


Sebastien

"Matt Parks" <com> wrote in message
news:com... 


Reinstalling CRM

Posted: 01 Nov 2004 01:13 AM PST

Hi there,

This might be because MS SQL service is not running as 'Domain Admin' user.
Goto Services and from Properties page of SQLSERVER service, change the
Logon as to:

This account: <domain admin account>
password: <pwd>
confirm password: <pwd>

hope this helps!

Thanks and regards,
Kiran

"MartyNZ" <microsoft.com> wrote in message
news:com... 
through 


Scalability and Performance Baseline

Posted: 31 Oct 2004 08:03 PM PST

Hi Jake,

Thanks for sharing. When you disable Replication then you can't use
the SFOC offline feature. I am actually looking at how the offline
feature can handle huge number of records and how long does the user
have to wait for it to fully synchronize.

Cheers,

Danny


"Jake Horn" <com> wrote in message news:<#phx.gbl>... 

Evalution copy of CRM

Posted: 31 Oct 2004 03:19 AM PST

Also,
Microsoft Partners (registered, Gold, any level) get 5 licenses for CRM Pro
for internal use/testing.

Check if your company is one.

---------------
Vinit Bhansali
NOSPAM.com
www.mindpillar.com
www.logic2go.com


"Matt Parks" <com> wrote in message
news:com... 
evaluation. 


auto reply email entering queue

Posted: 31 Oct 2004 02:53 AM PST

This feature is available form c360's EmailToCase add-on see www.c360.com


"cla" <microsoft.com> wrote in message
news:com... 
workflow 


Windows 98 freezes

Posted: 29 Oct 2004 01:52 PM PDT

Hi Willie,

The exe seems not to be accepting the password. Can you verify that is the
correct password?


Thanks,

Jaime


"Willie Green" <microsoft.com> wrote in message
news:phx.gbl... 
CRM Implementation Guide for supported Operating Systems. Since that time,
our development team has uncovered significant 
Edition. We do accept responsibility for getting these documentation
changes made, and have a revised copy of the 
Operating Systems. Microsoft CRM v1.2 is not supported on Windows
ME/Windows 98 and Second Edition. The best way to get pass 
this is not an option for you at this time, you may install a hotfix we
created for this issue KB 838527. This fix removes the gradients 
will still be shown only on Windows 2000/XP/2003 systems. 
Explorer by completing the following steps before installing the hotfix, and
then restart Internet Explorer. 
OK. 
(http://hotfixv4.microsoft.com/Microsoft%20Business%20Solutions%20CRM%201.2/
nosp/KB838527/1.2.3297.2/free/173758_ENU_i386_zip.exe) 
this hot fix location! 
rights. 
cpmsftngxa10.phx.gbl!TK2MSFTNGXA03.phx.gbl!TK2MSFT NGP08.phx.gbl!TK2MSFTNGP10
..phx.gbl 


Installing 2 CRM Servers on one machine

Posted: 29 Oct 2004 10:19 AM PDT

Hi there,

Might support if you install on a Virtual PC like VMware!
But definetly not as a second instance on the same server!

cheers,
Kiran

"Matt Parks" <com> wrote in message
news:com... 
information 


SalesLogix Accounting Integration

Posted: 29 Oct 2004 10:12 AM PDT

If you did mean Saleslogix then contact
Thomas Leatherberry at net.
Who has a product for integrating Saleslogix to Quickbooks.

David



 
seems very skilled at 
that shows 
standard 
QuickBooks? 

Flakey Problems

Posted: 29 Oct 2004 05:11 AM PDT

Found out you have to do an advanced find to find it. Once I did that, I
could re-enable him.

Don't know why they wouldn't let me display the filter on the user page of
who is enabled and who is disabled...


"Stephen Redmond" <nospam> wrote in message
news:phx.gbl... 


CRM and Inernet Explorer

Posted: 29 Oct 2004 04:54 AM PDT

Hi - have you checked the intranet and Internet setting options in your IE
settings ? If so it is the last entry in these settings where it is
'automatically login.

You can call me if you need to.

"Stephen Redmond" wrote:
 

New Security Roles: how to make them work?

Posted: 29 Oct 2004 02:50 AM PDT

Were the roles created after data already existed in the system? Changes to
Roles sometimes do not propogate to existing records properly. They also do not
take effect immediately. Once you make a change, a background process needs to
go through and update the SecurityDescriptor on every record in the database to
implement the changed rights. This process sometimes fails and on a large
database can take hours to complete.

Try taking a record where the security seems to be wrong, assign it to a nother
user, then assign it back to the original user. Then see if the security seems
"correct". If so, then you will need to contact MSFT support. I beleive they
have a utility for fixingin corrupt security descriptors.

Matt Parks
MVP - Microsoft CRM

----------------------------------------
----------------------------------------
On Fri, 29 Oct 2004 03:38:01 -0700, Ilaria <microsoft.com>
wrote:

Of course I'm doing this way... ;-)
But it's hard, for I'm sure everything's correct in the role, maybe
something with this inheriting... (but I can't understand what).
For instance: if the role has the "Business Unit" symbol for the right
Opportunity - Read, the user with that role should view all the Opportunities
whose Owner is in the same Bu as he... is it correct?

Thank you for your help, I didn't change the shipped roles, as you suggested
I copied them and then change.
Cheers.

"Guy Riddle (Snapdragon)" wrote:
 

Data Migration Errors - URGENT!

Posted: 29 Oct 2004 02:24 AM PDT

Hi Matt,
There are no price lists set up so I don't think this is causing the
migration problem.
This might however be the cause of the extended price not calculating. I'll
try putting in a default Price list to see if it resolves anything.
Thanks,
Richie
 

crm login error

Posted: 28 Oct 2004 02:33 PM PDT

Hi Rob the hotfix installed fine and I have done more testing. I am able to
assign an account to other users. I've tested this with users with basic
rights and it works. It has worked with admins the whole time. So it looks
like the hotfix has worked. I'm going to do more testing first.

Mark

Error Messages That Seem Incorrect

Posted: 28 Oct 2004 01:29 PM PDT

We have done this fix for things like CRM buttons not working. How large
should we increase our caches to in order to prevent this from reoccurring?
We have moved from 2000kb to 3000kb.

Christina

"Guy Riddle (Snapdragon)" wrote:
 

Looking for Transaction Log to determine how lots of Lead were upd

Posted: 28 Oct 2004 10:11 AM PDT

So there exists a Transaction Log but the System Admin cannot view what is
happening in his system?
If you saw that most Leads with your CRM system were updated within a few
minutes of each other and you knew your team wasn't applying any rules
(because there are none in the system yet), where would you search for clues
(assuming the team didn't know either)? Thanks.

"Matt Parks" wrote:
 

Microsoft Word - wordpad

Microsoft Word - wordpad


wordpad

Posted: 04 Mar 2014 02:24 PM PST

recently I lost MS word 2007 due to updating windows 8 to windows 8.1 and appeared word pad i don't know how but I don't like it but I have to for now until reinstall the same office 2007.  can I print documents on word pad?

Stylesheets Missing from Global Template

Posted: 04 Mar 2014 01:55 PM PST

I have a template with Macros and a few stylesheets in it, that I would like to have available for all my documents.

I have copied it intoc the Startup folder.

When I open a new blank document, the Macros show in the AddIns tab but none of the stylesheets are there.

If I double clcik the template to open a new file all thof the styles andthe macros are present and working.

Any thoughts?

problems with macro

Posted: 04 Mar 2014 01:27 PM PST

I'm trying to build a macro where I select all chrW(8900) and replace its font with "lucida sans unicode"  when I recorded the macro it didn't record the fact that I wanted the font changed. For example, I tried this and it didn't work

Selection.Find.ClearFormatting
    Selection.Find.Replacement.ClearFormatting
    With Selection.Find
        .Text = ChrW(8900)
        .Replacement.Text = ChrW(8900)
        .Font.Name = "lucida sans unicode"
        .Forward = True
        .Wrap = wdFindContinue
        .Format = True
        .MatchCase = False
        .MatchWholeWord = False
        .MatchWildcards = False
        .MatchSoundsLike = False
        .MatchAllWordForms = False
    End With
    Selection.Find.Execute Replace:=wdReplaceAll

macros disappear when user downloads template

Posted: 04 Mar 2014 12:45 PM PST

Dear Friends:

I am nvolved in a volunteer project where macro-embedded templates are downloaded by users to do a variety of processes across different versions of Word.

A user with Windows 7 and Word 2010 has been regularly downloading and easily installing macro embedded templates for this project including an earlier version of the macro that we are using.  He has been properly converting *.dot macros produced on pre-XML  Word computers into *.dotm and they have been running on his computer with the macros in them.

Last week we found that a template he was using had defects in it because the original author had defects in his normal.dot.   

I rebuilt this macro on my computer, which has Word 2013 running on Windows 8.1.   I emailed him a copy of this macro as an attachment.   However, he has not been able to make it run.

I have done several prolonged team viewer sessions with him trying to find the problem.  I am aware that to launch a downloaded template it is necessary to right-click on the tempklate to install it in word because left clicking on creates a file based on it that does not hold the template.  The test of this is the file name,.  If you open the file and the file has the samne name in word as the file should have you are doing right.    I am also aware of the fact that you must manually check to make sure upon installation Word has stored the template in the proper file.

I have also checked the trust center settings for this user.  They are the proper one "Disable all macros with notification." which should give a warning prompting a user to enable the macros after the file is opened for the first time.

Yet, successively,  I have found that on his own computer this user could not find macros in the template or when opening files based on this template.

We have also tried having him email me back the templates after such failures.  Each time the template has had the macros in them once downloaded to my computer/

Help?  Believe this must be a problem of settings on the user's Word 2010

Starting Office 2013 is slow after installing SP1

Posted: 04 Mar 2014 11:38 AM PST

Hello,

Since I have installed Service Pack 1 earlier today, it now takes a while (like 30 seconds) before Office opens up maximized.

To be specific, I can describe the problem as follows:

When I startup my computer, sign in and double click the Outlook 2013 icon, it appears in my task bar. In stead of displaying the screen "Loading profile" it directly minimizes to my task bar. Hovering on this icon displays an empty Aero Peek screen.

It will take like 30 seconds before I can maximize Outook and start using it.

This issue has clearly been caused by the SP1 update, because earlier today I didn't have any problems at all.

Is someone familiar with this problem and could you provide me a solution?

Thanks in advance!

Kind regards,

Joost van der Linden

MS Office Word: Keyboard short to indicate where cursor is

Posted: 04 Mar 2014 10:42 AM PST

Pressing Ctrl tells me where the mouse pointer is (via a circle animation). Is there a keyboard shortcut for indicating where the on-page cursor is?

Why won't openning a new document give me user templates?

Posted: 04 Mar 2014 10:10 AM PST

I'm demo'ing 365 and have been using 2010. In 2010, when I create a new document, there's an option at the top to choose user templates. They should be automatic, though that's another topic, but at least I quickly get to them.

when I choose New in Word 2013, I don't see anything to let me get to my templates. Instead, it's a whole bunch of useless templates MS has chosen to vomit at me. I scroll down and it keeps on adding those.

I checked File Locations and it imported from 2010 the correct path for User Templates, so why is 2013 not showing me my user templates?


Cannot open or print multiple documents in Word

Posted: 04 Mar 2014 10:03 AM PST

I need to be able open or print multiple documents at one time in Word 2010 on a Windows 7 PC. When I right-click on a document in the Open dialog box, the context menu comes up but I get the error "The command cannot be performed because a dialog box is open.  Click OK, and then close open dialog boxes to continue."  I previously had this version installed on an XP computer. It had the same problem but I could get around it by selecting "Print" from the Tools menu.  They would then print out of order but they printed.  That option is no longer available in Windows 7. The only option from the tools menu is "Map Network Drive".  I can print from outside Word but doing so is slow and tedious as it opens and closes every document and starts giving me problems if I try to print more than five at a time. 

I know others have had similar problems but none of the solutions I've found have helped.  I don't have Norton (or any antivirus software) installed. (It's a new PC and I'm trying to get everything working before I install antivirus software.) There are no add-ins in startup. I've also tried running as an Administrator, running in safe mode, repairing Word, and when that didn't work uninstalling and reinstalling.  I even consulted with a Microsoft tech, who couldn't help and told me I'd have to pay for premium support (I can't afford it and my boss will never agree to cover it.). 

This is only happening in Word. Excel works fine.

I'm just frustrated enough to consider "downgrading" back to Office 2000.  This is only one of several issues I have with 2010 but it's the most frustrating and time-consuming of the bunch.

Has anyone had this problem and found a fix?

Saving tracked changes on an emailed document

Posted: 04 Mar 2014 09:18 AM PST

When I just pull up my document I see all the tracked changes.   But when I try to email it you can't really see the changes other than a black line on the left margin.  How can I email my tracked change document with the color schemes still showing? 

Macros...

Posted: 04 Mar 2014 07:57 AM PST

Hi all,

Can anybody send me the link to the:-

Update all fields Macro on the MVP

and also

Macro to add MACRO NO BUTTON DIALOGUE BOX

Is there a V-dot in Word?

Posted: 04 Mar 2014 07:10 AM PST

Want a 'rate' symbol for volume (V), which would have dot above the V.  Anyone? I see Z, and lots of others, but not V!

Is Office that resource-intensive?

Posted: 04 Mar 2014 06:49 AM PST

I am using Office 2007 on a Windows 7 32-bit laptop (Dell Latitude D830, Core 2 Duo 2.4 GHz, 2GB RAM).

When using this laptop for a while with memory-intensive jobs like video editing, it's kinda understandable that it shuts down when it overheats. But with Word 2007? Why is this so?

In comparison, I can have Chrome or Firefox open with a lot of tabs while video or music is playing in the background, and it rarely shuts-down-when-overheating.

Anyway, what can I turn off in Word to make it use less resources?

 

Disappearing Logo from Header of Template

Posted: 04 Mar 2014 06:22 AM PST

Hi All,

Am having problems I am working with a template .dot, and I have recently updated the header of the template, so that the logo is right aligned and changed the properties so that it sits -4.20 from the right page,

When I save the template and re-open the logo disappears,

Also when I go to re-paste the logo in to the header the paste functions is now disabled.

It worked perfectly fine before hand, and the logo is a JPEG!

Any Advice would be great.

email merge in Office 2010

Posted: 04 Mar 2014 06:18 AM PST

hi,

customer wants to do email merge in Word 2010 with Excel 2010 database.

Is it possible to scheduale sending, for example, the mass mailing to be send after working hours?

Janez

Error Code: 30089-14

Posted: 04 Mar 2014 05:49 AM PST

Can someone help me with Office 2013 not working.

I have Windows 7 Home premium.

I received a message that an update for Office 2013 failed and now I get the message Something went wrong.

I receive an Error Code: 30089-13 when I used Fix-It to try and correct the problem.

Any help, please make instructions on how to correct simple.

American to european quotation marks.

Posted: 04 Mar 2014 04:37 AM PST

After finishing a very long paper I realized that in Poland they placed quotation marks differently there. So instead of "He went" they have „He
went". Nhe first quote mark is on the botom. Now is it possible to automatically change the american style quotation mark to european one? Because doing it manually for over 100 pages is not something that I would be looking forward to.

P.S. Tried CTRL+H didn't change anything

Issue while with preview pane and word

Posted: 04 Mar 2014 04:02 AM PST

Hello everybody,

A few users in my company have been having the below issue:

when the preview pane is enabled double clicking on the word file (docx) does not open the document in word unless right clicking>open.

If I turn off preview pane all comes back to normal. This does not happen with all docx files but only a few (fairly complex ones), therefore looks like some setting within those files is not liking preview pane.

Tried the document inspect, re-save the document with no luck, if I save it using .doc extension it works fine.

Any suggestions?

configuration: windows 7 professional, Office standard 2010

thanks for you time

Salvo.

word opened from word addin freezing the dialog which has opened from addin and crashing the parent word document

Posted: 04 Mar 2014 12:55 AM PST

Hi,

I have a office addins which works seamlessly in excel, powerpoint and outlook except in word. We have a option to create a word documents using the templates in a dialog which is opened from addin. And we have an option to set the cache for our webapplication either to use filestorage or sharepoint storage.

Again the same addin works perfectly with filestorage cache but the same doesn't work with sharepoint storage. the problem is when we create the new documents using the templates it produces the new word document, once it is created and opened, the parent word document and the intermediate dialog window should get close but  instead it hangs both of them. when i try to close it explicitly it says word has stopped working. And am using sharepoint 2010 the same is not working with sharepoint 2013 as well.

I have posted in the forum before but I haven't got the response yet. please help me this is a major and critical issue for us.

PS: irrespective of OS its not working.

Word 2013 spell checker

Posted: 04 Mar 2014 12:19 AM PST

How do I get rid of the Word 2103 spellchecker and re-install an earlier version - which worked better, and which automatically placed itself in my eyeline near the text being checked and had an 'undo' button?  And is it my imagination or does the Word 2013 spellchecker have a smaller vocabulary?

OFFICE 365 - CAN'T OPEN DOWNLOADED FILES

Posted: 03 Mar 2014 08:55 PM PST

Basically, I can create new documents and open documents I already have, but if I download documents from an email or online I can't open them on either word or excel. It just shows the loading screen with "opening in protected view" indefinitely.

When clicking on a mailto link, Word 2007 opens the link as a webpage and not as an email address.

Posted: 03 Mar 2014 08:30 PM PST

Suddenly, Word 2007 is opening a mailto hyperlink as a new webpage rather than as an email address. Any answers out there?

Thanks.

Phil

Context menu very slow to appear (only in office)?

Posted: 03 Mar 2014 06:46 PM PST

Hi

I've just installed Office 2013 (64bit), and there is now a large lag (~2s) between right clicking, and the context menu appearing (only in Office applications)

After about a second the shadow appears, then followed by the menu itself. 

This lag is also present to a lesser extent when scrolling.

I'm running Win 8.1 on a Mbpr using bootcamp, all other applications run buttery smooth.

Any ideas?

resizing pictures from 400 x 400 to 500 x 500 IE10 and Office 2010

Posted: 03 Mar 2014 06:10 PM PST

Hi, I am copying pictures from the web, pasting them into a folder and then wanting them to post elsewhere on the internet. The photos I am copying are 400 x 400, but the requirement for the site I am uploading to is 500 x 500.  Is there a quick and easy way to enlarge these (preferably in bulk, given that there are a lot).  Many thanks in advance.

Word Compatibility

Posted: 03 Mar 2014 06:03 PM PST

Hello,

I am unable to open .doc files in Word 2013. Those .doc files are created as 97-2003 document( not downloaded). I have used save as option, but it not worked. Plz help me to convert word 97-2003 document(.doc) to word document(.docx) for the compatibility of word 2013.

Any help would be great.

Thanks in advance.

Hariprasad

Trying to open Word 2013 document

Posted: 03 Mar 2014 04:58 PM PST

While trying to open a previously saved file I received the dialog box that stated: "We're sorry. We can't open (file name)....... because we found a problem with its content."  Details: Semicolon expected.  Location: Part: /word/document.xml, Line: 2, Column: 966719.  How can I open, retrieve or repair this file. 

select and drag text in word 13 using touchscreen?

Posted: 03 Mar 2014 02:51 PM PST

Using a surface pro with 8.1 and word 13 I cannot select and move a text word in a document. When I use my finger to select the word it selects it and puts two handles below it. when i try to move the word with the handles it does not move.

Moved from Excel