Pages

Search

Microsoft Word - How do I scan a document into Word 2013 to edit?

Microsoft Word - How do I scan a document into Word 2013 to edit?


How do I scan a document into Word 2013 to edit?

Posted: 15 May 2014 03:22 PM PDT

I just updated my 10 year old computer system to windows 8. I purchased Word 2013. On occasion I need to scan a document for my business into Word so I can make changes to the document. HOW DO YOU DO THIS?

WHAT PROGRAM DO I NEED TO PURCHASE OR DOWNLOAD? I do not want to use the Adobe that you have to pay a monthly fee to use as I am retired now and I don't need to edit documents very often.

My other HP computer had a picture and document imaging program. I just clicked it on and told it I was scanning a document and it went into Word.

So far Windows 8 is exasperating!

thanks for any info

Word 2013-image at top, text box at side, text box in main part of page-how do I keep them from jumping around?

Posted: 15 May 2014 03:10 PM PDT

I am trying to build a letterhead template. I would like an image at the top of the page, and a narrow text box down the left side that will contain text that will not change. I want another text box in the 'main' part of the page into which I can type the main body of the letter, so that when I invoke the template there will be a new document waiting for text to go into the main text box. What settings do I use for text wrapping and anchoring the image and left side text box to prevent the constant problem that occurs whenever I dump text into the main text box - it pushes the image and the left side text box to a second page and screws up everything.

Automate Word Templates

Posted: 15 May 2014 03:02 PM PDT

I am trying to create word templates that I can populate with information from an excel spreadsheet in a different sub-folder.  Specifically, in each client file I have an intake sheet (excel spreadsheet) with the clients name, address, etc.  I have several word templates in a separate sub-folder called templates.  The most basic is for a client letter.  Is there a way to open the letter template and populate the text fields with information from one of the client intake spreadsheets?  I need to be able to re-open the template each time I use it and point to a different client's intake sheet, depending on which case I am working on.  Any ideas?

Thanks,

Mike

How to Sort commented Files with no-commented files for multiple batches With proper Error handling Mechanism

Posted: 15 May 2014 02:58 PM PDT

I have thousands of word documents and want to run a particular macro with proper error mechanism:

Problems while running a particular batch:

1)Particular Line :   Set oDoc = Documents.Open(strPath & strFilename) , I have some japenese file names that the macro could not even open,i think by there file names .Example: 日本国instance1日本国.doc. 

2)Some Protected Files That due to which the batch is getting hampered in between the batch.

3)SOme files that have been repaired by the microsoft word throw GoTo Error pop-up which i have to manually close once it comes.

So I want that if such kind of error files and GoTo Error pop-up comes that doesn't allow the macro to open those particular files, I want them to move those particular files to Error Folder and make a Log of those Files.

Here is the particular macro:

Sub BatchProcessMoveFiles()
Dim strFilename As String
Dim strPath As String
Const strCommentsPath As String = "Comment Folder\"
Const strNoCommentsPath As String = "Non-commented Folder\"
Dim strFiles As String
Dim oDoc As Document
Dim Log As Document
Dim fDialog As FileDialog
    Set fDialog = Application.FileDialog(msoFileDialogFolderPicker)
    With fDialog
        .Title = "Select folder and click OK"
        .AllowMultiSelect = False
        .InitialView = msoFileDialogViewList
        If .Show <> -1 Then
            MsgBox "Cancelled By User", , _
                   "List Folder Contents"
            Exit Sub
        End If
        strPath = fDialog.SelectedItems.Item(1) & "\"
        If Not FolderExists(strPath & strCommentsPath) Then MkDir strPath & strCommentsPath
        If Not FolderExists(strPath & strNoCommentsPath) Then MkDir strPath & strNoCommentsPath
    End With
    strFiles = ""
    strFilename = Dir$(strPath & "*.doc")        'should open doc, docx, and docm formats
    While Len(strFilename) <> 0
        WordBasic.DisableAutoMacros 1
        Set oDoc = Documents.Open(strPath & strFilename)
        strFiles = strFiles & Date & "-" & Time & Chr(32) & oDoc.FullName & " moved to "
        'do what you want with the open document
        If oDoc.Content.Comments.Count > 0 Then
            oDoc.Close SaveChanges:=wdDoNotSaveChanges
            Name strPath & strFilename As strPath & strCommentsPath & strFilename
            strFiles = strFiles & strCommentsPath & strFilename & vbCr
        Else
            oDoc.Close SaveChanges:=wdDoNotSaveChanges
            Name strPath & strFilename As strPath & strNoCommentsPath & strFilename
            strFiles = strFiles & strNoCommentsPath & strFilename & vbCr
        End If
        strFilename = Dir$()
        WordBasic.DisableAutoMacros 0
    Wend
    Set oDoc = Nothing
    Set Log = Documents.Add
    Log.Range.Text = strFiles
End Sub

Public Function FolderExists(ByVal PathName As String) As Boolean
Dim lngAttr As Long
    On Error GoTo NoFolder
    lngAttr = GetAttr(PathName)
    If (lngAttr And vbDirectory) = vbDirectory Then
        FolderExists = True
    End If
NoFolder:
End Function

Please help with the particular problem.

Thanks & Regards 

Gagan Khurana

how to get a macro to highlight current row before deleting it?

Posted: 15 May 2014 01:05 PM PDT

Dear Word Answers,

The following macro deletes the current table row and works just fine. As an infrequent VBA user, I wanted to make it highlight the

current row before the msgbox displayed, but can't figure out what statement to use. Application.ScreenUpdating didn't seem to do

what I expected.

 

Could you suggest something to add to the macro?

 

Sub DeleteRow()

'

' DeleteRow Macro

        If Selection.Information(wdWithInTable) = True Then

        Selection.SelectRow

        Application.ScreenUpdating = True

        Response = MsgBox("OK to delete these stinkin' rows?", vbOKCancel, "Delete Rows (MAFware)")

            If Response = vbCancel Then

            Selection.Collapse   'If canceled, unselect row, and exit

            Exit Sub

            End If

        Selection.Rows.Delete

        Response = MsgBox("All selected rows have been trashed.", vbOKOnly, "Delete Rows (MAFware)")

    Else

        NotinTable = MsgBox("Hey! Get your cursor inside the table already!", vbOKOnly, "Delete Rows (MAFware)")

    End If

   

End Sub

Yours,

 

Michael F

Word 2010 freezes when opening a file from a share drive

Posted: 15 May 2014 12:14 PM PDT

Issue: 

In our office, one user who is opening up a document from a share folder will experience Microsoft word freezing. 

  • It doesn't display a not responding message
  • It doesn't lock up and close out automatically
  • It doesn't show any behavior typical of an issue, however doesn't allow any user input.
  • Can not type, select anything on menu bar, can not minimize, or close out without using task manager.
  • You can move the mouse around, however it appears to be frozen. 
  • Everything else works, and nothing shows up in event viewer. 
  • Issue is intermittent

I have been able to duplicate it with one document, multiple times, and the only variable I can determine is that the file opens in Compatibility mode. 

For troubleshooting currently I've:

  • Repaired Office
  • Deleted the Word Data Registry Key
  • Deleted the Word Options Registry Key
  • Deleted the Normal.dot file 
  • Restarted the Computer

Next step was going to try to disable all add-ons, however, this issue only happened once today for the user and she is working so wasn't able to try that yet, however was hoping I might have overlooked something. 

Some additional information: 

Office 2010 32-bit

Windows 7 32-bit

Editing a Custom Content XML File AFTER it has been imported into Word 2013

Posted: 15 May 2014 12:05 PM PDT

