SlideShare a Scribd company logo
Color Pallete (Visual Basic Assignment)
Presented By
Muskan Parveen Mansuri
Bachelors of Computer Application
Dezyne E’cole College
Project report on
Color Pallete
Submitted To
Dezyne E’cole College
Towards
The Partial Fulfillment
Of 2018 year, Bachelor Of Computer Application, 3nd
year
By
Muskan Parveen Mansuri
Dezyne E’cole College
106/10, Civil Line Ajmer
www.Dezyneecole.com
Acknowledgment
I Am Muskan Parveen Mansuri Student of Bachelor Of Computer Application
Dezyne E’cole College Would Like To Express My Gratitude to Each And Every
Person Who Has Contributed In Stimulating Suggestions And Encouragement
Which Really Helped Me to Coordinate My Project. I Also Thank Dezyne E’cole
College Who Provided Insight And Expertise That Greatly Assisted the Project. Also,
a Special Thanks To My Teachers, Parents and Colleagues Who Have Supported Me
At Every Step. Not To Forget, the Almighty Who Blessed Me With Good Health
Because of Which I Worked More Efficiently And Better.
In the following pages I am showcasing my work:
Color pallete
Code
Dim r, g, b As Integer
Private Sub VScroll1_Change()
Dim a(3), n, i, j, k, m, t As Integer
r = VScroll1.Value
g = VScroll2.Value
b = VScroll3.Value
Form1.BackColor = RGB(r, g, b)
Text1.Text = r
i = 0
n = Val(VScroll1.Value)
While (n > 0)
m = n Mod 16
a(i) = m
n = n  16
i = i + 1
Wend
k = 0
If (a(1) = 10) Then
k = "A"
ElseIf (a(1) = 11) Then
k = "B"
ElseIf (a(1) = 12) Then
k = "C"
ElseIf (a(1) = 13) Then
k = "D"
ElseIf (a(1) = 14) Then
k = "E"
ElseIf (a(1) = 15) Then
k = "F"
Else
k = a(1)
End If
If (a(0) = 10) Then
j = "A"
ElseIf (a(0) = 11) Then
j = "B"
ElseIf (a(0) = 12) Then
j = "C"
ElseIf (a(0) = 13) Then
j = "D"
ElseIf (a(0) = 14) Then
j = "E"
ElseIf (a(0) = 15) Then
j = "F"
Else
j = a(0)
End If
Text4.Text = k & j
Text7.Text = "#" & Text4.Text + Text5.Text + Text6.Text
End Sub
Private Sub VScroll1_Scroll()
Dim a(3), n, i, j, k, t, m As Integer
r = VScroll1.Value
g = VScroll2.Value
b = VScroll3.Value
Form1.BackColor = RGB(r, g, b)
Text1.Text = r
i = 0
n = Val(VScroll1.Value)
While (n > 0)
m = n Mod 16
a(i) = m
n = n  16
i = i + 1
Wend
k = 0
If (a(1) = 10) Then
k = "A"
ElseIf (a(1) = 11) Then
k = "B"
ElseIf (a(1) = 12) Then
k = "C"
ElseIf (a(1) = 13) Then
k = "D"
ElseIf (a(1) = 14) Then
k = "E"
ElseIf (a(1) = 15) Then
k = "F"
Else
k = a(1)
End If
If (a(0) = 10) Then
j = "A"
ElseIf (a(0) = 11) Then
j = "B"
ElseIf (a(0) = 12) Then
j = "C"
ElseIf (a(0) = 13) Then
j = "D"
ElseIf (a(0) = 14) Then
j = "E"
ElseIf (a(0) = 15) Then
j = "F"
Else
j = a(0)
End If
Text4.Text = k & j
Text7.Text = "#" & Text4.Text + Text5.Text + Text6.Text
End Sub
Private Sub VScroll2_Change()
Dim a(3), n, i, j, k, t As Integer
r = VScroll1.Value
g = VScroll2.Value
b = VScroll3.Value
Form1.BackColor = RGB(r, g, b)
Text2.Text = g
i = 0
n = Val(VScroll2.Value)
While (n > 0)
m = n Mod 16
a(i) = m
n = n  16
i = i + 1
Wend
k = 0
If (a(1) = 10) Then
k = "A"
ElseIf (a(1) = 11) Then
k = "B"
ElseIf (a(1) = 12) Then
k = "C"
ElseIf (a(1) = 13) Then
k = "D"
ElseIf (a(1) = 14) Then
k = "E"
ElseIf (a(1) = 15) Then
k = "F"
Else
k = a(1)
End If
If (a(0) = 10) Then
j = "A"
ElseIf (a(0) = 11) Then
j = "B"
ElseIf (a(0) = 12) Then
j = "C"
ElseIf (a(0) = 13) Then
j = "D"
ElseIf (a(0) = 14) Then
j = "E"
ElseIf (a(0) = 15) Then
j = "F"
Else
j = a(0)
End If
Text5.Text = k & j
Text7.Text = "#" & Text4.Text + Text5.Text + Text6.Text
End Sub
Private Sub VScroll2_Scroll()
Dim a(3), n, i, j, k, t As Integer
r = VScroll1.Value
g = VScroll2.Value
b = VScroll3.Value
Form1.BackColor = RGB(r, g, b)
Text2.Text = g
i = 0
n = Val(VScroll2.Value)
While (n > 0)
m = n Mod 16
a(i) = m
n = n  16
i = i + 1
Wend
k = 0
If (a(1) = 10) Then
k = "A"
ElseIf (a(1) = 11) Then
k = "B"
ElseIf (a(1) = 12) Then
k = "C"
ElseIf (a(1) = 13) Then
k = "D"
ElseIf (a(1) = 14) Then
k = "E"
ElseIf (a(1) = 15) Then
k = "F"
Else
k = a(1)
End If
If (a(0) = 10) Then
j = "A"
ElseIf (a(0) = 11) Then
j = "B"
ElseIf (a(0) = 12) Then
j = "C"
ElseIf (a(0) = 13) Then
j = "D"
ElseIf (a(0) = 14) Then
j = "E"
ElseIf (a(0) = 15) Then
j = "F"
Else
j = a(0)
End If
Text5.Text = k & j
Text7.Text = "#" & Text4.Text + Text5.Text + Text6.Text
End Sub
Private Sub VScroll3_Change()
Dim a(3), n, i, j, k, t As Integer
r = VScroll1.Value
g = VScroll2.Value
b = VScroll3.Value
Form1.BackColor = RGB(r, g, b)
Text3.Text = b
i = 0
n = Val(VScroll3.Value)
While (n > 0)
m = n Mod 16
a(i) = m
n = n  16
i = i + 1
Wend
k = 0
If (a(1) = 10) Then
k = "A"
ElseIf (a(1) = 11) Then
k = "B"
ElseIf (a(1) = 12) Then
k = "C"
ElseIf (a(1) = 13) Then
k = "D"
ElseIf (a(1) = 14) Then
k = "E"
ElseIf (a(1) = 15) Then
k = "F"
Else
k = a(1)
End If
If (a(0) = 10) Then
j = "A"
ElseIf (a(0) = 11) Then
j = "B"
ElseIf (a(0) = 12) Then
j = "C"
ElseIf (a(0) = 13) Then
j = "D"
ElseIf (a(0) = 14) Then
j = "E"
ElseIf (a(0) = 15) Then
j = "F"
Else
j = a(0)
End If
Text6.Text = k & j
Text7.Text = "#" & Text4.Text + Text5.Text + Text6.Text
End Sub
Private Sub VScroll3_Scroll()
Dim a(3), n, i, j, k, t As Integer
r = VScroll1.Value
g = VScroll2.Value
b = VScroll3.Value
Form1.BackColor = RGB(r, g, b)
Text3.Text = b
i = 0
n = Val(VScroll3.Value)
While (n > 0)
m = n Mod 16
a(i) = m
n = n  16
i = i + 1
Wend
k = 0
If (a(1) = 10) Then
k = "A"
ElseIf (a(1) = 11) Then
k = "B"
ElseIf (a(1) = 12) Then
k = "C"
ElseIf (a(1) = 13) Then
k = "D"
ElseIf (a(1) = 14) Then
k = "E"
ElseIf (a(1) = 15) Then
k = "F"
Else
k = a(1)
End If
If (a(0) = 10) Then
j = "A"
ElseIf (a(0) = 11) Then
j = "B"
ElseIf (a(0) = 12) Then
j = "C"
ElseIf (a(0) = 13) Then
j = "D"
ElseIf (a(0) = 14) Then
j = "E"
ElseIf (a(0) = 15) Then
j = "F"
Else
j = a(0)
End If
Text6.Text = k & j
Text7.Text = "#" & Text4.Text + Text5.Text + Text6.Text
End Sub
Thank you
Presented By
Muskan Parveen Mansuri
Bachelor Of Computer Application, 3rd
year
Dezyne E’cole College

