> Thanks for the help Greg. I am about to give up on this for the time
> being. I'm about all the "IT" they're going to devote to this
> project at the moment.
>
> This really screws up the works because we now need to keep WP for
> the time being and the installation of WP it is not compatible and
> won't run with some other stuff installed.
>
> "Greg Maxey" wrote:
>
>> Ned,
>>
>> There is a batch process in that addin to process .doc files to
>> .docx files. If you want to process a batch of WordPerfect files
>> then someone in your IT dept would need modify the batch process
>> procedure to include WordPerfect format files and then create
>> conversion procedure. Perhaps I misled you but I was only providing
>> a means of processing each Word file and not the specific process.
>>
>> Ned23 wrote:
>>> I found it and installed the templates, but the word perfect files
>>> end in .wp or .wpd extentions, not ".doc." Do I need to re-name
>>> them all to .doc before I run the processor?
>>>
>>> "Greg Maxey" wrote:
>>>
>>>> The link for the two templates required is on the tips page.
>>>>
>>>>
>>>> --
>>>> Greg Maxey - Word MVP
>>>>
>>>> My web site
http://gregmaxey.mvps.org>>>> Word MVP web site
http://word.mvps.org>>>>
>>>>
>>>> "Ned23" <Ned23[ at ]discussions.microsoft.com> wrote in message
>>>> news:3864F2BA-DC6B-4641-8CBB-4B51EB9481BB[ at ]microsoft.com...
>>>>> Thanks Greg,
>>>>>
>>>>> Do you have a link to the template file for this?
>>>>>
>>>>> Ned.
>>>>>
>>>>> "Greg Maxey" wrote:
>>>>>
>>>>>> See:
>>>>>>
http://gregmaxey.mvps.org/Process_Batch_Folder.htm>>>>>>
>>>>>> --
>>>>>> Greg Maxey - Word MVP
>>>>>>
>>>>>> My web site
http://gregmaxey.mvps.org>>>>>> Word MVP web site
http://word.mvps.org>>>>>>
>>>>>>
>>>>>> "Ned23" <Ned23[ at ]discussions.microsoft.com> wrote in message
>>>>>> news:31C5411C-A997-452D-9D08-50522AF867EB[ at ]microsoft.com...
>>>>>>>
>>>>>>> Okay, thanks for that information. I created a file and
>>>>>>> assigned your macro to a command button in the file but the new
>>>>>>> macro security features
>>>>>>> of
>>>>>>> Word 2007 make this very complicated.
>>>>>>>
>>>>>>> I had planned to send this "button" file to different people in
>>>>>>> our unit
>>>>>>> so
>>>>>>> that they could convert their own files, folder by folder,
>>>>>>> however, I think
>>>>>>> that explaining to them how to enable the macros is too
>>>>>>> complicated for their
>>>>>>> skill levels.
>>>>>>>
>>>>>>> One would think that when a company like Microsoft successfully
>>>>>>> out-competes
>>>>>>> the competition and basically puts them out of business that
>>>>>>> they would at
>>>>>>> least make an effort to support conversions of their files to MS
>>>>>>> formats,
>>>>>>> but
>>>>>>> I guess this is not the case.
>>>>>>>
>>>>>>> This is another good argument for me to use to push us to go to
>>>>>>> Open Office
>>>>>>> instead of paying all this money for MS Office 2007 licenses.
>>>>>>>
>>>>>>>
>>>>>>> "Graham Mayor" wrote:
>>>>>>>
>>>>>>>> There is no batch conversion wizard - indeed no wizards
>>>>>>>> whatsoever. If you
>>>>>>>> have the wizard from an earlier version it is essentially a
>>>>>>>> template containing macros. It shouldn't be too difficult to
>>>>>>>> modify it to save as
>>>>>>>> docx, though I have not looked closely at the code - and in any
>>>>>>>> case it
>>>>>>>> probably doesn't do any more than the macro.
>>>>>>>>
>>>>>>>> --
>>>>>>>> <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
>>>>>>>> Graham Mayor - Word MVP
>>>>>>>>
>>>>>>>> My web site www.gmayor.com
>>>>>>>> Word MVP web site
http://word.mvps.org>>>>>>>> <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
>>>>>>>>
>>>>>>>>
>>>>>>>> Ned23 wrote:
>>>>>>>>> So, question to Graham: Is there no batch conversion wizard
>>>>>>>>> on 2007?
>>>>>>>>> Is that why you recommended the macro?
>>>>>>>>>
>>>>>>>>> "Graham Mayor" wrote:
>>>>>>>>>
>>>>>>>>>> If the Word Perfect filter is installed, put the files in a
>>>>>>>>>> folder and run the following macro to open them and save as
>>>>>>>>>> docx. The original is left in the same folder. I would
>>>>>>>>>> suggest testing it on a
>>>>>>>>>> small number of files.
>>>>>>>>>>
>>>>>>>>>> Why don't you simply open them and save them as docx as you
>>>>>>>>>> use them? Why bother converting on mass?
>>>>>>>>>>
>>>>>>>>>> Sub SaveAllAsDOCX()
>>>>>>>>>> Dim strFileName As String
>>>>>>>>>> Dim strDocName As String
>>>>>>>>>> Dim strPath As String
>>>>>>>>>> Dim oDoc 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 Right(strPath, 1) <> "\" Then strPath = strPath + "\"
>>>>>>>>>> End With
>>>>>>>>>>
>>>>>>>>>> If Documents.Count > 0 Then
>>>>>>>>>> Documents.Close SaveChanges:=wdPromptToSaveChanges
>>>>>>>>>> End If
>>>>>>>>>> If Left(strPath, 1) = Chr(34) Then
>>>>>>>>>> strPath = Mid(strPath, 2, Len(strPath) - 2)
>>>>>>>>>> End If
>>>>>>>>>> strFileName = Dir$(strPath & "*.doc")
>>>>>>>>>>
>>>>>>>>>> While Len(strFileName) <> 0
>>>>>>>>>> Set oDoc = Documents.Open(strPath & strFileName)
>>>>>>>>>>
>>>>>>>>>> strDocName = ActiveDocument.FullName
>>>>>>>>>> intPos = InStrRev(strDocName, ".")
>>>>>>>>>> strDocName = Left(strDocName, intPos - 1)
>>>>>>>>>> strDocName = strDocName & ".docx"
>>>>>>>>>> oDoc.SaveAs FileName:=strDocName, _
>>>>>>>>>> FileFormat:=wdFormatDocumentDefault
>>>>>>>>>> oDoc.Close SaveChanges:=wdDoNotSaveChanges
>>>>>>>>>> strFileName = Dir$()
>>>>>>>>>> Wend
>>>>>>>>>> End Sub
>>>>>>>>>>
>>>>>>>>>>
http://www.gmayor.com/installing_macro.htm>>>>>>>>>>
>>>>>>>>>> --
>>>>>>>>>> <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
>>>>>>>>>> Graham Mayor - Word MVP
>>>>>>>>>>
>>>>>>>>>> My web site www.gmayor.com
>>>>>>>>>> Word MVP web site
http://word.mvps.org>>>>>>>>>> <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
>>
>> --
>> Greg Maxey - Word MVP
>>
>> My web site
http://gregmaxey.mvps.org>> Word MVP web site
http://word.mvps.org