I followed the instructions to create a custom content XML file and import it into Word under the Developer Ribbon.  It worked wonderfully for four of the five custom content fields, except one problem.  I used what is probably a reserved name "Version" and it has trapped a huge amount of text as it's content.  When I try and insert it as plain text, all this other content is displayed. 

I downloaded the Open Office XML SDK 2.5 and opened a copy of the file with it, and can actually see the problem, but cannot edit it with that tool.  I want to change the name from "Version" to "DocumentVersion" and delete the content currently saved between the start and finish flags and replace it with "V1.0".  Short of going back to an older copy of the file, editing the original text file containing the xml instructions, importing it again, and then inserting all my custom content fields again, I don't know what else to do.  Any suggestions?

Trish :)

Word 2013 automatically downsizes my large photos

Posted: 15 May 2014 11:39 AM PDT

Having trouble with my Word 2013 photo page template.  If I insert a picture that is file size of about 60 kb, Word will fill the entire page with that photo.  This is the result that I am after.  However if I insert a picture that is file size 1.2 mb, Word automatically downsizes the picture to 3.66 x 5.49.  I have to manually adjust the photo to fill the entire page.  This is a real problem because I insert and label many photos each day.  It takes a lot of extra time to manually adjust each photo.

Right now I have to use a computer that still has Word 2000 installed.  Word 2000 treats every picture the same, regardless of file size.  It fills each page with one photo, regardless of the photo's file size.

Is there a setting that I can adjust in Word 2013 to prevent it from downsizing my larger photographs to the default 3.66 x 5.49 size?  I need it to default to 7.19 x 10.79.

Thanks,

-Duke

Word Document open problem

Posted: 15 May 2014 11:39 AM PDT

sir when i open my doc. file it asks for 25 letters product key but i don know. could you help me to solve it? its Microsoft office home and Student 2007 program

System Restore - now Microsoft Office requires password

Posted: 15 May 2014 11:23 AM PDT

did a system restore as after latest useless update from Microsoft my IE scrollbar was jumping around all over the place.  System restore went well - laptop is now flying but when I went to open up Microsoft Office it is asking for a password.  God knows where that is - I bought my laptop and it had it on so how do I use it?

How do I get multiple labels to print on one page rather then a new document open for each address label I need? I should have 3 pages, yet I have 88

Posted: 15 May 2014 11:13 AM PDT

How do I get multiple labels to print on one page rather then a new document open for each address label I need?  I should have 3 pages, yet I have 88.  So frustrating! This was a mail merge from Excel to Word

How to stop Word from displaying useless ~$filenames when a document is open?

Posted: 15 May 2014 10:59 AM PDT

I've dealth with this for years and thought maybe there is a way of stopping this very illogical attribute of Word 2003.  When you open a document it chops off the first 2 characters of the file name and adds a this in front: ~$.  I hate having extra files visible in the parent folder.  Is there a way of getting Word to stop this?  Why they would opt for this is anybody's guess.  Bizarre software design.  

So if your file name is myfile it will look like this:  "~$file" I think.

SpellCheck accidentally combines two words

Posted: 15 May 2014 10:55 AM PDT

I have just come across a situation where SpellCheck suggests andlet's as a replacement during a Grammar check.

Forgot password for a protected word 2010 .docx file

Posted: 15 May 2014 09:53 AM PDT

Hello,

I lost the password of a .docx file that was saved with the open password option.

What can I do to open it or recover the password?

Thank you,

Windows Explorer Preview: Sorry, something went wrong and Word was unable to start. (24)

Posted: 15 May 2014 09:46 AM PDT

Hi,

So, I cannot see .doc, .docx and .docm previews in Windows Explorer (& other office documents too). When I click on an Office file, the preview tries to load for a little while, then a msgbox is displayed with the phrase:

Sorry, something went wrong and Word was unable to start. (24)

And a sole 'OK' button for me to click.

I tried:

repairing the installation;

Uninstalling using Microsoft's 'FixIt' to remove all traces of MS Office; 

Reinstalling; 

Repairing the reinstallation.

To no avail. 

Al the simple and not-so-simple attempts to fix the problem were fruitless. 

It's unfunny how the premiere office suite, running on the operating system from the same company, has problems displaying previews of its document files, but other files are displayed just fine. 

Maybe there is some other fix which I am not aware of, but I couldn't find it. 

Any help is appreciated.

Anyone had this problem and was able to fix it?

Word doc with maros does not work on 64bit machines

Posted: 15 May 2014 08:03 AM PDT

I have created a Word 2010 form with a number of macro's.  My computer is a 32 bit (has to be to imbed pdf's as this function does not work on 64bit) and my form works find on all other 32bit computers.  However those in the office who have a 64 bit computer the form does not work. 

When it is opened it requests that macro's are enabled, click yes and then they still don't work.

Any suggestion to fix this, other than seeing if we can get all computers downgraded!

Thanks

Shelley

Microsoft Word 2010 Multiple Windows

Posted: 15 May 2014 07:42 AM PDT

Hello,

My 'problem' will seem trivial but I'd like to know if there's a way around it anyways. I'm a bit of a perfectionist.

When I open a word document, it opens normally (maximised) but if I open another word document while the first one is still open, the second document will open in a smaller, windowed mode (as can be seen in the image attached below).

Is there a way to have every document open maximised by default? 

Thanks for your time.

microsoft office stopped working in win 7

Posted: 15 May 2014 07:17 AM PDT

soddenly MS Office stopped working.after I installed some Epsom scanner software.in includes the Abby print software..........based on some comments, I deleted the software.things are OK now..........

Replace multiple manual line break and paragraph mark with single paragraph mark

Posted: 15 May 2014 06:40 AM PDT

I received long word document from another one. There are multiple line break and paragraph mark among paragraphs. I want to replace those by a single paragraph mark so that I can format the space among paragraph equally. Please give me a code or show e the quickest way to do so.

Comments on word docs in iPad

Posted: 15 May 2014 06:24 AM PDT

I have installed word for iPad and applied 365 license. I can see the options to review, track changes etc but I can' t see how to add comments to a document. 

how to disable the automatic links at opening in msword2013

Posted: 15 May 2014 06:08 AM PDT

I have a lot of word 2003 documents with many links to acad drawings.

When i open these documents in msword 2013 all the acad links are opend one by one so that it takes serveral minutes to open such a document which is very enoying.

The option "update automatic links" is disabled and all the links are set to manually update. Despite all that all links are still opend when i open a word document.

Does someone know a solution so that this automatic opening of the acad links no longer occurs?

Same author, same year quotations

Posted: 15 May 2014 05:27 AM PDT

Hi,

Is there any way to automatically make Word distinguish between two works in referencing like this:

Johnson, 2003a

Johnson, 2003b

Rather than this:

Johnson, Is my hair on fire, 2003

Johnson, Yes it is, 2003

Using APA 6th edition and that should in theory work like the first example, but can't make it work...Can anyone help?

Much appreciated

Removing Endnote (programme) formatting in a Word document

Posted: 15 May 2014 05:17 AM PDT

I'm working on a document in which the author has used the programme Endnote for the bibliography. I am trying to remove the formatting, but can't. I tried removing the hyperlinks, but I still get a grey shadow over the citation when I click on it. Someone suggested using Replace, but I can't find the Endnote option in Replace either. I could cut and paste each citation into Notepad or something like that, but if there is a way to remove all of them at one go, it would save me a lot of time. I know that you used to be able to do this in earlier versions of Word.


Thanks!

"Feature appears to be broken" - Cannot Repair (Help)

Posted: 15 May 2014 03:46 AM PDT

