Under this category you can find the best macros and scripts to run your VBA code and do lot of things in PowerPoint and MS Office applications. You can use the VBA tips and tricks articles to learn how to automate the process while working with PowerPoint VBA. Learn how to use VBA or Visual Basic for Applications to make your presentations interactive and automate the process while integrating other applications like Excel and Word.
Sometimes, you need to rename a shape object from the default name to any desired name, especially if you will deal with VBA code in the future and want to use more descriptive names for shapes and objects. This snippet will help you rename objects easily using a Macro. To use it, just create a …
PowerPoint and other Microsoft Office programs come with VBA, Visual Basic for Applications. VBA is an implementation of Microsoft’s event-driven programming language, Visual Basic, and it lets you run scripts and Macros in the popular Microsoft Office applications. VBA enables building user defined functions, automating processes and accessing Windows API and other low-level functionality through dynamic-link …
If you want to use a Macro script in PowerPoint to automatically print a slide to a specific printer that is not the default printer, or if you want to detect if a certain printer name is present in the system, then you can use the following VBA Macro to perform this task. The Macro …
We enjoy to read Viziblr blog by Saveen Reddy because he have good tutorials and tips for presenters that can help you to boost your productivity. This time we would like to show you how to use PowerPoint to make screencast titles or to run a software demo. The approach involves a bit of coding …
When we created our add-in for PowerPoint to export slides as images we faced an interesting challenge. Aside of choosing a specific output size, we needed to get the actual size of the PowerPoint presentation while iterating through each slide. This way we were able to calculate the new width and height (and aspect ratio) …
If you are writing your own macros and VBA code in PowerPoint, especially if you are creating a PowerPoint add-in, sometimes you might find useful to get and save your settings globally. In Windows, the Registry is a good place to save this kind of settings. Today we will learn how to use PowerPoint and …
We already have posted about how to use C# to programmatically export your slides to images, but today we’d like to show you an easy way to export your active presentation to images using VBA code. This can be very handly if you want to make a PowerPoint add-in using VBA and Macros and for example …
This tutorial will give you a better idea how to create your custom PowerPoint 2010 Add-Ins using VBA code and creating a custom toolbar in the ribbon so you can call macros. This kind of add-in let you do multiple useful actions for example we can create a tool to export the presentation to PDF, …
If you are using PowerPoint Automation Services or the Slide.Export method in C# or DotNet to convert your slides to images, then you may be experimenting the following case with text anti-aliasing. For example, if you have a text slide and need to be exported as image, the text may not keep the same anti-aliasing …
We all may agree that sometimes it would be useful to have a plan B even during a PowerPoint presentation in case something is not going as scheduled. For example, if we are delivering an important business PowerPoint presentation where a potential client acquisition and million of dollars of revenue are in play, we may want to …