More Related Content

Recently uploaded

Gyanartha SciBizTech Quiz slideshare.pptx
Gyanartha SciBizTech Quiz slideshare.pptxGyanartha SciBizTech Quiz slideshare.pptx
Gyanartha SciBizTech Quiz slideshare.pptxShibin Azad
 
Pragya Champions Chalice 2024 Prelims & Finals Q/A set, General Quiz
Pragya Champions Chalice 2024 Prelims & Finals Q/A set, General QuizPragya Champions Chalice 2024 Prelims & Finals Q/A set, General Quiz
Pragya Champions Chalice 2024 Prelims & Finals Q/A set, General QuizPragya - UEM Kolkata Quiz Club
 
slides CapTechTalks Webinar May 2024 Alexander Perry.pptx
slides CapTechTalks Webinar May 2024 Alexander Perry.pptxslides CapTechTalks Webinar May 2024 Alexander Perry.pptx
slides CapTechTalks Webinar May 2024 Alexander Perry.pptxCapitolTechU
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxEduSkills OECD
 
How to the fix Attribute Error in odoo 17
How to the fix Attribute Error in odoo 17How to the fix Attribute Error in odoo 17
How to the fix Attribute Error in odoo 17Celine George
 
Benefits and Challenges of Using Open Educational Resources
Benefits and Challenges of Using Open Educational ResourcesBenefits and Challenges of Using Open Educational Resources
Benefits and Challenges of Using Open Educational Resourcesdimpy50
 
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...Nguyen Thanh Tu Collection
 