I have recently bought Microsoft Office 365 University. 
After installing it correctly, I went to access Microsoft Word. While loading the program the notification came up: "We're sorry but this feature appears to be broken and needs to be repaired. Use the programs and features option in the windows control panel to repair Microsoft office".

 

After clicking "OK" the program loaded and then this notification popped up: 

I proceed afterwards to try both the quick repair, and the long repair options that Microsoft has to offer, and have no luck fixing my problem. 
I can not find help on the faq, or support services. 

Any useful information would be appreciated, thank you. 

Words get shifted when Copying and Pasting Arabic Text

Posted: 15 May 2014 03:16 AM PDT

Hi,

Does someone have an Explanation and a Solution to the following problem:

When I do an edit>Copy>Paste a line of "Arabic Text" from a page on the net - upon pasting, the words in Arabic Text get shifted in this way e.g. "The last word appears as the first word  upon pasting".

Why is the above happening? and is there a Solution to the problem?

Regards,

Saeed

WORD 2007 "Statement" Document.

Posted: 15 May 2014 02:37 AM PDT

Dear Madam or Sir:

 

I have recently started to experience a strange anomaly with Office 2007 WORD, wherein when I am now going to print a document I first am given what I am only able to describe as a "statement" of some kind.  It identifies as follows:

 

           Filename:                     01 — WORD Document

          Directory:                     E:\TV Programs & Information

          Template:                     C:\Users\Sherry-Greg\AppData\Roaming\Microsoft\Templates\Normal.dotm

          Title:

          Subject:

          Author:                          Sherry-Greg

          Keywords:

          Comments:

          Creation Date:             5/14/2014 06:08:00 PM

          Change Number:        2

          Last Saved On:           5/14/2014 06:08:00 PM

          Last Saved By:            Sherry-Greg

          Total Editing Time:    2 Minutes

          Last printed On:         5/14/2014 06:09:00 PM

          As of Last Complete Printing

                   Number of Pages:                1

                   Number of Words:               138 (approx.)

                   Number of Characters:       788 (approx.)

 

May anyone please be able to explain to me in a reasonable and intelligent manner why this is happening and what should I do to have it stop?

 

Respectfully yours,

 

Gregory Falasz

Word 2013 without menu in the tab 'save' 'save as'

Posted: 15 May 2014 01:49 AM PDT

Hello.

Sorry of my English, but it isn't my native.

When i try save document on the disc, i can't , because i don't open menu with options where i can save,name, etc etc.

if I press button on the right side for example 'my computer' - it don,t react.

I have the same problem on the 2 computer. There are installed Word - as separate application, and on the second computer is isntalled Office20103.

I wonder, whether printer driver can spoiled this option in the Word?

Office has Excel. In the excell all is ok. I can choose disc, name - working properly. So i think this is not a printer driver.

I hope someone have an idea to help me :).

best regards

JarekZ

Centering an image when wrapping it "In Line With Text"

Posted: 15 May 2014 12:49 AM PDT

Hello!

I am using Word 2010.

I need to insert an image (.jpg format) into a document, and I want it to be wider then the margins I set.

I want to keep using the "In Line With Text" object position option but when changing the image size to wider then my narrows, the image is not centered on the page anymore. How can I keep it centered with relation to the page and still use "In Line With Text"?

I hope you understand! Thank you very much.

Saving Word document - do you want to save changes to template?

Posted: 15 May 2014 12:16 AM PDT

Have recently upgraded to Office 365 / Office 2013.  I create most of my Word documents from a template. 

In Word 2010, when I created a document, and then saved it, Word would ask whether I wanted to save changes.  Fine. 

In Word 2013, it does the same.  But once I've answered that, it then asks whether I want to save the changes to ... (whatever the template was that the document was created from).  The answer is always no, so I click no.  Then another dialogue box pops up asking the same question again.  So I click no again, and the document closes. 

I would open and close 20-30 documents a day so it's a waste of time having to click no 40-60 times a day.  I can't see a setting in Options anywhere to change this.  Any ideas how I can stop Word from asking me whether I want to save changes to the template every time I close a document?

Mail Merge not showing full Data. Why is this?

Posted: 14 May 2014 11:48 PM PDT

To replicate the problem:

-from an excel sheet, we have headers row as follow (from A-D): ID, fielda, fieldb, fieldc. 

-column ID numbered from A2 - A11 as: 1 - 10

-B11: a very long text, a paragraph long; or just copy and paste "this is a problem" 20 times, then add an "end", as for marking the end of the data cell. (because this data will be cut off later when using mail merge)

-copy this very long text throughout C2-C11, then D11.

-now save, and open Word, and do a mail merge

-insert merge field for fielda, then fieldb, then fieldc on different line, 

-preview

-you should notice that on page 10, the data cell is cut off before reaching for the "end",

SOLUTION: turn on "Confirm file format conversion on open" from option in Word, then select Excel via DDE when opening the excel data using mail merge. 

QUESTION: Why is this? Does this have to do with the excel sheet formatting? Because we might not have encountered this problem before. We now also encounter this problem in Office 2010, Windows 7. Dev's input on this is highly appreciated. 

Thank you in advance.

-seeke

Microsoft Office 2013 Word and Outlook spell check NOT working - proofing tool not installing

Posted: 14 May 2014 11:37 PM PDT

Hi,

I have a customer with office 365 and having issues with Word and Outlook spell checking

I have tried several several fixes and nothing has worked.

I have tried offline & online Repair, re-installed Office, registry fixes, different profile etc

the only way i can get spell check to work is if i run word in safe-mode by pressing ctrl when opening Word

Every so often Word tells me that Proofing tool is NOT installed - i have installed this several times with no success.

please help!

- Yannick

Word 13 starts ONLY from existing documents and otherwise will not start and hangs

Posted: 14 May 2014 11:14 PM PDT

Microsoft Word in Office 13 running on Windows 7 will start only from an extant document. It will hang and need to close or restart if I attempt to open a second document. It will also hang from icon or from any template on the opening templates page whether a document is open or not. I have tried renaming normal.doc (did not help) as well as the tools at http://support.microsoft.com/kb/921541 (which disable Add-Ins in the startup subdirectory, did not help). Incidentally Nuance Create PDF Add-In is disabled by the program. Has anyone had a similar problem? Any suggested solutions?

Drop Down List Content Control

Posted: 14 May 2014 10:36 PM PDT

I am wanting to create a drop down list consisting of a tick and a cross. I can just type an X for the cross but am having trouble creating a tick.

I have tried creating a style using Wingdings font but can't create the tick in the 'value box'. Is there same way to do this or do I have to just type

