Pages

Search

Microsoft Word - Need to modify a Macro that uses a loop to find text in Word documents

Microsoft Word - Need to modify a Macro that uses a loop to find text in Word documents


Need to modify a Macro that uses a loop to find text in Word documents

Posted: 09 Mar 2015 01:53 PM PDT

Microsoft created the following macro that uses a loop to find text in Word documents. In this instance I've modified it to find "word1" and insert "NOTE=" for every instance of "word1" in the document. I have many different words to find, for example, "word2", "word3", "word4" etc. but would prefer to reference a list of words rather then create a separate macro for each word. Possible?

Sub FindWord()
    With ActiveDocument.Content.Find
        .ClearFormatting
        .Text = "word1"
        Do While .Execute(Forward:=True, Format:=True) = True
                With .Parent
                    If .End = ActiveDocument.Content.End Then
                        .StartOf Unit:=wdParagraph, Extend:=wdMove
                        .InsertAfter "NOTE="
                        Exit Do
                    Else
                        .StartOf Unit:=wdParagraph, Extend:=wdMove
                        .InsertAfter "NOTE="
                        .Move Unit:=wdParagraph, Count:=1
                    End If
                End With
        Loop
    End With

End Sub

Original source found at this location: http://support.microsoft.com/kb/306338

Removing graphical artifacts from bulk scanned documents -- any best way with Office?

Posted: 09 Mar 2015 11:19 AM PDT