Keeping Your Information Safe with Centralized Security Services
Keeping Your Information Safe with Centralized Security ServicesKeeping Your Information Safe with Centralized Security Services
Keeping Your Information Safe with Centralized Security ServicesTechSoup
 
Matatag-Curriculum and the 21st Century Skills Presentation.pptx
Matatag-Curriculum and the 21st Century Skills Presentation.pptxMatatag-Curriculum and the 21st Century Skills Presentation.pptx
Matatag-Curriculum and the 21st Century Skills Presentation.pptxJenilouCasareno
 
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxbennyroshan06
 
Sectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfSectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfVivekanand Anglo Vedic Academy
 
2024_Student Session 2_ Set Plan Preparation.pptx
2024_Student Session 2_ Set Plan Preparation.pptx2024_Student Session 2_ Set Plan Preparation.pptx
2024_Student Session 2_ Set Plan Preparation.pptxmansk2
 
[GDSC YCCE] Build with AI Online Presentation
[GDSC YCCE] Build with AI Online Presentation[GDSC YCCE] Build with AI Online Presentation
[GDSC YCCE] Build with AI Online PresentationGDSCYCCE
 
Research Methods in Psychology | Cambridge AS Level | Cambridge Assessment In...
Research Methods in Psychology | Cambridge AS Level | Cambridge Assessment In...Research Methods in Psychology | Cambridge AS Level | Cambridge Assessment In...
Research Methods in Psychology | Cambridge AS Level | Cambridge Assessment In...Abhinav Gaur Kaptaan
 
The Last Leaf, a short story by O. Henry
The Last Leaf, a short story by O. HenryThe Last Leaf, a short story by O. Henry
The Last Leaf, a short story by O. HenryEugene Lysak
 
Salient features of Environment protection Act 1986.pptx
Salient features of Environment protection Act 1986.pptxSalient features of Environment protection Act 1986.pptx
Salient features of Environment protection Act 1986.pptxakshayaramakrishnan21
 
Application of Matrices in real life. Presentation on application of matrices
Application of Matrices in real life. Presentation on application of matricesApplication of Matrices in real life. Presentation on application of matrices
Application of Matrices in real life. Presentation on application of matricesRased Khan
 