'Yes' and 'No' as my options (which I'd rather not do).

Position of semicolon in Japanese version of Microsoft Word

Posted: 14 May 2014 07:54 PM PDT

We live in Japan. My wife recently submitted her PHD thesis to a British university. She wrote the thesis in English using the Japanese version of Microsoft Word. The university has pointed out that the semicolon, and dash are positioned higher in the text, (relative to the base line,) than they should be.  Is there any way to rectify this?

combining documents has failed

Posted: 14 May 2014 04:25 PM PDT

I have recently been tasked with combining hundreds of documents. It took a while to work out some problems (the numbers had to be changed from 1 to 0001 and I had to not add the first x documents) and when I finally figured out how to the process suddenly failed and now I can only do 18 at a time.

Thank you for your time.

My autonumbered list keeps losing its numbering, even with the numbered styles

Posted: 14 May 2014 03:54 PM PDT

I'm using Word 2013 and others in my group have Word 2010. I have a semicomplex document set up with Heading styles via a List Style. I also have steps within each section that need to restart within each section:

1

1.1

1.2

1.3

Step 1

Step a.

Step b.

Step 2

1.4

Step 1

Step 2

I set the headings up per Shauna's instructions, as I have done for other documents many times before, using a List style. I set up a multilevel numbered List Number paragraph style for the steps. I need to keep this simple.

We needed to add more sections from various authors to the document, so we sent each author a blank copy of the file for their additions. I then copied their sections into the original document. I expected some adjusting, as these are developers, and use Word only sparingly. Where I saw glitches, I reapplied the styles and made sure the List style was still linked. We are set up for collaborative editing via SharePoint and multiple reviewers/editors are in the document at once.

Each time a couple of the reviewers open the document, heading numbers revert to all 1's (1.1.1, 1.1.1.1) and the step numbers disappear. When I modify my List Style I have to relink each level to my Heading styles again, then reapply the Heading styles. I also need to set up my List Number paragraph style again. Are these two separate issues?

I have told the reviewers emphatically that they are to adjust the heading numbering ONLY by changing the Heading styles or using the Indent buttons and to adjust the step numbers only with the Indent buttons. The same numbering problems keep occurring.

I asked everyone to close the document and I fixed the numbering again. It was fine until everyone opened the document again. Could one person's settings throw off the numbering? Am I missing steps to set up these numbering schemes?

We're under a tight deadline and I need to get this straightened out fast!

Thanks!

Not able to install CentOS 4.2 - Forums Linux

Not able to install CentOS 4.2 - Forums Linux


Not able to install CentOS 4.2

Posted: 27 Mar 2006 09:05 PM PST

imotgm wrote: 

************************************************** ********************************

When I clicked on this link you provided, I received the below message:

http://www.plainfaqs.org/linux/


Object not found!

The requested URL was not found on this server. The link on the
referring page seems to be wrong or outdated. Please inform the author
of that page about the error.

If you think this is a server error, please contact the webmaster.
Error 404
www.plainfaqs.org
Tue Mar 28 19:53:17 2006
Apache/2.0.54 (Linux/SUSE)

Sandlin

SATA hard disks in linux

Posted: 27 Mar 2006 09:02 PM PST

shrini <com> wrote:
 

Mu.

http://linuxmafia.com/kb/Hardware/sata.html

Cannot save changes to sudoers

Posted: 27 Mar 2006 09:41 AM PST

In comp.os.linux.setup Keith Keller <san-francisco.ca.us>: 
 

Exactly, visudo is just a wrapper and should always be used to
edit /etc/sudoers.

[..]
 
 

As the OP pointed out he can modify other files in /etc, the
reason is, the fancy editor used doesn't know how to work with
readonly files.
 
 

'visudo' should respect $EDITOR, if set. If not it'll happily
default to vi(m). Makes sense thinking about the commands name
and the fact that there's only one editor. ;-)

--
Michael Heiming (X-PGP-Sig > GPG-Key ID: EDD27B94)
mail: echo qr | perl -pe 'y/a-z/n-za-m/'
#bofh excuse 325: Your processor does not develop enough heat.

DSL and remote X-windows session -- doesn't work

Posted: 26 Mar 2006 10:51 PM PST

On Mon, 27 Mar 2006 15:15:29 -0800, kroger wrote:
 
Does it start out fast, then get slow? I have noticed some DSL routers
will "time out" a valid connection if it goes idle for a few minutes. I
wrote this earlier about keeping a connection alive:
http://groups.google.com/group/alt.os.linux.slackware/msg/0f02a8a426b0a5a6

AFAIK, your DSL at 1.5M is about equiv to T1 speed. Think if anything
else could be blocking. Unfortunately, I don't know of a java based
application to do more tests with myself.

--
Douglas Mayne

What is a "bad page state"?

Posted: 26 Mar 2006 10:52 AM PST

Hallo Philosopher,

Op 27 Mar 06 schreef The Natural Philosopher aan All:
 

TP> My guess is take the motherboard back or get some ram that
TP> works..or
TP> replace the plug in IO cards one by one till it goes away..
TP> It looks horribly like a ram parity error..which may be the board,
TP> memory or an IO device or any combination of the three.

My first though was it was the ram as well. However, memtest86 does not
indicate any errors.

TP> If you are lucky, its just a duff ram chip. If not it may be be a
TP> bus timing issue in which case simply swapping till it works is the
TP> only way..

Tomorrow I'll take out the two internal modems, apart from the video card the
only two plug in cards, and see if that helps. Please keep your fingers
crossed
:)

Groetjes,

Hans.

jdh punt beekhuizen bij duinheks punt xs4all punt nl


real time vs system/cpu time

Posted: 26 Mar 2006 07:47 AM PST

CBFalconer <com> writes:
 
 

He is another of the people who think that the rest of the world is as
interested in his problem as he is, and will remember all of the details of
all the posts he has made on the subject.


Anyway, I just happen to remember that he was doing ls, and it was taking a
long time for it to display.



lilo and L 01 01 01 01 on older pc with 30GB hard disk

Posted: 25 Mar 2006 06:45 AM PST

On Sat, 25 Mar 2006 09:45:29 -0500, psantoro <com> wrote:

 
 
 
 

Lilo, living in the boot sector, uses the BIOS only to load the OS. Once the OS
is up and running, the BIOS is no longer used and the 1024 cylinder BIOS limit
doesn't matter.

how to use partitioned IDE hard disk of windows in Suse Linux

Posted: 25 Mar 2006 02:26 AM PST

champ wrote: 

If you have no intention of ever having windows use it directly then
reformating appears to be the best way to go.

If you expect to share a lot of files Bill Marcum's suggestion is easiest. If
you expect to share only a few files lnxread.exe is around some place. Linux can
read some Windows file formats. I haven't looked in years however.

I consider "best" to be in a format native to the OS. That may be wrong. I have
never tested it.

--
Coathanger abortion is a grossly underated and underutilized technology.
-- The Iron Webmaster, 3581
nizkor http://www.giwersworld.org/nizkook/nizkook.phtml
Lawful to bomb Israelis http://www.giwersworld.org/israel/bombings.phtml a11

Question about certificate in FC4

Posted: 24 Mar 2006 08:05 AM PST

Oscar Plamera wrote:
 

Thanks so much Oscar.

fiber on a linux workstation

Posted: 24 Mar 2006 04:53 AM PST

Matt Giwer wrote: 
Gigabit fibre-optic interface cards are available from Intel that plug into
your PCI-X bus just like any other ethernet card. So at the hardware level
you could do it right now.

I have a Verizon FiOS connection that is fibre-optic up to the box on the
side of my house and then 100 megabit ethernet into a D-Link DI-624 and
through that into a 100 megabit NIC in my machine. Since I signed up for 15
Megabit download, that will fit through a 100 Megabit NIC easily. They offer
30 Megabit service, but it is much more money. So that is pretty close.

But the stuff in the fibre-optic is 622 MHz and I guess my machine could
deal with that if I knew the protocol. It might not be IP. The fibre-optic
connection also provides my voice telephone service (up to 4 analog lines)
and cable TV service. So there is a lot of stuff coming down the fibre optic
link and if I ran that right into my computer, it would have to be able to
separate all that stuff.

--
.~. Jean-David Beyer Registered Linux User 85642.
/V\ PGP-Key: 9A2FC99A Registered Machine 241939.
/( )\ Shrewsbury, New Jersey http://counter.li.org
^^-^^ 06:15:01 up 11 days, 7:27, 3 users, load average: 4.25, 4.20, 4.10

Ethernet encore rtl8139 in CentOS 4.2 or RH EL 4

Posted: 24 Mar 2006 04:16 AM PST