I'm currently involved with a batch file book-scanning project.  The scanner we're using does a great job of converting scanned documents to formatted RTF files save for one problem -- numerous graphical artifacts.  If a page isn't aligned perfectly, you can get a black triangle at one corner, for instance.  If you eliminate the artifacts manually, you're left with EXACTLY what you want (there are no graphics with the pages I'm scanning).

Naturally, I'd like to automate this process.  I've tried doing a search and replace on graphics (^g), but it only gets rid of some of them -- there's still plenty left.  You can FIND the remaining ones using the search pane and selecting graphics from the pulldown list, but you can't delete them.  I've also had no luck deleting them all using a macro to step through the shapes in the document.

I also can't seem to find any straightforward how-to after a lot of web searching.  I suppose what I'm asking is, "is there an easy way to purge graphics from an RTF file using Word 2013?"

text from a file in word 2007

Posted: 09 Mar 2015 11:18 AM PDT

Hi all

i have a project were i need to be able to replace data from were the cursor is with the contents of a file. i have found the insert text from a file but i can't seem to be able to overwrite instead of insert.

Printer settings versus document settings

Posted: 09 Mar 2015 11:10 AM PDT

Hi,

Would I be right in saying that Page Layout settings in a Word 2010 document will automatically be changed depending on what printer you are using? i.e. you would have to re-configure each document to suit the printer even if the paper trays are in the same place e.e. Tray1 plain Tray 2 Letterhead...

This seems bizarre when the Microsoft site seems to suggest the opposite - that the document settings will supercede the printer settings!

Would be grateful for any help with this as we have 2 teams each with a different make of network printer accessing the same lot of template letters and forms  day in day out. 

Thanks

mary

Is there a way to find multiple letters sent to multiple people without knowing their names?

Posted: 09 Mar 2015 09:32 AM PDT

I work for a non-profit and I've been asked to find letters sent to donors over the past couple of years with the goal of discovering how many donors received the same letter over and over again, no matter how often/how much they donated.  Unfortunately I do not know any of the donor's names that may have received the same letter over and over, and most likely, this will apply to numerous donors.  All the letters sent are in a file on a shared drive.

I'm probably asking for something that is impossible, but thought I would post this just in case someone could help me.

File tab menu options different for users in Office 365/2013

Posted: 09 Mar 2015 08:37 AM PDT

We've noticed that users are seeing different options when they click on the File tab in Office 365/2013. More specifically, when they go to Open or Save As

When clicking on "Open" or "Save As" some people see SharePoint as an option where as other people do not see the SharePoint option.

We have some people that are trying to Open and Save OneNote files to a SharePoint site, but since they do not see this option, they are not able to.

This is very random where some people see it and some do not. All of them have MySites content personal sites.

In troubleshooting I installed Office 365/2013 on a new computer and the first time I launched Excel it said "loading services". I am not able to determine where these services were loaded and what variable is different for the users missing the SharePoint option in the File tab.

Thank you.

Windows 7 Pro 64 - Won't print MS Office and other files

Posted: 09 Mar 2015 08:11 AM PDT

I have a computer running Windows 7 Pro, with Office 2010. When trying to print from Office or Adobe, the job gets stuck in a status of "spooling" and will not print. I have one printer directly hooked up (Brother HL-2270DW), and I've tried it with the same brand of printer, but over the network using a print server. It will print from Notepad, but not Office or Adobe.

I have run all the updates, gotten the latest print drivers, tried all of the other suggestions I could find... stopping/starting print spooler service, deleting all the files in the system32\spool\printers folder, taken ownership of spoolsv.exe, removed the printers, uninstalled the drivers, reinstalled the drivers, re-added the printers, used the troubleshooter in the control panel... you name it, I've tried it. It's still not working. Every other pc on my network with an identical platform has no problem printing anywhere.

I've noticed other people that have had this issue, but none of the solutions given were of any help in my situation. Any information is appreciated. Thanks.

table of contents right tab with indent not working with A4 paper

Posted: 09 Mar 2015 07:11 AM PDT

This only seems to be a problem with non-standard paper, like A4. We set up our table of contents to have a right-tab, dot-leader indent and text with a right indent of .5" so it doesn't go all the way to the number. With A4 paper, it will not set the tab beyond the indent marker. It cannot be set with the ruler or in style settings and stay as set. With standard paper, we have to set it in settings--it won't work if you try to slide the indent to the left of the tab--the tab jumps to the indent marker.

The only thing I've found to work, but only sometimes, is to change the paper size to standard 8.5x11 and then back to A4. But that only works some of the time. Some of our documents are very large so it's a loss of productive time trying to get this to work or manually fix the lines.

Thanks

Word 2010 In Word Highlight a number in a range then highlight with Turquoise

Posted: 09 Mar 2015 02:43 AM PDT

Hello from Steved

Ok in "Word" why will the below not find the number "7" in a range that I've chosen by highliting it, then highlight with Turquoise. Thank you

Sub testing()
    Selection.Find.ClearFormatting
    Selection.Find.Replacement.ClearFormatting
    With Selection.Find
        .Text = "Ch1"
        .Replacement.Text = ""
        .Forward = False
        .Wrap = wdFindContinue
        .Format = False
        .MatchCase = True
        .MatchWholeWord = False
        .MatchWildcards = False
        .MatchSoundsLike = False
        .MatchAllWordForms = False
    End With
    Selection.Find.Execute
    Selection.HomeKey Unit:=wdLine
    Selection.MoveDown Unit:=wdLine, Count:=1
    Selection.Extend
    Selection.Find.ClearFormatting
    Selection.Find.Replacement.ClearFormatting
    With Selection.Find
        .Text = "[0-9]{1,} - [0-9]{1,}"
        .Replacement.Text = ""
        .Forward = True
        .Wrap = wdFindContinue
        .Format = False
        .MatchCase = False
        .MatchWholeWord = False
        .MatchAllWordForms = False
        .MatchSoundsLike = False
        .MatchWildcards = True
    End With
    Selection.Find.Execute
    Selection.MoveUp Unit:=wdParagraph, Count:=2, Extend:=wdExtend
    Selection.Find.ClearFormatting
    With Selection.Find
        .Text = "7"
        .Replacement.Text = ""
        .Forward = True
        .Wrap = wdFindContine
        .Format = False
        .MatchCase = False
        .MatchWholeWord = False
        .MatchWildcards = False
        .MatchSoundsLike = False
        .MatchAllWordForms = False
    End With
    Selection.Find.Execute
    Options.DefaultHighlightColorIndex = wdTurquoise
    Selection.Range.HighlightColorIndex = wdTurquoise
End Sub

Sign in message in Word

Posted: 08 Mar 2015 07:23 PM PDT

Hello...I recently purchased MSOffice and have been using Word for a writing project.  With my new laptop, I keep getting a message at the top of my document: "UPLOAD FAILED: You are required to sign in to upload your changes to this document."

There is a small box that says "Sign In" that seems to be a link, but when I sign in, nothing happens.

I know I am signed into MS with my account. I can get to OneDrive and see the documents I have stored there, but I cannot seem to do the reverse: save a document to OneDrive because it thinks I'm not logged in.

Unless there's a step I don't know about when it comes to logging in here? 

When I go to the Word screen that lists my recent documents, it says my changes were saved but could not be uploaded because I'm not signed in to the server. The "Resolve" box doesn't help; it also gives me the sign in option, but when I click on that, nothing opens.

I have looked on Microsoft's OneDrive help pages but I cannot see this addressed anywhere.

Thank you in advance for any help you might be able to provide.

Word and Excel (and possibly other apps) do not open - BEX error

Posted: 08 Mar 2015 06:23 PM PDT

The template screen will appear, but if I try to open a new document or even an old one I get the following error:

Problem signature:
Problem Event Name: BEX
Application Name: WINWORD.EXE
Application Version: 15.0.4691.1000
Application Timestamp: 54ab960b
Fault Module Name: unknown
Fault Module Version: 0.0.0.0
Fault Module Timestamp: 00000000
Exception Offset: 0040d3fc
Exception Code: c0000005
Exception Data: 00000008
OS Version: 6.1.7601.2.1.0.256.48
Locale ID: 1033

Additional information about the problem:
LCID: 1033
skulcid: 1033

I have uninstalled, deactivated, reactivated, reinstalled, and restarted.  I do not have this problem on any other system.  I am running Windows 7 SP1, fully updated.  Any thoughts?

How to change default spacing between a bullet and text in a table in microsoft word 2010

Posted: 08 Mar 2015 04:55 PM PDT

Hi all........I'd like to do two things:

1. In a Table, change the default space between a bullet (or number) and the text. I'd like to make it smaller........the extra spacing wastes space in my table.

In other words, the default bullet spacing

Default table bullet spacing looks like this

  1.     1st level

                      2.      second level

I'd like it to look more like this

1.  1st level

     2.  Second level




ie starts like this

  •    text
  • I'd like it to look more like this (less space between the bullet and the text, but saved as a default for the document I'm working on and all documents.

2. Change the Default setting on all my Word 2010 documents for bullet spacing

it looks like this now

  1.     Text
               a)       second level

                                     b)  third level