Morse OER Some Benefits and Challenges.pptx
Morse OER Some Benefits and Challenges.pptxMorse OER Some Benefits and Challenges.pptx
Morse OER Some Benefits and Challenges.pptxjmorse8
 

Recently uploaded (20)

Gyanartha SciBizTech Quiz slideshare.pptx
Gyanartha SciBizTech Quiz slideshare.pptxGyanartha SciBizTech Quiz slideshare.pptx
Gyanartha SciBizTech Quiz slideshare.pptx
 
Operations Management - Book1.p - Dr. Abdulfatah A. Salem
Operations Management - Book1.p  - Dr. Abdulfatah A. SalemOperations Management - Book1.p  - Dr. Abdulfatah A. Salem
Operations Management - Book1.p - Dr. Abdulfatah A. Salem
 
Pragya Champions Chalice 2024 Prelims & Finals Q/A set, General Quiz
Pragya Champions Chalice 2024 Prelims & Finals Q/A set, General QuizPragya Champions Chalice 2024 Prelims & Finals Q/A set, General Quiz
Pragya Champions Chalice 2024 Prelims & Finals Q/A set, General Quiz
 
slides CapTechTalks Webinar May 2024 Alexander Perry.pptx
slides CapTechTalks Webinar May 2024 Alexander Perry.pptxslides CapTechTalks Webinar May 2024 Alexander Perry.pptx
slides CapTechTalks Webinar May 2024 Alexander Perry.pptx
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
 
How to the fix Attribute Error in odoo 17
How to the fix Attribute Error in odoo 17How to the fix Attribute Error in odoo 17
How to the fix Attribute Error in odoo 17
 
Benefits and Challenges of Using Open Educational Resources
Benefits and Challenges of Using Open Educational ResourcesBenefits and Challenges of Using Open Educational Resources
Benefits and Challenges of Using Open Educational Resources
 
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
 
Keeping Your Information Safe with Centralized Security Services
Keeping Your Information Safe with Centralized Security ServicesKeeping Your Information Safe with Centralized Security Services
Keeping Your Information Safe with Centralized Security Services
 
Matatag-Curriculum and the 21st Century Skills Presentation.pptx
Matatag-Curriculum and the 21st Century Skills Presentation.pptxMatatag-Curriculum and the 21st Century Skills Presentation.pptx
Matatag-Curriculum and the 21st Century Skills Presentation.pptx
 
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
 
Sectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfSectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdf
 
2024_Student Session 2_ Set Plan Preparation.pptx
2024_Student Session 2_ Set Plan Preparation.pptx2024_Student Session 2_ Set Plan Preparation.pptx
2024_Student Session 2_ Set Plan Preparation.pptx
 
[GDSC YCCE] Build with AI Online Presentation
[GDSC YCCE] Build with AI Online Presentation[GDSC YCCE] Build with AI Online Presentation
[GDSC YCCE] Build with AI Online Presentation
 
Research Methods in Psychology | Cambridge AS Level | Cambridge Assessment In...
Research Methods in Psychology | Cambridge AS Level | Cambridge Assessment In...Research Methods in Psychology | Cambridge AS Level | Cambridge Assessment In...
Research Methods in Psychology | Cambridge AS Level | Cambridge Assessment In...
 
The Last Leaf, a short story by O. Henry
The Last Leaf, a short story by O. HenryThe Last Leaf, a short story by O. Henry
The Last Leaf, a short story by O. Henry
 
Salient features of Environment protection Act 1986.pptx
Salient features of Environment protection Act 1986.pptxSalient features of Environment protection Act 1986.pptx
Salient features of Environment protection Act 1986.pptx
 
Application of Matrices in real life. Presentation on application of matrices
Application of Matrices in real life. Presentation on application of matricesApplication of Matrices in real life. Presentation on application of matrices
Application of Matrices in real life. Presentation on application of matrices
 
Morse OER Some Benefits and Challenges.pptx
Morse OER Some Benefits and Challenges.pptxMorse OER Some Benefits and Challenges.pptx
Morse OER Some Benefits and Challenges.pptx
 

