Setting Global Variables in VBA
- by dennis96411
I'm currently making an "OS" in PowerPoint and I need to know how to set global variables for the settings.
I made a module called "Settings" containing:
Public Sub Settings()
Option Explicit
Public UserName, UserIcon, Background, BrowserHomePage As String
Public SetupComplete As Boolean
SetupComplete = False
UserName = "Administrator"
UserIcon…