And I'd like it to default to something like this

1. Text

    a)  second level

         b)  third level

Can you help?

Thanks!!

Office Word 2013 Will Not Open

Posted: 08 Mar 2015 04:19 PM PDT

I just Downloaded Office 2013 to my computer Thursday. Now none of the apps will open. I don get a message or anything. Every time I click on an to open it, It just takes me to my desktop screen. I have tried doing it in "Safe" mode and still nothing.

Proofing tool (spanish) isn't recognized by Word 2013 after installation

Posted: 08 Mar 2015 11:04 AM PDT

I'm writing a spanish text and I wanted to use the Spanish spellchecker from Word.

So I downloaded the Spanish proofing tool. The installation was successful, but in Word I still get the message that Word can't check the spelling.

When I check the options in Word and go to Language, I see that the language Spanish (Spain) isn't installed even after I just installed it.

The things that I already tried:

  • Restarted Word
  • Restarted computer
  • Installed the proofing tools as an administrator

Can someone please help me solve this problem?

partition structure/layout - Forums Linux

partition structure/layout - Forums Linux


partition structure/layout

Posted: 26 Dec 2009 07:43 PM PST

Wanna-Be Sys Admin wrote: 



He is a well know troll
kill-filed by most here

Packet.dll and which wpcap.dll

Posted: 25 Dec 2009 08:24 AM PST

karthikbalaguru wrote:
 

.....

So, you knew, but didn't care? I saw after I posted this, that you had
several Windows OS related questions posted in a few Linux groups.
Anyway, I guess you know better for the future. Thanks.
--
Not really a wanna-be, but I don't know everything.

Ethereal on cygwin - 'which Packet.dll' and 'which wpcap.dll' ??

Posted: 25 Dec 2009 08:12 AM PST

On Dec 26, 3:27pm, Jens Stuckelberger
<net> wrote: 

But how else will he find someone with an actual clue?

Admittedly, the cross-posting is excessive, and a Followup-To: should
be set. But I've often found that the Linux support groups are much
better for network, cross-platform, or GNU toolchain issues than pure
Microsoft groups where they may not even know how to build things with
gcc and a real autoconf setup.

Scanning windows from linux

Posted: 24 Dec 2009 11:53 PM PST

On Monday 28 December 2009 19:09 in comp.os.linux.setup, somebody
identifying as karthikbalaguru wrote...
 

Of course not - last thing I heard nobody was giving away USB sticks for
free yet. ;-)
 

You are not going to find one, since USB sticks cost money. Most
distributions do however have the necessary tools for creating a
USB-stick-based GNU/Linux distribution, and some may even have
preconfigured and automated utilities to do such a thing for you.
 