The funny is that the other nic with same chipset is work in OS, but
this no.
I think that made the board is incompatible, because I have a nic
encore ENL832-TX works, and the new nic encore ENL832-TX-RENT whith the
same chipset doens't work

I will post the bugging hardware manufacturer,

thanks

Renato

Post install configuration

Posted: 23 Mar 2006 06:56 AM PST

On Tue, 28 Mar 2006 00:44:50 +0100, Dave Stratford wrote:
 

That's what I would have told you to do, after I was sure that grub saw
your SATA drive as (hd1).
 

Windows needs to "think" that it is the first drive on the machine, and
the map commands tell it that it is. When I put a Windows drive in my
machine, (they're in removable caddies) it is either (hd2) or (hd3) and
appropriate remapping allows it to boot from either of those locations.

Glad you got it sorted, on your own. The answers you dig for, and find on
your own, usually are never forgotten. You did good. ;-)

--
imotgm
"Lost? Lost? I've never been lost... Been a tad confused for a
month or two, but never lost."


LD_ASSUME_KERNEL in Fedora Core 5

Posted: 23 Mar 2006 06:54 AM PST

Lenard <0.0.1> writes:
 
 
 

He guessed right. It is not installed by default. But you gave him an easy
way to fix it.
 
 
 
 


 

Using minicom to talk to a router

Posted: 22 Mar 2006 03:12 PM PST

On Fri, 24 Mar 2006 10:03:20 -0800, Charlie Gibbs wrote: 
 

FWIW: 'lsof /dev/ttyS*' should tell about that (unless it's one of those
USB<->RS232 adaptors, in which case probably ttyUSB* or some such).

[snip]
 

And so i learn, thanks for the info!
 

That i did/do know though.
http://www.totse.com/en/technology/telecommunications/bitsbaud.html

--
-Menno.

F**king Beagle on Suse 10

Posted: 22 Mar 2006 01:55 PM PST

Ron Albright wrote:
 

You need to find what is starting beagled and either induce it to quit
starting beagled or have it start beagled with "beagled
--disable-scheduler". Once beagled is running it does its own scheduling.

Best thing to do about it IMO is remove the whole package.

--
--John
to email, dial "usenet" and validate
(was jclarke at eye bee em dot net)

linux to unix

Posted: 22 Mar 2006 06:14 AM PST

com wrote: 

Pretty sure thats just a standard VT100 emulator Or an X window server.

No problems there.

and RPM 

thats just fine. That is a windows LPD server. Linux will talk to that
all right, but you may need to play around setting things up.

With Samba, you may not need it either.

 

But these aren't Linux applications, they are windows applications..oh..

Do you mean you want to get rid of WINDOWS and replace with Linux? not
get rid of SCO UNIX and replace with Linux?

If there are any 

Right.
Short answer is yes, it will all work. Long answer is it will take some
careful configuration, because chances are there is some history in this
legacy system that will need to be replicated.

I bet what you have is a back office system with Unix databases and
applications, that need to be driven by the client terminals and take
printer output back to the PCs for form printing etc yes?

Linux would be ideal for this, stripped down to a minimal system for
reliability.

The terminal emulation is easy there are loads of terminal emulators on
Linux - and from memory there are ones that look just like sco unix
available. Smarterm may even do a Linux one themselves, but I am fairly
sure hat character screens under X windows are in the x-window system
somewhere.

The printing is a doddle - its native to Linux anyway, though you may
need to add a few scripts to replicate any special formatting you have
with the RPM packages.

Get one PC and convert to Linux and get playing. When you are certain
its rock solid, convert people one at a time.

If your network is trusted and secure, you may even be able to use rsh
so that the users only log in once - to their machines - and their ID
replicates across to the SCO servers on remote shell terminal sessions.




 

vmware on linux

Posted: 22 Mar 2006 05:04 AM PST

com wrote:
 

We use VMware GSX or what is called server now to do this over a
network. Download the freely available VMware server product and then
the vmware-monitor program for Linux or Windows. You can install
whatever you want, share it, etc.

Works pretty well for us at work including hosting a variety of Linux
distributions virtually so we can have access to up to 5 different
distributions for testing and support.

You don't need to share things over NFS or any of that. Most likely,
the VMware guests you already have will work with server but you may
need to run them in compliancy mode or something. I don't recall the
issues doing that.

You will need a rather robust server if you intend on serving lots of
guests or having lots of people hitting the vmware GSX server. As an
example, I deployed it on a Debian Testing box running someting like
dual zeons, 4g of memory, and RAID 5 Seagate drives. This was
something like an HP DL 380 2u rack mount server located in a
collocation facility.

--
Michael Perry | Do or do not. There is no try --Master Yoda
org | http://www.lnxpowered.org

Using rpm/yum in "personal" per-user mode (without root permissions)

Posted: 21 Mar 2006 05:47 AM PST

Andy Buckley wrote: 

You're quite right: I've used epkg myself, for precisely that. It's very
useful when users have need of multiple gcc releases or testing for new
software packages such as Apache or Samba releases.


Status of Linux on Centrino?

Posted: 21 Mar 2006 05:16 AM PST


Thanks for the comments!

Looks like I might be choosing one of the non-duo Centrino
models, to be on the "safe" side -- those are the majority
of models available, so maybe I'll find the one with the
right features and peripherals anyway.

Thanks,

Carlos
--

Best Linux distribution for a Mini-ITX server?

Posted: 21 Mar 2006 04:17 AM PST

In article news:<com>, Nico
Kadel-Garcia wrote: 

It's not a waste of money. A64 systems give much better 32-bit performance
than most 32-bit Athlon systems and are only slightly (if at all) more
costly -- and (almost conicidentally) offer an upgrade path to 64 bits
should it ever be needed.

Why not use 64 bits anyway? Because the software you want to use may not
yet exist in a reliable 64-bit form. Using a 64-bit system to run the
32-bit version gives you the flexibility to run with what works now, and to
upgrade in the future.

OTOH, for a low-traffic Apache server the relatively modest and very low
power consumption/low noise EPIA systems are ideal. A64 is definitely NOT
essential for such an application (though it might help when building the
system, if using Gentoo ... distcc is your friend).

Cheers,
Daniel.


putting device driver on diskette

Posted: 20 Mar 2006 05:34 PM PST

org (Dushan Mitrovich) said: 

Please, do read my other response (from Tuesday).

What you have, apparently, is a filesystem image. And that is something
you write not on a mounted filesystem, but on a raw device.

As you did not have the floppy mounted when you ran the 'dd', you just
wrote the file into directory /mnt/floppy/, which apparently resides
on your hard drive.
 

.... /mnt/floppy/ can be (and in this case probably was) on your hard drive.
The same directory location couls also point to a floppy, if you had
a floppy mounted in that location (and in order to mount a floppy,
you must first create a filesystem on it - either by mkfs, or by
writing a filesystem image onto the floppy).
 

Sounds like it's working exactly as it should.
--
Wolf a.k.a. Juha Laiho Espoo, Finland
(GC 3.0) GIT d- s+: a C++ ULSH++++$ P++@ L+++ E- W+$@ N++ !K w !O !M V
PS(+) PE Y+ PGP(+) t- 5 !X R !tv b+ !DI D G e+ h---- r+++ y++++
"...cancel my subscription to the resurrection!" (Jim Morrison)

easy way to make money

Posted: 20 Mar 2006 01:06 PM PST

Wow, and one wonders why Linux struggles for popularity. Here's the
perfect Linux representative to the world. Thanks for your input Dan C.

Multiple PXE Installation at the same time

Posted: 20 Mar 2006 10:40 AM PST

