Pages

Search

Microsoft Word - Microsoft Word Starter cannot be opened

Microsoft Word - Microsoft Word Starter cannot be opened


Microsoft Word Starter cannot be opened

Posted: 02 Apr 2013 06:24 AM PDT

I was sent an email attachment and when I tried to open it it stated that Microsoft Word Starter 2010 could not be opened and that I should go to the control panel to repair it.... I have Windows 7 Premium and do not possess the knowledge as to my next step.....My computer says that I have it and  now what ? The email said the attachment is from Words Starter 2003.....

 

[Moved from feedback]

Tweaking HansV's Macro

Posted: 02 Apr 2013 02:16 AM PDT

Greetings!

A day or so ago HansV kindly created a macro that apparently works on numerous files in the same folder simultaneously. However, can the macro be tweaked so it is run only on the current / open / single file?

HansV's macro -- which searches for all tables and converts them into text (and then tabs) -- is as follows:

Sub ConvertTables()
    Dim strFolder As String
    Dim strFile As String
    Dim doc As Document
    Dim tbl As Table
    ' Ask user to select folder
    With Application.FileDialog(4) ' msoFileDialogFolderPicker
        If .Show Then
            strFolder = .SelectedItems(1)
        Else
            MsgBox "No folder specified!", vbCritical
            Exit Sub
        End If
    End With
    ' Make sure that folder path ends in \
    If Right(strFolder, 1) <> "\" Then
        strFolder = strFolder & "\"
    End If
    Application.ScreenUpdating = False
    strFile = Dir(strFolder & "*.doc*")
    Do While strFile <> ""
        Set doc = Documents.Open(FileName:=strFolder & strFile, AddToRecentFiles:=False)
        If doc.Tables.Count = 0 Then
            doc.Close SaveChanges:=False
        Else
            For Each tbl In doc.Tables
                tbl.ConvertToText Separator:=wdSeparateByTabs
            Next tbl
            doc.Close SaveChanges:=True
        End If
        strFile = Dir
    Loop
    Application.ScreenUpdating = True
End Sub

I would deeply appreciate your help in this matter.


How can I connect Excel fields with a Word template?!

Posted: 01 Apr 2013 11:27 PM PDT

Hello, please, I have an Excel workbook that contains a list of trainees at our organization. 
I send a lot of acceptance, decline and certificates all with the same format just different names and dates and specialties. 
 
Is there a way that allows me to click on a name for example in the excel sheet and it automatically opens the word document with that name (specified row) information filled in the word document template. 
 
Thanks a lot for the help.

how to delete table but keep the data as it is?

Posted: 01 Apr 2013 11:02 PM PDT

Hi,

I have some data in a table . I just want to extract data from the table without any change in text formatting.. How can I do so?
Following is the link of my file:



Thanks
Trivender Singh

How do I open a new, BLANK, document, type words on the blank page, and save it to one of my files?

Posted: 01 Apr 2013 02:01 PM PDT

Every time I click on "New document" or "Blank document", it gives me a page filled with little squares like graph paper.

 

iam trying to use word to wirte something. but keeps telling me to update windows word 2010. what should i do?

Posted: 31 Mar 2013 06:42 PM PDT

I have already written a text and saved it in my Documents. when i go back to work on it, couldn't find it. all blank. and it says to update microsoft  word 2010

How to print multiple copies - Windows 8 & Word 2010

Posted: 31 Mar 2013 11:34 AM PDT

System:  Windows 8 with Office 2010.  HP 1200 LaserJet printer, with current driver verified.  Prints okay in all respects except for the following.

Problem:  when printing a Word doc, I only get one copy even if I select 2 or more in the Word print setup.  I tried opening the printer options via Charms > Devices, but the only thing that appears is  "Desktop: Nothing can be sent from the desktop."

I note that when I try the same thing with something that's opened in the PDF reader, I do get all of the print options via Charms > Devices, but not from Word.

How do I print multiple copies of a Word doc.?

Convert all Tables into Text with Tabs

Posted: 30 Mar 2013 07:48 AM PDT

Greetings.

I have numerous files that contain hundreds of relatively small tables.

I need to convert all these tables in each file into text with tabs.

I presume I will need a macro to perform this task, but I have no idea how to create one.

I would deeply appreciate your help in this matter.