Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Cloud computing #5

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions Cloud computing
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Sub CreateCloudComputingPresentation()
' Declare variables for PowerPoint objects
Dim pptApp As Object
Dim pptPresentation As Object
Dim slide As Object
Dim slideIndex As Integer

' Initialize PowerPoint application
Set pptApp = CreateObject("PowerPoint.Application")
pptApp.Visible = True

' Create a new presentation
Set pptPresentation = pptApp.Presentations.Add

' Slide 1 - Title Slide with Details
slideIndex = slideIndex + 1
Set slide = pptPresentation.Slides.Add(slideIndex, 1)
slide.Shapes.Title.TextFrame.TextRange.Text = "Cloud Computing"
slide.Shapes.Placeholders(2).TextFrame.TextRange.Text = _
"An Introduction to the Future of Technology" & vbCrLf & _
"Member Name: Vikashini.A" & vbCrLf & _
"Phone Number: 9363227766" & vbCrLf & _
"College Name: SRM TRP Engineering College" & vbCrLf