As resquested, here is the configuration. I didnt't add the host part
because I didn't wanted to add each 80 workstations info in that file. I
doesn't make sense. Give me your opinion.

Thx

ddns-update-style interim;
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.10 192.168.0.254;
default-lease-time 3600;
max-lease-time 4800;
option routers 192.168.0.2;
option domain-name-servers 192.168.0.2;
option subnet-mask 255.255.255.0;
option domain-name "l.pxeserver.com";
option time-offset -7;
option ntp-servers 192.168.0.2;
option netbios-name-servers 192.168.0.2;
filename "pxelinux.0";
}


"Nico Kadel-Garcia" <net> a écrit dans le message de news:
com... 



Suggest a linux distro - programming/development machine

Posted: 20 Mar 2006 07:48 AM PST

A 21-03-2006 01:41, ray escreveu: 

In the last Wednesday I've installed successfully Gentoo Linux 2006.0 in
a desktop computer using the Live CD. I've choosed a dynamic stage3
install and a GRP install.

I started the install at 15h30, and it ended at 19h00. I don't remember
if the GRUB was automatically configured or if I've configured it
manually, but that's only writing four or five lines.

Previously, the installation method was really more tedious, but this
new installer automatizes the installation.
 

Not only. With Gentoo, IMO, the configuration scheme is better. You can
configure things easier than in other distros.
But really speed is the main point. I was using Fedora Core in my
desktop, and then I've upgraded to Gentoo. Previously it was walking.
Now, it's running.

But if somebody wants, it's possible to use the pre-compiled binary
packages supplied with the install CD (GRP), or to use a binary packages
mirror.


--
Nuno J. Silva (aka NJSG)
Lisbon, Portugal
Homepage: <http://njsg.no.sapo.pt/>
Registered Linux User #402207 - http://counter.li.org

Using Mozilla Thunderbird 1.0.7
Gentoo Linux -- Linux 2.6.15-gentoo-r1 i686 Mobile Pentium II
Intel Pentium II (80686) Deschutes - 334Mhz -- 256 Mbs SDRAM
Intel Mobile Pentium II (80686) - 300 Mhz -- 64 Mbs SDRAM
Intel Pentium (80586) - 166 Mhz -- 32 Mbs RAM

-=-=-
``There's always an answer.''
-- Natalie Portman Hershlag, talking about Maths

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFEJo+r8uhttueYbMMRAgd0AJ45MxLBihF2dwOisZvI7K t9kGBRiQCdHMGe
lJT64djzs5dVyRp4yB80Q9E=
=2uHH
-----END PGP SIGNATURE-----

Modifying GRUB bootloader for use with windows only system.

Posted: 20 Mar 2006 06:22 AM PST

Glenn wrote:
 

Lenard <0.0.1> replied:
 

I disagree with your contention that "everything you need" is provided
by the 2nd link. In particular, no where in the grub manual does it
talk about partition formats (e.g. ext2, fat, ntfs, reiserfs, et al),
which would seem relevant given that the /boot/grub directory must
reside in some partitition. On my linux system, /boot is an ext2
partition. And, this is not meant to be a criticism of the grub
manual. It is readable, informative, and covers almost everything
that it should cover, except for this one little nit about file
systems, and for 99.9% of the cases (or more) this issue is just a
nit.

However, if you follow the 1st link and then goto the grub wiki, you
can find some interesting projects like grub4dos and wingrub (just to
mention 2). If I read those pages correctly, you can get grub to work
on a fat partition if you use their tools. There look like there are
other projects which will work with grub hosted on an ntfs partition.

Hope this helps,
-Chris

************************************************** ***************************
Chris Clark Internet : std.com
Compiler Resources, Inc. Web Site : http://world.std.com/~compres
23 Bailey Rd voice : (508) 435-5016
Berlin, MA 01503 USA fax : (978) 838-0263 (24 hours)
------------------------------------------------------------------------------

Tracking % complete for fixed work task Microsoft Project

Tracking % complete for fixed work task Microsoft Project


Tracking % complete for fixed work task

Posted: 09 Jun 2005 01:55 PM PDT

In addition to Mikes comments, make sure you're clear on the difference
between work and duration. % Complete in Project refers to duration, not
work, even on fixed work tasks. There is a whole different field, % Work
Complete, that refers to the work progress. They may be the same, perhaps
one could even say they usually are the same, but that's by no means
universal. Consider a task that starts Monday at 8am and requires 1 hour of
work on each of Mon, Tue, Wed and Thur, with a full day to finish it off on
Friday. Perhaps it's paint that has to dry overnight between coats. The
duration is 40 hours, the time between when work first happens and when it
ends (8am Mon - 5pm Fri). The work is 12 hours (1+1+1+1+8). It is now 5pm
Thur and everything has gone according to plan. We have passed 32 out of
the 40 required hours of duration so the task is 80% Complete. But we have
done 4 out of the 12 hours of work required, so the task is 33% Work
Complete.
--
Steve House [MVP]
MS Project Trainer & Consultant
Visit http://www.mvps.org/project/faqs.htm for the FAQs


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

EV Formulas

Posted: 09 Jun 2005 10:50 AM PDT

We don't use these fields for real earned value but here are the calculations:

BCWP: When a task is first created, the BCWP is $0.00. As soon as a
baseline is saved and progress is reported for the task (as actual work,
actual duration, or percentage of work complete), Microsoft Project
calculates BCWP. This calculation is based on the percentage of work
complete, as compared with the task's baseline duration. Microsoft Project
then calculates the cumulative baseline cost and provides the value of what
the task's actual costs should be, given the task's progress to that point in
the task's baseline duration.

BCWS: To calculate BCWS for a task, Microsoft Project adds the timephased
baseline costs of the task up to the status date.

ACWP: When a task is first created, the ACWP field contains $0. As
progress (percentage of completion or actual work) is reported on the task,
Microsoft Project calculates the actual cost of work performed (ACWP). This
is the cost of actual work plus any fixed costs for the task to date. By
default, how and when ACWP is calculated depend on the assigned resources'
Standard Rate, Overtime Rate, Per Use Cost, and Cost accrual settings in the
Resource Information dialog box, as well as the actual work reported, fixed
costs for tasks, and the status date or today's date. Microsoft Project can
calculate ACWP even if you do not have resources assigned. In this case, the
calculations are based on progress (percentage of completion or actual work)
and fixed costs to date for the task. If you prefer, you can have ACWP
calculated based on your entries in the Actual Cost (timephased) field. On
the Tools menu, click Options, and then click the Calculation tab. Clear the
Actual costs are always calculated by Microsoft Project check box.




"bauer172uw" wrote:
 

Alll Gantt bars are grey in MSP2003

Posted: 09 Jun 2005 10:22 AM PDT

That is a good (tres bien) suggestion. I know the Gantt draws in 'layers'. I
am away from my pc, but I will verify first thing!
Merci mille fois.

"Gérard Ducouret" wrote:
 

Gant Chart View

Posted: 09 Jun 2005 09:56 AM PDT


Hi Harry,

Welcome to this Microsoft Project newsgroup :)

Scroll the Gantt chart horizontally until the first task (Project Summary
task?) begins at the left edge of the chart.

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



Harry wrote: 



break in task bar with different resource allotments

Posted: 09 Jun 2005 07:48 AM PDT


Hi redlurered ,

Welcome to this Microsoft Project newsgroup :)

You could use the Resource Usage view and type in the Work hours you want
when the resource is available.

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



wrote: 



Multilevel Resource Grouping Functionality

Posted: 09 Jun 2005 07:27 AM PDT

I see what you mean. Well we're not gonna buy AXTAPA, we are already on JD
Edwards, so I'll just hope for the best and muddle through in the meantime.
Maybe I'll see if I can code something that will work. In my non-existent
spare time