Featured

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Featured (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Color pallete, muskan parveen mansuri, bca 3rd year, dezyne e'cole college

  • 1. Color Pallete (Visual Basic Assignment) Presented By Muskan Parveen Mansuri Bachelors of Computer Application Dezyne E’cole College
  • 2. Project report on Color Pallete Submitted To Dezyne E’cole College Towards The Partial Fulfillment Of 2018 year, Bachelor Of Computer Application, 3nd year By Muskan Parveen Mansuri Dezyne E’cole College 106/10, Civil Line Ajmer www.Dezyneecole.com
  • 3. Acknowledgment I Am Muskan Parveen Mansuri Student of Bachelor Of Computer Application Dezyne E’cole College Would Like To Express My Gratitude to Each And Every Person Who Has Contributed In Stimulating Suggestions And Encouragement Which Really Helped Me to Coordinate My Project. I Also Thank Dezyne E’cole College Who Provided Insight And Expertise That Greatly Assisted the Project. Also, a Special Thanks To My Teachers, Parents and Colleagues Who Have Supported Me At Every Step. Not To Forget, the Almighty Who Blessed Me With Good Health Because of Which I Worked More Efficiently And Better.
  • 4. In the following pages I am showcasing my work: Color pallete
  • 5. Code Dim r, g, b As Integer Private Sub VScroll1_Change() Dim a(3), n, i, j, k, m, t As Integer r = VScroll1.Value g = VScroll2.Value b = VScroll3.Value Form1.BackColor = RGB(r, g, b) Text1.Text = r i = 0 n = Val(VScroll1.Value) While (n > 0) m = n Mod 16 a(i) = m n = n 16 i = i + 1 Wend k = 0 If (a(1) = 10) Then k = "A" ElseIf (a(1) = 11) Then k = "B"
  • 6. ElseIf (a(1) = 12) Then k = "C" ElseIf (a(1) = 13) Then k = "D" ElseIf (a(1) = 14) Then k = "E" ElseIf (a(1) = 15) Then k = "F" Else k = a(1) End If If (a(0) = 10) Then j = "A" ElseIf (a(0) = 11) Then j = "B" ElseIf (a(0) = 12) Then j = "C" ElseIf (a(0) = 13) Then j = "D" ElseIf (a(0) = 14) Then j = "E" ElseIf (a(0) = 15) Then j = "F" Else
  • 7. j = a(0) End If Text4.Text = k & j Text7.Text = "#" & Text4.Text + Text5.Text + Text6.Text End Sub Private Sub VScroll1_Scroll() Dim a(3), n, i, j, k, t, m As Integer r = VScroll1.Value g = VScroll2.Value b = VScroll3.Value Form1.BackColor = RGB(r, g, b) Text1.Text = r i = 0 n = Val(VScroll1.Value) While (n > 0) m = n Mod 16 a(i) = m n = n 16 i = i + 1 Wend k = 0 If (a(1) = 10) Then k = "A" ElseIf (a(1) = 11) Then
  • 8. k = "B" ElseIf (a(1) = 12) Then k = "C" ElseIf (a(1) = 13) Then k = "D" ElseIf (a(1) = 14) Then k = "E" ElseIf (a(1) = 15) Then k = "F" Else k = a(1) End If If (a(0) = 10) Then j = "A" ElseIf (a(0) = 11) Then j = "B" ElseIf (a(0) = 12) Then j = "C" ElseIf (a(0) = 13) Then j = "D" ElseIf (a(0) = 14) Then j = "E" ElseIf (a(0) = 15) Then j = "F"
  • 9. Else j = a(0) End If Text4.Text = k & j Text7.Text = "#" & Text4.Text + Text5.Text + Text6.Text End Sub Private Sub VScroll2_Change() Dim a(3), n, i, j, k, t As Integer r = VScroll1.Value g = VScroll2.Value b = VScroll3.Value Form1.BackColor = RGB(r, g, b) Text2.Text = g i = 0 n = Val(VScroll2.Value) While (n > 0) m = n Mod 16 a(i) = m n = n 16 i = i + 1 Wend k = 0 If (a(1) = 10) Then k = "A"
  • 10. ElseIf (a(1) = 11) Then k = "B" ElseIf (a(1) = 12) Then k = "C" ElseIf (a(1) = 13) Then k = "D" ElseIf (a(1) = 14) Then k = "E" ElseIf (a(1) = 15) Then k = "F" Else k = a(1) End If If (a(0) = 10) Then j = "A" ElseIf (a(0) = 11) Then j = "B" ElseIf (a(0) = 12) Then j = "C" ElseIf (a(0) = 13) Then j = "D" ElseIf (a(0) = 14) Then j = "E" ElseIf (a(0) = 15) Then
  • 11. j = "F" Else j = a(0) End If Text5.Text = k & j Text7.Text = "#" & Text4.Text + Text5.Text + Text6.Text End Sub Private Sub VScroll2_Scroll() Dim a(3), n, i, j, k, t As Integer r = VScroll1.Value g = VScroll2.Value b = VScroll3.Value Form1.BackColor = RGB(r, g, b) Text2.Text = g i = 0 n = Val(VScroll2.Value) While (n > 0) m = n Mod 16 a(i) = m n = n 16 i = i + 1 Wend k = 0 If (a(1) = 10) Then
  • 12. k = "A" ElseIf (a(1) = 11) Then k = "B" ElseIf (a(1) = 12) Then k = "C" ElseIf (a(1) = 13) Then k = "D" ElseIf (a(1) = 14) Then k = "E" ElseIf (a(1) = 15) Then k = "F" Else k = a(1) End If If (a(0) = 10) Then j = "A" ElseIf (a(0) = 11) Then j = "B" ElseIf (a(0) = 12) Then j = "C" ElseIf (a(0) = 13) Then j = "D" ElseIf (a(0) = 14) Then j = "E"
  • 13. ElseIf (a(0) = 15) Then j = "F" Else j = a(0) End If Text5.Text = k & j Text7.Text = "#" & Text4.Text + Text5.Text + Text6.Text End Sub Private Sub VScroll3_Change() Dim a(3), n, i, j, k, t As Integer r = VScroll1.Value g = VScroll2.Value b = VScroll3.Value Form1.BackColor = RGB(r, g, b) Text3.Text = b i = 0 n = Val(VScroll3.Value) While (n > 0) m = n Mod 16 a(i) = m n = n 16 i = i + 1 Wend k = 0
  • 14. If (a(1) = 10) Then k = "A" ElseIf (a(1) = 11) Then k = "B" ElseIf (a(1) = 12) Then k = "C" ElseIf (a(1) = 13) Then k = "D" ElseIf (a(1) = 14) Then k = "E" ElseIf (a(1) = 15) Then k = "F" Else k = a(1) End If If (a(0) = 10) Then j = "A" ElseIf (a(0) = 11) Then j = "B" ElseIf (a(0) = 12) Then j = "C" ElseIf (a(0) = 13) Then j = "D" ElseIf (a(0) = 14) Then
  • 15. j = "E" ElseIf (a(0) = 15) Then j = "F" Else j = a(0) End If Text6.Text = k & j Text7.Text = "#" & Text4.Text + Text5.Text + Text6.Text End Sub Private Sub VScroll3_Scroll() Dim a(3), n, i, j, k, t As Integer r = VScroll1.Value g = VScroll2.Value b = VScroll3.Value Form1.BackColor = RGB(r, g, b) Text3.Text = b i = 0 n = Val(VScroll3.Value) While (n > 0) m = n Mod 16 a(i) = m n = n 16 i = i + 1 Wend
  • 16. k = 0 If (a(1) = 10) Then k = "A" ElseIf (a(1) = 11) Then k = "B" ElseIf (a(1) = 12) Then k = "C" ElseIf (a(1) = 13) Then k = "D" ElseIf (a(1) = 14) Then k = "E" ElseIf (a(1) = 15) Then k = "F" Else k = a(1) End If If (a(0) = 10) Then j = "A" ElseIf (a(0) = 11) Then j = "B" ElseIf (a(0) = 12) Then j = "C" ElseIf (a(0) = 13) Then j = "D"
  • 17. ElseIf (a(0) = 14) Then j = "E" ElseIf (a(0) = 15) Then j = "F" Else j = a(0) End If Text6.Text = k & j Text7.Text = "#" & Text4.Text + Text5.Text + Text6.Text End Sub
  • 18. Thank you Presented By Muskan Parveen Mansuri Bachelor Of Computer Application, 3rd year Dezyne E’cole College