Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Creating Macros with VB Code in PowerPoint
How to create a macro with Visual Basic language in PowerPoint? PowerPoint supports Visual Basic for Applications (VBA). Can I create a macro with Visual Basic to display a simple message box?
✍: FYIcenter.com
Yes, you can easily create a macro with Visual Basic for Applications
in 4 steps:
1. Click the Developer tab. You see the Developer tab menu showing up.
2. Click the Macros icon. You see the Macro dialog box showing up.
3. Enter "HelloMacro" in the Macro name field. Then click the Create button. You see the Microsoft Visual Basic window showing up.
4. Enter the following programming code and close the Visual Basic window:
Sub HelloMacro() MsgBox "Hello there! Welcome to FYIcenter.com Website!" & _ " Do you like this presentation?", vbYesNoCancel, _ "Survey Question" End Sub
⇒ Testing Macros without Slide Show in PowerPoint
⇐ Saving PowerPoint with Macros in *.pptm Format
2016-10-26, 2995🔥, 0💬
Popular Posts:
Why am I getting the "Spawn Failed: Server at http://127.0.0.1:47353/u ser/fyicenter/didn't respond ...
How to download and install older versions of Microsoft Office on my Mac computer? I am running macO...
How to connect FileZilla to an Anonymous FTP Server? If you know the server host name, you can conne...
How to add ActiveX controls, like text command button, text box, check box, etc., to Presentation sl...
Why I am getting the "Warning: Unresponsive Script" message box? How to avoid this message box? When...