Google is your friend.
 

Then you didn't look well enough. ;-)
 

Well, good luck with that then. The 2.6 kernel doesn't even fit on a
floppy anymore, so you'd be stuck with an old kernel, which may not
support all of your hardware. For instance, I don't even know whether
2.4 supports SATA hard disks.
 

If they are floppy-based, then they will certainly not hold any decent
antivirus software, given the size of such software suits.
 

Then why even consider it? ;-)
 

That is not what it was designed for, but in theory, you should be able
to make a bootable USB stick with the contents of that CD, yes. On the
other hand, you'd be far better off with a more complete distribution,
e.g. Knoppix.
 

I can't really help you with that. I've only used it once or twice, in
order to detect hardware errors on one of my machines.
 

Yes, that is what I wrote higher up already. You'd be far better off
with a "real" distro. There are several live-CD based distros, and
other distros allow you to make a live-CD with a few simple
mouseclicks, or a bootable USB stick. Look here and see whether you
can find something to your liking:

http://www.distrowatch.com
 

They will probably not have such scanners "on board", so you'd have to
add them yourself. The simpler the base you start from, the more work
you'll have at producing a bootable USB stick with a working distro
*and* a virus scanner.
 

USB sticks and floppy disks are not "embedded Linux". Embedded
(GNU/)Linux is what you find in routers, cellphones and satnav systems,
i.e. the "system on a chip" approach. Such systems usually don't come
with antivirus software, and most of the time those devices are
configured to not work as if they are complete UNIX systems.

For instance, a Linksys WRT router has a Linux-based system in firmware,
but other than approaching it via a webbrowser to make a few changes to
the settings, you can't do much with it, since the device was never
designed for any other purposes than being a router. Alternative
firmware downloads do exist, but they really *are* alternative, i.e.
you'd have to install it yourself. And for your intended purposes, the
issue is moot.

--
*Aragorn*
(registered GNU/Linux user #223157)

Virtualization : Clarification needed on Xen Hypervisor

Posted: 23 Dec 2009 02:44 AM PST

On Wednesday 23 December 2009 11:44 in comp.os.linux.setup, somebody
identifying as bzaman wrote...
 

That's how Wikipedia describes it. :p However, I prefer using different
nomenclature myself. I call the above-mentioned "type 1"
a "hypervisor", and the "type 2" a "virtual machine monitor".
 

Okay. ;-)
 

This is no longer required. As of Linux 2.6.30, the kernel supports use
on the bare metal, as a privileged Xen guest (dom0) or as an
unprivileged Xen guest (domU), all in the same kernel image. The
kernel will detect in which cirstances it is being booted.

The "kernel-xen" packages are probably 2.6.18 kernels which have been
patched with Xen compatibility by Xen.org themselves, because back at
the time of that kernel generation, Linux did not support
paravirtualization yet.
 

That's the actual hypervisor itself.
 

Not "host", but "privileged guest". The dom0 kernel runs on top of Xen
and is bootstrapped as a module to Xen when the machine boots, but it
too is virtualized. The bootloader actually loads Xen instead of
loading a Linux kernel, and Xen then loads and boots the dom0 kernel
via the "module" statement in "/boot/grub/menu.lst".
 

The unprivileged guest does not run on top of the dom0 kernel, but
*alongside* of it, on top of the Xen hypervisor itself. If it is a
paravirtualized guest, then its hardware access is relayed onto
back-end drivers in dom0, but under control of the hypervisor, as even
dom0 is a virtual machine and its operations are scheduled by Xen.

If the machine has hardware virtualization extensions, then the
unprivileged guest can be an unmodified operating system, and in that
case, Xen emulates certain hardware and traps the unmodified operating
system's hardware accesses with assistance from the virtualization
hardware.
 

No, that is incorrect. That which you are running in the dom0 GNU/Linux
virtual machine is "xend", a daemon which hooks into the hypervisor and
allows you to boot domU virtual machines and resize their memory in
realtime, among other things. It also helps in live-migrating a
running virtual machine to another physical computer which also runs
Xen - provided that you're not trying to move a 64-bit virtual machine
to a 32-bit physical machine, of course.
 

Xen runs on the bare metal, and that which is quite often mistakingly
called "the host" is in fact a virtual machine in itself, but it is a
privileged virtual machine. It is privileged because it has access -
via the xentools package, not via its own operating system tools - to
the memory of the unprivileged virtual machines, i.e. it can start and
stop unprivileged virtual machines via the xentools, and it
can "inflate" the memory of the unprivileged virtual machine via the
so-called "balloon driver".