Thanks again,

Kevin

"Jan De Messemaeker" wrote:
 

How do I use initials in Gantt chart?

Posted: 09 Jun 2005 03:53 AM PDT

Hi Boris,

In the hours to come I'll reply to that one. Promise.

--
Jan De Messemaeker
Microsoft Project MVP
+32 495 300 620
http://users.online.be/prom-ade
"BorisS" <microsoft.com> wrote in message
news:com... 


Make a group of Ressources.

Posted: 09 Jun 2005 02:58 AM PDT

Hi Mat,

You have to give them all 3 each tilme.
The good news is that this is very easy through the resource assignment
window:
Select all tasks for the group
select the 3 resoureces
Click Assign
HTH
--
Jan De Messemaeker
Microsoft Project Most Valuable Professional
http://users.online.be/prom-ade/
+32-495-300 620
"MAT" <microsoft.com> schreef in bericht
news:com... 
personen, 
each 


custom report

Posted: 08 Jun 2005 10:04 PM PDT

Hi Boris,

(a) I know next to nothing about Project's reports. I doedcided I don't like
them, I print from views.
(b) Dop you have a column Level1 as well? I honestly do not remember my
macro. is it in Text2?
I'll suppose so.
Try this
Draw the Split bar to the right such that you will only print characters and
figures
View, Table, More Tables, New, give a name, define columns as follows
Text1
Text2
Name
Start
Finish
Resource Names
Notes

OK, Apply
Adjust column witdth as appropriate.

Project, Sort, Sort by...
Name
Start
And verify "Keep Outline Structure" is on

Tell me what's wrong.

HTH
--
Jan De Messemaeker
Microsoft Project Most Valuable Professional
http://users.online.be/prom-ade/
+32-495-300 620
"BorisS" <microsoft.com> schreef in bericht
news:com... 
of 
4): 
Date 
to 
done 
company, 
assigned 
because 
several 
When 
specifically 
Excel 
field 
been 
Text1 


Breaking up Master Projects

Posted: 08 Jun 2005 06:02 PM PDT

In article <com>,
D Pingger <microsoft.com> wrote:
 

Ping,
Basically, my macro takes a dynamically consolidated master file with
external links between subprojects and converts it to a static master
wherein the external links are converted to standard Predecessors and
Successors. I'll tell you up front, the macro is not freeware but if you
want more information write me direct. Note: I suspect a problem with my
e-mail recently so if you send me a note leave a response to this thread
saying you did.

John
Project MVP

Using Tasks to Force MSP to Consider Vacation Time

Posted: 08 Jun 2005 04:51 PM PDT

2003 - I will look into this further

BTW, I wasn't sure what you meant about "giving everyone a full-time
Calendar". Also, what I was finding is that if someone goes on a long
vacation which initially conflicts with a work task, MS Project forces the
task into the vacation and splits the vacation, which will surely upset the
employee! The only way around this I found was to set the priority of the
vacation to be 1000 so it took precedence. Is this the right approach? How
will levelling resolve it (as your article suggests)?

tx


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

do 
message 
will 
and 
that 
instance 
as 


Colored Text does not appear in Reports

Posted: 08 Jun 2005 01:57 PM PDT

seth wrote:
 

Reports do not use the same formatting as views.

You might try looking at creating views that group, sort, filter the
data in a way to where it looks like a report. Then the coloring you
did would show.

Sorry

--
Brian K - Project MVP
http://www.projectified.com
--
Senior Trainer - Electronic Arts
--
QuantumPM Associate
http://www.quantumpm.com

How do I sum multiple rows of different colors

Posted: 08 Jun 2005 08:49 AM PDT

JackD wrote:
 

Sure but then dont call it 50% complete. Call it "In Progress". It
seemed as if his request would have made a summary task with 5 complete
tasks and 5 tasks that were either not started or in progress 50%
complete. This is just wrong data even if all the 'yellow' tasks were
99.9% complete the summary would only be close to 50% complete if all
the tasks were the same 'size'. If all the complete tasks were 1 day
and the 'yellow' or 'red' tasks were 20 days then it gets even worse.
The other side of the same bad coin is true if the complete tasks were
really long and the incomplete ones were short. It would say 50%
complete when really it was almost 100% complete.

My fear with this is that someone (an exec or upper manager) will not
get that these numbers are approximations. I am against using what
appears to most people as an exact measure (50%, 75%, etc) for
something that is behind the scenes only a very rough and inaccurate
measure.

--
Brian K - Project MVP
http://www.projectified.com
--
Senior Trainer - Electronic Arts
--
QuantumPM Associate
http://www.quantumpm.com

What is Project Capable of...?

Posted: 08 Jun 2005 06:27 AM PDT

You have all be very helpful and for that I thank you. I just wanted to make
sure I was getting my moneys worth out of project, it will do a great job
scheduling our many tasks. Thank you all

Steve Budzynski

"Rod Gill" wrote:
 

which version to get?

Posted: 08 Jun 2005 02:39 AM PDT

Adding a note to Mike's answer, Project Professional only adds functionality
to what you'd get with Project Standard when it's being used in a network
with Project Server installed. Without Server, the two are essentailly
identical. With Server, the Project Managers who create and maintain the
plans all need to have MS Project. Resources who access the plan, perhaps
update it, but who will not be modifiying it access the plan with Project
Web Access through their browser.

--
Steve House [MVP]
MS Project Trainer & Consultant
Visit http://www.mvps.org/project/faqs.htm for the FAQs

"Jay" <com> wrote in message
news:c2zpe.5991$xtra.co.nz... 

S Curves for milestone reporting

Posted: 07 Jun 2005 06:51 PM PDT

Excel is made for calculation and graphing. Project does not offer that sort
of function. That is why they made it easy for Project to export to excel.
In my opinion that is the simplest and best ways. You could certainly cobble
together code which would graph within project but that would be a fairly
serious development effort and would not offer the wide functionality that
excel offers.

--
-Jack ... For Microsoft Project information and macro examples visit
http://masamiki.com/project
or http://zo-d.com/blog/index.html
..
"John" <com> wrote in message
news:microsoft.com... 
using an 
from 
appreciated. 


Tutoring agreement or contract.

Posted: 07 Jun 2005 02:09 PM PDT

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

arenee,
This is a newsgroup dedicated to Microsoft Project. Unless someone here
has first hand experience with tutoring, I doubt you will get much
response. I suggest you either consult an attorney or perhaps do a
search on the internet for "tutoring", "self-employment contracts" or
similar.

John
Project MVP

License change on same workstation

Posted: 07 Jun 2005 11:49 AM PDT

Thanks Steve,

We came to the same conclusion here. The problem was that my CD drive
wouldn't read the new CD (it had been acting flakey for a while). I
canabalized a DVD burner (and software) off of a newer machine destined for a
temp and installed it in mine. Did the uninstall and re-install in less than
3 minutes.

Best regards,

Kevin

"Steve House [Project MVP]" wrote:
 

Microsoft CRM - Tutorials

Microsoft CRM - Tutorials


Tutorials

Posted: 12 Jan 2005 05:58 AM PST

The MS CRM SDK is a good place to start. I'm sorry - but I don't have a
link for you.



"Woltore" <com> wrote in
message
news:talkaboutsoftware.com... 


Autonumbering

Posted: 12 Jan 2005 04:21 AM PST

For anyone interested I sussed it - all the numbers are stored in the
OrganizationBase table. ;-)

"Ruthie" wrote:
 

Integration with FoxPro

Posted: 11 Jan 2005 10:57 PM PST

