Loading

Tag Archives: word

Microsoft Visio has stopped working after exiting Visio

It seems that Visio has some kind of incompability with Bluetooth drivers.
http://www.tech-archive.net/Archive/Visio/microsoft.public.visio.general/2008-06/msg00239.html.
I notice this problem when editing Visio objects embedded into Microsoft Word documents. In my case after I enabled Bluetooth (via my Compaq nw8440 special keyboard button) this problem went away.

Bookmark It

Hide Sites

$$(‘div.d267′).each( function(e) { e.visualEffect(’slide_up’,{duration:0.5}) });

How to select all tables in a Microsoft Word Document

It seems it’s impossible to do it from the user interface. But I found here that it could be done using a VB Macro:

Sub ChangeAllTablesToNormal()
Dim myTable As Table
For Each myTable In ActiveDocument.Tables
myTable.Select
Selection.Style = ActiveDocument.Styles(“Normal”)
Next myTable
[...]