The privileged virtual machine is also the primary "driver domain". It
contains back-end drivers for all the hardware, and the unprivileged
paravirtual guests contain front-end drivers, which are an abstraction
layer and which relay the hardware access onto the back-end drivers in
dom0, via the hypervisor. It is however possible to hide certain
physical hardware from dom0 so that it can be directly accessed via a
real driver from within an unprivileged guest, making this unprivileged
guest into an additional "driver domain". Yet all virtual machines run
directly on top of Xen, including dom0 itself.

--
*Aragorn*
(registered GNU/Linux user #223157)

Fedora 12: Problem with software update using Yum.

Posted: 22 Dec 2009 11:59 PM PST

I saw the same issue on a Fedora 12 update at the same lines. "yum
update" ran through the whole update process. Now the "software
update" process reports the machine is up to date.

Help needed for Lotus Notes on Ubuntu 9.04

Posted: 16 Dec 2009 12:33 AM PST

On Wed, 16 Dec 2009 00:33:41 -0800, kaari wrote:
 
Caveat: I am not running Ubuntu. However, I am running Notes 8.5.1 on
Slackware 12.2.

I think the answer is to get a registered version. The registered version
is obtained via IBM's passport advantage site, and must be paid for via
some method.

--
Douglas Mayne

virtualized redhat partioned

Posted: 14 Dec 2009 11:41 AM PST

On Saturday 19 December 2009 20:17 in comp.os.linux.setup, somebody
identifying as syd_p wrote...
 

Well, yes and no... It's a restriction of the legacy real mode BIOS
code and MS-DOS. Because of the required backward compatibility with
DOS and the DOS-based Windows versions - which were still being sold up
until the year 2000 - this is still being used today.

By design, any x86 processor - even x86-64 - default to the
DOS-compatible real mode at power up, and usually it's the
bootstrapping code in the operating system's kernel which sets up the
pagetables and descriptor tables and switches the processor in
protected mode.

On the other hand, machines with an EFI BIOS - such as the Intel-powered
MacIntosh - or a CoreBoot (a.k.a. LinuxBIOS) have a BIOS which switches
the processor into protected mode itself. Such systems then require a
special protected mode bootloader and a kernel without real mode
boostrapping code. Such machines can make use of a whole new
partitioning system which allows for up to 128 primary partitions per
disk.
 

Ehm, you are confusing a few things. An extended partition is not the
same thing as ext3, which is a *filesystem.* Also, Solaris - at least
on its native (Ultra)SPARC hardware - uses a kind of EFI BIOS, as do
MIPS machines with IRIX and machines with an Intel Itanium processor.
 

Not yet. ;-) The "no more than 4 primary partitions" is a limitation of
the x86 platform with a legacy BIOS. Non-x86 machines or x86 machines
with EFI or CoreBoot can use 128 primary partitions.

That said, there is an additional limitation for SAS/SCSI/SATA/USB hard
disks and PATA hard disks addressed via the new /libata/ drivers, i.e.
all disks that appear as "/dev/sd?". Such disks or even arrays of
disks can only make use of 15 partitions per disk, even if there are
more partitions than that - primary or extended is irrelevant. This
limitation exists because of programming confinements in the Linux
kernel SCSI midlayer, but it has nothing to do with the SCSI hardware
itself, whether used on x86 or on another hardware platform.

--
*Aragorn*
(registered GNU/Linux user #223157)

Limitation of partition's capacity with Fdisk ?

Posted: 10 Dec 2009 07:01 AM PST

On Dec 12, 4:29am, co.uk wrote: 

Well, fdisk might work well with the most venerable of controllers:
not everyone is going to have 2 TB disks to support yet! Not upgrading
such core utilities until you have to is a basic step to preserve
stability. And the friendly installers would have to be rewritten to
use parted instead of fdisk, which is a tricky bit of work. It
certainly seems worth doing, as gpt partition tables become more
reliable or even universally available.

Knoppix remastering. Where to configure keyboard layout?

Posted: 09 Dec 2009 06:29 AM PST

On 21 Dec, 08:30, Bengt T <com> wrote: 

Finally this issue was solved by putting "...xkeyboard=se..." into
relevant lines of the isolinux.cfg file during the remastering
process.

There are probably more elegant ways to define the keyboard but I can
survive with this.

Thank you all who bothered to assist me.

/Bengt

KERNEL - Thermal, fan, processor and other modules built-in

Posted: 08 Dec 2009 02:55 AM PST

On Dec 8, 3:05pm, Stefan Patric <com> wrote: 

It's a bit more than that. ext2 has some serious problems with too
many files in one directory, that are significantly eased by ext3.

Problem when upgrading Debian from stable (lenny) to testing(squeeze)

Posted: 07 Dec 2009 11:02 AM PST

Wookai writes:
a) File a bug report against sysv-rc.
b) Post your question to debian.org.
 