Yes, its posible

--

Alexánder Osorio
Business Intelligence Specialist
Caracas - Venezuela

"Parasuraman" <com> escribió en el mensaje
news:036401c4f874$06c31700$gbl... 


I need to move my CRM data files

Posted: 11 Jan 2005 05:03 PM PST

Agreed,......depending on your SQL admin expertise its a rather simple
move,.....literally just a few clicks. Either way, give yourself plenty of
time (the system will be down, and these files will likely be huge and
depending on the speed of your server, it could take a while to migrate the
files), and make backups!!!

-Gary

"Frank Lee" <microsoft.com> wrote in message
news:com... 
you 
same 
to a 
the 
are 
reports 
the 
this. 
http://www.microsoft.com/downloads/details.aspx?FamilyID=BFCED393-61DB-49AF-9A50-4A90B311FA7D&displaylang=en 
detach 


SFO Activity - Monitoring Sync

Posted: 11 Jan 2005 02:45 PM PST

> Is this the first time your'e gone offline with this machine?

Yes.
 

It is still running right now, we're 2 hours short of 24 hours now. The
Task Manager on the client shows plenty of Outlook activity, so for now I
will still assume that it is working.

We've had other clients go 4 hours for the first sync, but nothing like
this. This laptop is definitely the dog in terms of performance, but the
difference in hardware is not on par with the difference in sync time.
 

Yes.

 

I was thinking I would see a lot of activity like that, but as of yet I
haven't seen it (in 2 roughly half-hour long traces).

Thanks much, if you learn any more specifics I would love to hear them.

Customize Home page

Posted: 11 Jan 2005 11:28 AM PST

If you're new to MSCRM, you'll find much more strange things along your
adventure!

:)

-Gary

"Domenico Truppi" <it> wrote in message
news:uqruX$I%phx.gbl... 


Document Control

Posted: 11 Jan 2005 10:37 AM PST

Looks interesting, but I need something more advanced, something that can
maintain revisions, approvals, etc.....

thanks though,
Gary

"Support www.MSCRM-ADDONS.COM" <com_NOSPAM> wrote in
message news:uAb94AB%phx.gbl... 


HTML Side in php

Posted: 11 Jan 2005 09:13 AM PST

Best bet would be to write a webservice that uses the CRM SDK to process the
data and then call the webservice from your PHP app.

Matt Parks
MVP - Microsoft CRM

----------------------------------------
----------------------------------------
On Tue, 11 Jan 2005 09:13:02 -0800, Robert <microsoft.com>
wrote:

Hi,

How can I get information from a HTML side and which uses also php on some.
On that webpage interested contacts put their name and address on the side,
so they can get more information from the company. How should the information
be transferred that it goes directly into the MS CRM system and automatically
a contact is created? Are there any Tools? Is it possible that the
Information can be transferred to the SQL Database?

Thanks

Startside in MS CRM

Posted: 11 Jan 2005 08:57 AM PST

Each user can select which section(Workplace, Sales, Home Page,etc) is loaded
when they start CRM via the Options.

Matt Parks
MVP - Microsoft CRM

----------------------------------------
----------------------------------------
On Tue, 11 Jan 2005 08:57:03 -0800, Robert <microsoft.com>
wrote:

Hi,

Is is possible to change the startside of MS CRM for different usergroups.
the arrangement of the side? and can the user himself adjust the startside as
he wants it?

Thanks

crm and outlook - popups

Posted: 11 Jan 2005 07:09 AM PST

Hi Jen:

This is an Outlook security message. Download the free programme
"ClickYes" to stop this happening.
http://www.contextmagic.com/express-clickyes/
Cheers
Cathy Allington

Frank Lee wrote: 
setting that 
Support 

Apply Rule

Posted: 11 Jan 2005 04:43 AM PST

Can you me more specific, please?

I have a client that wants know how can deactivat a rule for some accounts.
The idea is: he apply a rule for one account and later e wants to deactivat.

"Matt Parks" wrote:
 

Windows authentication

Posted: 11 Jan 2005 04:01 AM PST

go to:
control panel => internet options => security tab,
choose the local intranet then click the custom level,
scroll down until you see user authentication (the last option), click
the "prompt for user name & password"

Sample Java Sales process needed

Posted: 11 Jan 2005 03:36 AM PST

Hi John,

Thanks very much for your help! I am definetely goign to test this. However,
where in this code do I enter my stages, e.g. 'Contact' , 'Proposal' etc etc.

I am not an expert here, so please bear with me...

This sales process is done using the salesstagecode field, right?

Thanks

Michiel

"John O'Donnell" wrote:
 

filtering records by custom criteria

Posted: 10 Jan 2005 10:59 PM PST

You should have the option from the Actions menu in Advanced Find to "Send
Direct E-mail". Is that not available to you? You can select all the records
on the current page, all records from current view, or just selected records,
and send an email template. (This is available from the web UI Advanced Fnd.
From the Sales For Outlook UI I believe you only have mail merge available.)
You can also Apply Rules manually from the same Actions menu.

Matt Wittemann
http://icu-mscrm.blogspot.com

"Lutz" wrote:
 

crystal report printing problem

Posted: 10 Jan 2005 01:45 PM PST

Well I re-published and did an IIS restart as well as a verify database
within the crystal tool. Unfortuanly for me, the outcome is still the same.
With any instance of the CFScreatedby within the report, I receive a 'Query
Engine Error' when the report attempts to open. Comment out the field name,
works like a charm.

Any other ideas?

TIA

"John O'Donnell" <com-nospam> wrote in
message news:%23CNORQE%phx.gbl... 
The 
exists 
needed 
tells 
It 
the 


Customizing Stage and Status Reason and other "Action" items

Posted: 10 Jan 2005 01:23 PM PST

The change stage action will only present the stages of the Sales Process
associated with the Oppy. Thus, by changing the Sales Process you change the
drop down.

The reasons in the "Close" opportunity form can be changed by editing the
Opportunity form. By default, the Status Reason field is on the Admin tab. If
you modify the values in this field, you can select the values based on the
various states. This modifies the Close Oppy picklists.

Matt Parks
MVP - Microsoft CRM

----------------------------------------
----------------------------------------
On Mon, 10 Jan 2005 13:23:06 -0800, Kim <microsoft.com> wrote:

When an active opportunity is open and you choose the action menu, one of the
choices is to change the stage and another is to close an opportuinity.
However the picklist associated with these tasks are not what we need. How do
you modify these picklists? I know how to modify a picklist on items on the
default opportunities form. I know accounts and contacts, etc have "actions"
also that I may want to customize. I need to know where in the
customizations, I can alter the "actions" items schema, etc.
thansk in advance,
Kim

The basics of mail merge - quote.dot

Posted: 10 Jan 2005 12:45 PM PST

Tamar,

Using Quote form:
When in the outlook client you need access a created quote and open it, in
the menu you will need to select the "mail merge" option which will then take
you to the template screen (which you will need to place your quote) so you
can then insert the details into the quote.dot or your custom one.

Customizing quote form:
We hit our heads against a wall a lot attempting to customise the quote.dot.
Microsoft guy:
As I understand correctly, you want to insert text between the address and
the product listing, effectively creating a title screen, some corporate
information, and finally the product listing on the last page.

If that is correct, then the trick is to ensure that all your corporate text
is included in the MERGESEQ=1 block, since that indicates that the content
will only be produced once for the entire document. Alternatively you can
insert it in the MERGEFIELD=lastitem section, since that gets generated only
once when the last list item is produced.

He sent a revised quote to me. If you want it then just e-mail me:
com.au

Hope it helps
Nathan

"tamar" wrote: