Questions tagged [ms-publisher]

Microsoft Publisher is a desktop publishing application from Microsoft.

Publisher is an entry-level desktop publishing application from Microsoft, differing from Word in that the emphasis is placed on page layout and design, rather than text composition and proofing.

Publisher is included in higher-end editions of Microsoft Office, reflecting Microsoft's emphasis on the application as an easy-to-use and less expensive alternative to the "heavyweights". The focus is on the small business market where firms do not have dedicated design professionals available to make marketing materials and other documents. However, it has a relatively small share of the desktop publishing market, which is dominated by Adobe InDesign and QuarkXPress.

Source: Microsoft Publisher on Wikipedia

Versions

  • Publisher for Windows 95
  • Microsoft Publisher 97
  • Microsoft Publisher 98
  • Microsoft Publisher 2000
  • Microsoft Publisher 2002
  • Microsoft Publisher 2003
  • Microsoft Publisher 2007
  • Microsoft Publisher 2010
  • Microsoft Publisher 2013
  • Microsoft Publisher 2016

Resources

Related tags

39 questions
17
votes
1 answer

Object variable or With block variable not set (Error 91)

I have the following code: Sub AddSources() Dim pubPage As Page Dim pubShape As Shape Dim hprlink As Hyperlink Dim origAddress() As String Dim exportFileName As String exportFileName = "TestResume" Dim linkSource As…
GBleaney
  • 2,096
  • 2
  • 22
  • 40
4
votes
1 answer

How to add Publisher Certificate to Cx_freeze msi bundle?

I'm trying to make an " msi " using cx_freeze. When I distribute it to users, it's showing unknown publisher. How to get publisher certificates, How can I add it to cx_freeze?
3
votes
1 answer

Find existing instance of Office Application

Is there any way to get existing instance of MS Publisher as Microsoft.Office.Interop.Publisher.Application? I've found this: System.Diagnostics.Process.GetProcessesByName("Microsoft Publisher") So I can check if this is already running, but how…
2
votes
1 answer

How to enable Grow Text Box To Fit in MS Publisher using VBA

Hi MS Publisher VBA programmers :-) What seems so simple is actually not documented. All I need to do is be able to insert text programmatically into a text box then have the text resize vertically expanding itself as I add more text. This works…
Mickey D
  • 347
  • 2
  • 12
1
vote
0 answers

Hyphenation Turn Off in Each Text Shapes MS Publisher

I would like to turn of hyphenation (MS Publisher) in every shape containing a text. I wrote a small code to highlight the text in each shape on each page one after the other: Sub TurnOffHyphenation() Dim pg As Long Dim sp As Long Dim shpAll As…
Yanoush
  • 11
  • 2
1
vote
0 answers

How to publish azure service fabric project from command line (powershell, cmd, etc.)

What I have: Several separate repositories with .NET solutions. Each solution has a Service Fabric Project (.sfproj). Each sfproj has a needed publish profile. Local Service Fabric cluster, which is used for development/debugging. What I need: I…
1
vote
0 answers

How can I see the vb code of an UI made Publisher template

I'm using a publisher document as a template to create fitting instructions for our products. Everytime we launch a new product an individual instruction is produced which involves a lot of copy and pasting and then translating the master document…
Fabian
  • 11
  • 1
1
vote
2 answers

Reading MS Publisher Files?

Has anyone seen a way to read/update the text in a Microsoft Office Publisher file (.pub)? I don't think Open XML supports that. The only way I found so far would be via Office Interop, but that is not a good solution on the server. Any other ideas?
Remy
  • 12,555
  • 14
  • 64
  • 104
1
vote
2 answers

how can i find out which part of my application uses .net framework 4.0

is there a way to find out which part of my application uses framework 4 client profile or whatever. I have a simple application which i published through the visual studio 2010 publish wizard when i install it anywhere else it is downloading 4.0…
swordfish
  • 4,899
  • 5
  • 33
  • 61
1
vote
0 answers

Running Publisher macros from Powershell script

I am trying to run a Publisher macro from Powershell, but I am getting an error when trying to run the macro. Here is the error: Method invocation failed because [Microsoft.Office.Interop.Publisher.ApplicationClass] does not contain a method named…
1
vote
0 answers

How to dynamically hyperlink a Table of Contents to pages in Publisher vba?

I have a Publisher booklet with a table of contents on page 2. The page is based on a master page, but the table itself is not on the master page. The TOC is in a table. I would like the end result to read the contents of each cell in the TOC,…
Jenn
  • 612
  • 1
  • 4
  • 7
1
vote
1 answer

PDF metadata limit

Is there a limit to how many metadata keyword characters are saved in a PDF? I am saving part numbers under work instructions designed in Microsoft Publisher. It will retain well past 255 characters, however when I export the document to PDF it gets…
bcpletcher
  • 21
  • 1
1
vote
1 answer

Publisher VBA Vertical Text Alignment property not applying

I'm trying to create a table and center the text within vertically. When I create the table, I fill the cell with text and apply the alignment: Dim pg As Page Dim tbl As Shape Set pg = ActiveDocument.ActiveView.ActivePage Set tbl =…
KBerstene
  • 73
  • 5
1
vote
2 answers

How can I set the background colour of the selected cell in publisher

I'm trying to create a macro that sets the font colour of text in a cell to white and the cell background to black using VBA in Publisher. So far I have managed to set up the font colour to change but I'm really struggling with the background - I…
Rory
  • 2,175
  • 1
  • 27
  • 37
1
vote
1 answer

Replacing Text in Microsoft Publisher Using Powershell

My HR team asked if I could help them generate new business cards for all of our employees. They have a Publisher file and I am trying to replace the text in. I've written all the portions that pull the info from AD and the looping mechanism but I…
1
2 3