There is no file by that name. Please paste the exact command and the
exact result.
--
John Hasler
com
Dancing Horse Hill
Elmwood, WI USA

network doesnt start on bootup

Posted: 07 Dec 2009 03:53 AM PST

On Dec 8, 12:15pm, Allen Kistler <moc> wrote: 

Yes, in linux, chkconfig is very helpful and easy to use for
configuring the services.
The chkconfig command can be used to Enable/Disable certain services.
You can get the list of system services that are either Enabled/
Disabled by
using the chkconfig --list command. Here, you check whether the
network is ON/OFF.
If OFF, use chkconfig to enable network to be started in a specific
runlevel.

Checkout -
http://www.redhat.com/docs/manuals/linux/RHL-7.3-Manual/custom-guide/s1-services-chkconfig.html

Karthik Balaguru

Help setting up sshd, please

Posted: 04 Dec 2009 02:40 PM PST

Hi, Nico!

Nico Kadel-Garcia <com> wrote: 
 
 
 
 
 
 
 

Batch?
 

You're not short of choice, then. ;-) I have come to hat installers
that just ask a lot of questions, then do things behind your back. It's
great until something doesn't "quite" work. Particularly networking not
working. It never did for me, up until I got a broadband link with a
dhcp router.

The problem I stumbled over is just a bug in the gentoo installer. I'm
going to report it as such, and I expect they'll fix it.

--
Alan Mackenzie (Nuremberg, Germany).

Ubuntu 9.10: installation setup propaganda screen (reposted)

Posted: 03 Dec 2009 09:03 AM PST

* John Thompson <dhs.org>: 

Sounds like you used the Alternate Install CD for Xubuntu rather than
the Live CD. However, I don't think that the graphical installer on the
Live CD has the same informational "ad" screens that are in the latest
Ubuntu installer.

--
James Michael Fultz <as.invalid>
Remove this part when replying ^^^^^^^^

yum - No module named yum

Posted: 01 Dec 2009 08:32 AM PST

Ok I think I solved it, believe it or not, relatively
painlessly. I installed something called 'smart'
http://labix.org/smart

I removed yum-utils via the smart tool,
then downloaded (seperately) the yum package rpm,
installed it, and wallah, it worked!


Automatic install

Posted: 21 Nov 2009 01:21 AM PST


Thanks


Regards


Puppy Linux with windows manager style Xp

Posted: 19 Nov 2009 02:43 PM PST

news.tiscali wrote: 
have fun with it

Fedora Core 11: not booting

Posted: 18 Nov 2009 10:29 AM PST

John Goche wrote: 
 
 
 
 

Now I am confused. The "bubble" is what you get after the system is installed
and you are booting from the HD. Exactly what did you install or do before you
got this problem? Did you install the system?

When you boot the install disk you should get nothing but text messages which
are a no particular value. Then should come some questions on language,
keyboard type and such in ascii graphics.

--
If the world adopts Israel's view of the Goldstone report then the world
at least owes Milosevic a posthumous apology and possibly also to Hilter.
-- The Iron Webmaster, 4206
http://www.giwersworld.org/holo3/holo-survivors.phtml a3
Wed Nov 25 04:35:29 EST 2009

denyhosts is always denying

Posted: 17 Nov 2009 12:46 AM PST

On Mon, 23 Nov 2009, in the Usenet newsgroup comp.os.linux.setup, in article
<hedkdp$fg2$eternal-september.org>, John Taylor wrote:
 
 

Whoops!!! That's certainly not going to help ;-)
 

I don't think I've ever seen that, so I'd have to say it's not the
default. The only "ALL:" line I expect to see there is for the
loopback addresses.
 

Keep an eye on the size of /etc/hosts.deny to make sure it isn't
growing out of control. If it does, you can be wasting more CPU
cycles checking libwrap for each and every connection than you
would letting the script kiddiez connect and continue to guess
wrong. That's the 'PURGE_DENY' value.

Old guy

OpenVPN

Posted: 16 Nov 2009 05:26 PM PST

On Nov 18, 1:14am, Lew Pitcher <com> wrote: 

Thank you Very much Pitcher.
I have successfully connectd vista clients to the VPN using the note
you gave..

Thank you very much and I thankful to others too who have replied to
me...

Regards

GDM freezes after Ubuntu upgrade

Posted: 15 Nov 2009 06:22 AM PST

I demand that Ian Briggs may or may not have written...
 
 
[snip] 

BIOS and/or kernel upgrade, perhaps?

--
| Darren Salt | linux at youmustbejoking | nr. Ashington, | Doon
| using Debian GNU/Linux | or ds ,demon,co,uk | Northumberland | Army
| + http://www.youmustbejoking.demon.co.uk/ & http://tlasd.wordpress.com/

programming: n. The process of putting bugs into a program.

alpine email client and yahoo

Posted: 08 Nov 2009 04:58 AM PST

Jon Solberg wrote:
 

Pardon, I figured I could have looked, but the question of how to
configure it to work with Yahoo! mail led me to believe it's unrelated
to this group (about Linux, rather than just settings on an application
that can run on Linux). Not a big deal though.
--
Not really a wanna-be, but I don't know everything.

Keeping End Date Always in View Microsoft Project

Keeping End Date Always in View Microsoft Project


Keeping End Date Always in View

Posted: 23 Feb 2006 07:01 AM PST

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

Dann,
Great and you're welcome.
John 

group by dropdown in Project Professional 2003

Posted: 23 Feb 2006 06:31 AM PST

Hi Steve,

AFAIK groups are saved in the project itself so once defined it will stay
available in teh project after dsaving and reopening.

--
Jan De Messemaeker, Microsoft Project Most Valuable Professional
http://users.online.be/prom-ade/
For FAQs: http://www.mvps.org/project/faqs.htm
"steve" <microsoft.com> schreef in bericht
news:com... 
group. 


Actual start based on Status Date update of duration vs start date

Posted: 23 Feb 2006 06:29 AM PST

It sounds like you have a constrant on your start date or logic is holding
the date out. Add a column for Actual Start or add the ICON for Update Task.
You'll need to tell the task when it started and possible revise your logic.

"Bryan" wrote:
 

moving task bars

Posted: 23 Feb 2006 01:23 AM PST

Hi,

May I first quote you?

By my logic the
alap tasks should only finish at the start of the following tasks that were
set as asap

Wel, by my logic as well, and I've been asking for that development over the
past 5 years or so, but to no avail. An ASAP task becomes critical and is
"stronger" than any asap following, causing those to become critical as
well.

--
Jan De Messemaeker, Microsoft Project Most Valuable Professional
http://users.online.be/prom-ade/
For FAQs: http://www.mvps.org/project/faqs.htm
"Nils214" <microsoft.com> schreef in bericht
news:com... 
asap 
the 
were 
case...illogical 
logic 
the 
did 
Now 
task, 
date. I 
the 
project 
rescheduled 


New task in existing plan to start LATER

Posted: 22 Feb 2006 09:27 PM PST

Thanks. That's what I do now. I was hoping for something else! This task
really isn't a successor to any particular one. When I do this, if the linked
task lags, it pushes this new task out in the schedule, and I don't really
want that to happen. In a big project, I might miss that I did that to the
task and it then doesn't get started when it needs to. The other method I've
used is to put a date constraint on it, but that has it's negatives too.

Oh well. Thanks again!

"Rod Gill" wrote:
 

Project 2003 Professional vs Standard?

Posted: 22 Feb 2006 07:47 PM PST

Hi,

Was this a mistype or a misread? Project Professional is significantly more
expensive than Standard!

--
Jan De Messemaeker, Microsoft Project Most Valuable Professional
http://users.online.be/prom-ade/
For FAQs: http://www.mvps.org/project/faqs.htm
"Robert" <microsoft.com> schreef in bericht
news:com... 


Remove a combination view

Posted: 22 Feb 2006 07:24 PM PST

Many thanks, Dale. I actually did find it eventually at about 10 pm - and
proves that I'm an entirely unproductive person after 9pm at night. But it
is good to have this as a vehicle to answer questions and I appreciate your
response.
Kind Regards

"Dale Howard [MVP]" wrote:
 

i need a project planner for my pocket pc

Posted: 22 Feb 2006 01:41 PM PST

Hi Harry,

Look at Project Plan from Twiddlebit, go to www.twiddlebit.com.

As Rod mentioned though there are limitations around what is visible and
that is obviously a function of the PDA size.

Hope this helps

Regards

DavidC

"harry graves" wrote:
 

Indenting tasks/Duration issue

Posted: 22 Feb 2006 11:18 AM PST

Hi Felix, thanks for the reponse. The time period between the tasks is only
1 day. I've pasted the contents below. The last two are indented into the
first one. Kinda funny, if I paste them into a new project the times show up
correctly. Project is very frusturating...

Task Name Duration Start Work
Finish
Move Servers 14 days Thu 3/16/06 0 hrs Fri 3/17/06
Install DHCP 2 hrs Thu 3/16/06 0 hrs Thu 3/16/06
Move servers 2 days Fri 3/17/06 0 hrs Fri 3/17/06

"Felix" wrote:
 

work entered in seconds

Posted: 22 Feb 2006 11:08 AM PST

I have to ask - Why would you want to schedule in seconds?

"Nelson" wrote:
 

Difficulty downloading Project Trial

Posted: 22 Feb 2006 10:15 AM PST

Thanks for the tip.

"DavidC" wrote:
 

Problems with assigning calendars

Posted: 22 Feb 2006 09:35 AM PST

Thanks for the responses, I have found the problem, tasks that are not
assigned as of 'fixed duration' will not resize themselves according to the
calendar.


"Nils214" wrote:
 

i have problems with outdenting tasks and summary bars

Posted: 22 Feb 2006 09:35 AM PST

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

Nils214,
See responses below. 
Yes. When setting up a hierarchy in Project care must be used. Sometimes
the user may have to go an extra step to correct an erroneous indent or
outdent. 
There have been several comments over the years about the single undo of
Project. I don't recall for sure, but the level of undos "might" be
expanded in Project 12. Nonetheless, what it means for existing versions
is that the user must be careful and perform regular saves and/or
backups - but then that's just smart computing with any application or
OS. Powerpoint is a very slick application but it isn't worth a darn
when it comes to planning and scheduling.

John
Project MVP 

General

Posted: 22 Feb 2006 08:42 AM PST

Thank you Jan

"Jan De Messemaeker" wrote:
 

Project Summary Form in Project2000

Posted: 22 Feb 2006 06:29 AM PST

In article <com>,
"Peter Allanach" <microsoft.com> wrote:
 

Peter,
The things you describe look like they are out of Project Server, which
you mentioned in your original post. Project 2000 does not have that
functionality built-in although customized data could be created with a
VBA macro or SQL queries. It all depends on how much effort you want to
invest versus upgrading to Server.

John
Project MVP 

could not log on to PWA other than Administrator in project12

Posted: 21 Feb 2006 10:46 PM PST

madhur:

A couple of things: You're discussing a product version that is not
available to many people. More importantly, you're discussing subject matter
that may be under non-disclosure agreement with your company and could place
both your job and your company's relationship with Microsoft in jeopardy.

With that said, I've seen the problem you describe, even with domain admins,
and I can't offer you a resolution. Please redirect your inquiries to your
points of contact at Microsoft or the partner organization you're working
with.

--


Gary L. Chefetz, MVP
"We wrote the books on Project Server"
http://www.msprojectexperts.com

For Project Server FAQs visit
http://www.projectserverexperts.com

For Project FAQs visit
http://www.mvps.org/project


"madhur" <com> wrote in message
news:googlegroups.com... 


How do I print a schedule on one page in Project?

Posted: 21 Feb 2006 02:20 PM PST

Look at Format>Timescale. You can adjust the type of scale yoy need here -
Days, Weeks, Months.....

"JB" wrote:
 

Tracking different cost categories

Posted: 21 Feb 2006 01:41 PM PST

Thank you. I did discover the FAQ, will try it out. I suspected some part
of the answer involved VBA and exportation of data. I don't know where to
start with VBA, sigh.

Most disappointing is the inability to do timescaled representation of a
custom field. Since my tracking granularity for some of these other
categories is monthly, maybe I could define a number of custom fields, one
for each month, and export those out to Excel for summation. While somewhat
artificial, it would allow me to at least maintain the data in a single tool
(Project) and use Excel to present that data.

Thanks again. I am grateful for your advice.