You are on page 1of 30

KOLEJ TEKNOLOGI YPC ITWEB

5504TECYPCA APPLICATION AND VB FOR E-BUSINESS 1


ASSIGNMENT 1

Prepared by:
Wong Kah Chun (BEM1222F3)
Dhayalini a/p Asokan (BEM1223F3)
Vithiyah a/p Pachimuthu (BEM1222F3)
Chowddhiri a/l Kannan (BEM1391F2)

Prepared for:
MISS ZURIYANTI ZULKIFLI
Due Date:

Contents
Introduction................................................................................................................................3
Forms..........................................................................................................................................3
Splash Screen..........................................................................................................................3
Menu Form.............................................................................................................................4
Barbie Browser Form.............................................................................................................4
About Us Form.......................................................................................................................5
Animations Form....................................................................................................................5
Windows Media Player Form.................................................................................................6
VB Coding.................................................................................................................................7
a)

Coding for frmMenu.......................................................................................................7

b)

Coding for frmBrowser...................................................................................................7

c)

Coding for frmWMP.....................................................................................................11

d)

Coding for frmAnimations............................................................................................13

e)

Coding for spsLoading..................................................................................................19

Conclusion................................................................................................................................19
Testing Strategy........................................................................................................................20
Student Name & PID number:.............................................................................................20
References:...........................................................................................................................20
a)

Images........................................................................................................................20

b)

Videos........................................................................................................................26

c)

Websites.....................................................................................................................26

Action and Expected Behaviour...........................................................................................27

Introduction
This assignment is given to create a popular doll franchise Barbie website. This website
must be very interactively so that it can attract the user especially the little girls aged between
4 and 8 years old. This website is user friendly and very easy.
This website must have the Barbies character, the appropriate button in each form, windows
media player, movies, comment box, the standard menu. Furthermore, the website is
providing the user to change the font style, form colour, font size. User also can delete the
choose Barbies and change to another. This assignment is really very challenging during
creating the each forms, designing and while doing the coding. Somehow, we successfully
completed this assignment according to the correct format and at the right time.

Forms
Splash Screen

Menu Form

Barbie Browser Form

About Us Form

Animations Form

Windows Media Player Form

VB Coding
a) Coding for frmMenu
Public Class frmMenu
Private Sub btnBrowser_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnBrowser.Click
Me.Hide()
frmBrowser.Show()
End Sub
Private Sub btnAnimations_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnAnimations.Click
Me.Hide()
frmAnimations.Show()
End Sub
Private Sub btnWMP_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnWMP.Click
Me.Hide()
frmWMP.Show()
End Sub
Private Sub btnClose_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnClose.Click
Me.Close()
End Sub
End Class

b) Coding for frmBrowser


Public Class frmBrowser

Private Sub picBack_Click(ByVal sender As System.Object, ByVal e As


System.EventArgs) Handles picBack.Click
wbBarbie.GoBack()
End Sub
Private Sub picForward_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles picForward.Click
wbBarbie.GoForward()
End Sub
Private Sub picRefresh_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles picRefresh.Click
wbBarbie.Refresh()
End Sub
Private Sub btnBarbie_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnBarbie.Click
wbBarbie.Navigate("http://www.barbie.com/")
End Sub
Private Sub btnPrincessCharmSchool_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnPrincessCharmSchool.Click
wbBarbie.Navigate("http://www.barbie.com/princess-charm-school/#/home")
End Sub
Private Sub btnFairySecret_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnFairySecret.Click
wbBarbie.Navigate("http://www.barbie.com/fairy-secret-movie/#/videos/")
End Sub
Private Sub btnPerfectChristmas_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnPerfectChristmas.Click
wbBarbie.Navigate("http://www.barbie.com/perfect-christmas-movie/")
End Sub
8

Private Sub BarbiecomToolStripMenuItem_Click(ByVal sender As System.Object, ByVal


e As System.EventArgs) Handles BarbiecomToolStripMenuItem.Click
wbBarbie.Navigate("http://www.barbie.com/")
End Sub
Private Sub BarbiePrincessCharmSchoolToolStripMenuItem_Click(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
BarbiePrincessCharmSchoolToolStripMenuItem.Click
wbBarbie.Navigate("http://www.barbie.com/princess-charm-school/#/home")
End Sub
Private Sub BarbieAFairySecretToolStripMenuItem_Click(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
BarbieAFairySecretToolStripMenuItem.Click
wbBarbie.Navigate("http://www.barbie.com/fairy-secret-movie/#/videos/")
End Sub
Private Sub BarbieAPerfectChristmasToolStripMenuItem_Click(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
BarbieAPerfectChristmasToolStripMenuItem.Click
wbBarbie.Navigate("http://www.barbie.com/perfect-christmas-movie/")
End Sub
Private Sub PrintToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles PrintToolStripMenuItem.Click
wbBarbie.Print()
End Sub
Private Sub SaveToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles SaveToolStripMenuItem.Click
wbBarbie.ShowSaveAsDialog()
End Sub

Private Sub PrintPreviewToolStripMenuItem_Click(ByVal sender As System.Object,


ByVal e As System.EventArgs) Handles PrintPreviewToolStripMenuItem.Click
wbBarbie.ShowPrintPreviewDialog()
End Sub
Private Sub ExitToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles ExitToolStripMenuItem.Click
End
End Sub
Private Sub BarbieBrowserToolStripMenuItem_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles BarbieBrowserToolStripMenuItem.Click
Me.Hide()
frmMenu.Show()
End Sub
Private Sub AnimationsToolStripMenuItem_Click(ByVal sender As System.Object, ByVal
e As System.EventArgs) Handles AnimationsToolStripMenuItem.Click
Me.Hide()
frmAnimations.Show()
End Sub
Private Sub WindowsMediaPlayerToolStripMenuItem_Click(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
WindowsMediaPlayerToolStripMenuItem.Click
Me.Hide()
frmWMP.Show()
End Sub
Private Sub AboutUsToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles AboutUsToolStripMenuItem.Click
frmAboutUs.Show()
End Sub
End Class
10

c) Coding for frmWMP


Public Class frmWMP
Private Sub frmWMP_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Me.MaximizeBox = False
End Sub
Private Sub picHome_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles picHome.Click
Me.Hide()
frmMenu.Show()
End Sub
Private Sub picBrowser_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles picBrowser.Click
Me.Close()
frmBrowser.Show()
End Sub
Private Sub picExit_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles picExit.Click
End
End Sub
Private Sub btnSoundtrack1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnSoundtrack1.Click
frmMediaPlayer.Show()
frmMediaPlayer.wmpPlayer.URL = "E:\Barbie\Media\barbie musics\Barbie Princess
Charm School _You Can Tell She's A Princess.mp3"
End Sub
11

Private Sub btnSoundtrack2_Click(ByVal sender As System.Object, ByVal e As


System.EventArgs) Handles btnSoundtrack2.Click
frmMediaPlayer.Show()
frmMediaPlayer.wmpPlayer.URL = "E:\Barbie\Media\barbie musics\Barbie A Fairy
Secret - Can You Keep A Secret.mp3"
End Sub
Private Sub Soundtrack3_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Soundtrack3.Click
frmMediaPlayer.Show()
frmMediaPlayer.wmpPlayer.URL = "E:\Barbie\Media\barbie musics\Barbie in A Perfect
Christmas-A Perfect Christmas.mp3"
End Sub
Private Sub btnMovie1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnMovie1.Click
frmMediaPlayer.Show()
frmMediaPlayer.wmpPlayer.URL = "E:\Barbie\Media\barbie
movies\princess.charm.school.dvdrip.xvid-invaders.avi"
End Sub
Private Sub btnMovie2_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnMovie2.Click
frmMediaPlayer.Show()
frmMediaPlayer.wmpPlayer.URL = "E:\Barbie\Media\barbie movies\Barbie A Fairy
Secret 2011 [DVDRip.XviD-miguel] [ENG].avi"
End Sub
Private Sub btnMovie3_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnMovie3.Click
frmMediaPlayer.Show()
frmMediaPlayer.wmpPlayer.URL = "E:\Barbie\Media\barbie
movies\barbie.a.perfect.christmas.xvid-ignition.avi"
12

End Sub
Private Sub picAnimations_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles picAnimations.Click
Me.Close()
frmAnimations.Show()
End Sub
End Class

d) Coding for frmAnimations


Public Class frmAnimations
Private Sub radBlair_CheckedChanged(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles radBlair.CheckedChanged
picCharacters.Image = My.Resources._300px_PrincessBlairWillows
End Sub
Private Sub radDelancy_CheckedChanged(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles radDelancy.CheckedChanged
picCharacters.Image = My.Resources.LadyRoyalDelancy
End Sub
Private Sub radHadley_CheckedChanged(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles radHadley.CheckedChanged
picCharacters.Image = My.Resources.Hadley_smiling
End Sub
Private Sub radIsla_CheckedChanged(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles radIsla.CheckedChanged
picCharacters.Image = My.Resources._300px_PrincessIslaDJ
End Sub

13

Private Sub grpSettings_Enter(ByVal sender As System.Object, ByVal e As


System.EventArgs) Handles grpSettings.Enter
'Add item to form colour
cboFormColor.Items.Clear()
cboFormColor.Items.Add("Light Coral")
cboFormColor.Items.Add("Light Pink")
cboFormColor.Items.Add("Light Blue")
cboFormColor.Items.Add("Light Yellow")
cboFormColor.Items.Add("Medium Purple")

'Add item to font type


cboFont.Items.Clear()
cboFont.Items.Add("Arial")
cboFont.Items.Add("Algerian")
cboFont.Items.Add("Arial Rounded MT Bold")
cboFont.Items.Add("Blackadder ITC")
cboFont.Items.Add("Copperplate Gothic Light")
cboFont.Items.Add("Forte")
cboFont.Items.Add("Harrington")
cboFont.Items.Add("Informal Roman")
cboFont.Items.Add("Lucida Calligraphy")
cboFont.Items.Add("Matura MT Script Capitals")
cboFont.Items.Add("Microsoft Sans Serif")
cboFont.Items.Add("Old English Text MT")
cboFont.Items.Add("Pristina")
cboFont.Items.Add("Ravie")
cboFont.Items.Add("Segoe Print")
cboFont.Items.Add("Times New Roman")
'Add items to font color
cboFontColor.Items.Clear()
cboFontColor.Items.Add("Red")
cboFontColor.Items.Add("Yellow")
14

cboFontColor.Items.Add("Blue")
cboFontColor.Items.Add("Green")
cboFontColor.Items.Add("Purple")
End Sub
Private Sub cboFormColor_SelectedIndexChanged(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles cboFormColor.SelectedIndexChanged
If cboFormColor.SelectedItem = "Light Coral" Then
Me.BackColor = Color.LightCoral
ElseIf cboFormColor.SelectedItem = "Light Pink" Then
Me.BackColor = Color.LightPink
ElseIf cboFormColor.SelectedItem = "Light Blue" Then
Me.BackColor = Color.LightBlue
ElseIf cboFormColor.SelectedItem = "Light Yellow" Then
Me.BackColor = Color.LightYellow
ElseIf cboFormColor.SelectedItem = "Medium Purple" Then
Me.BackColor = Color.MediumPurple
End If
End Sub
Private Sub cboFont_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles cboFont.SelectedIndexChanged
If cboFont.SelectedItem = "Arial" Then
txtComment.Font = New Font("Arial", 16, FontStyle.Regular)
ElseIf cboFont.SelectedItem = "Algerian" Then
txtComment.Font = New Font("Algerian", 16, FontStyle.Regular)
ElseIf cboFont.SelectedItem = "Arial Rounded MT Bold" Then
15

txtComment.Font = New Font("Arial Rounded MT Bold", 16, FontStyle.Regular)


ElseIf cboFont.SelectedItem = "Blackadder ITC" Then
txtComment.Font = New Font("Blackadder ITC", 16, FontStyle.Regular)
ElseIf cboFont.SelectedItem = "Copperplate Gothic Light" Then
txtComment.Font = New Font("Copperplate Gothic Light", 16, FontStyle.Regular)
ElseIf cboFont.SelectedItem = "Forte" Then
txtComment.Font = New Font("Forte", 16, FontStyle.Regular)
ElseIf cboFont.SelectedItem = "Harrington" Then
txtComment.Font = New Font("Harrington", 16, FontStyle.Regular)
ElseIf cboFont.SelectedItem = "Informal Roman" Then
txtComment.Font = New Font("Informal Roman", 16, FontStyle.Regular)
ElseIf cboFont.SelectedItem = "Lucida Calligraphy" Then
txtComment.Font = New Font("Lucida Calligraphy", 16, FontStyle.Regular)
ElseIf cboFont.SelectedItem = "Matura MT Script Capitals" Then
txtComment.Font = New Font("Matura MT Script Capitals", 16, FontStyle.Regular)
ElseIf cboFont.SelectedItem = "Microsoft Sans Serif" Then
txtComment.Font = New Font("Microsoft Sans Serif", 16, FontStyle.Regular)
ElseIf cboFont.SelectedItem = "Old English Text MT" Then
txtComment.Font = New Font("Old English Text MT", 16, FontStyle.Regular)
ElseIf cboFont.SelectedItem = "Pristina" Then
txtComment.Font = New Font("Pristina", 16, FontStyle.Regular)
ElseIf cboFont.SelectedItem = "Ravie" Then
txtComment.Font = New Font("Ravie", 16, FontStyle.Regular)
16

ElseIf cboFont.SelectedItem = "Segoe Print" Then


txtComment.Font = New Font("Segoe Print", 16, FontStyle.Regular)
ElseIf cboFont.SelectedItem = "Times New Roman" Then
txtComment.Font = New Font("Times New Roman", 16, FontStyle.Regular)
End If
End Sub
Private Sub cboFontColor_SelectedIndexChanged(ByVal sender As System.Object, ByVal
e As System.EventArgs) Handles cboFontColor.SelectedIndexChanged
If cboFontColor.SelectedItem = "Red" Then
txtComment.ForeColor = Color.Red
ElseIf cboFontColor.SelectedItem = "Yellow" Then
txtComment.ForeColor = Color.Yellow
ElseIf cboFontColor.SelectedItem = "Blue" Then
txtComment.ForeColor = Color.Blue
ElseIf cboFontColor.SelectedItem = "Green" Then
txtComment.ForeColor = Color.Green
ElseIf cboFontColor.SelectedItem = "Purple" Then
txtComment.ForeColor = Color.Purple
End If
End Sub
Private Sub picClear_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles picClear.Click
picCharacters.Image = My.Resources.white
radBlair.Checked = False
17

radDelancy.Checked = False
radHadley.Checked = False
radIsla.Checked = False
cboFormColor.Items.Clear()
cboFont.Items.Clear()
cboFontColor.Items.Clear()
txtComment.Clear()
End Sub
Private Sub picHome_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles picHome.Click
Me.Hide()
frmMenu.Show()
End Sub
Private Sub picClose_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles picClose.Click
End
End Sub
Private Sub frmAnimations_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
picCharacters.Image = My.Resources._300px_PrincessBlairWillows
radBlair.Checked = True
Me.MaximizeBox = False
End Sub
Private Sub picBrowser_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles picBrowser.Click
Me.Hide()
frmBrowser.Show()
End Sub

18

Private Sub picWMP_Click(ByVal sender As System.Object, ByVal e As


System.EventArgs) Handles picWMP.Click
Me.Close()
frmWMP.Show()
End Sub
End Class

e) Coding for spsLoading


Public NotInheritable Class spsLoading
Private Sub spsLoading_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Timer1.Start()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs)
Handles Timer1.Tick
ProgressBar1.Increment(9)
If ProgressBar1.Value = 100 Then
End If
End Sub
End Class

Conclusion
We are really very thankful to Miss Zuriyanti because she always guides us a lot. Even, when
she is busy she will guide us every time. She also is very friendly type because she will
update everything about assignment and studies in social communication such as Facebook.
However, we have developed our skills and knowledge in Visual Studio and also learned
many things. Then, here we can meet each other members in our group assignment to
discuss more about coding and can get a good communication so it will be very useful in
future.
19

Testing Strategy
Student Name & PID number:
Wong Kah Chun
Dhayalini a/p Asokan
Vithiyah a/p Pachimuthu
Chowddhiri a/l Kannan

References:
a) Images
Pictures
300px-PrincessBlairWillows.png:

Descriptions
Link:

http://images4.wikia.nocookie.net/__cb20
121001113212/barbiemovies/images/a/a7/300pxPrincessBlairWillows.png

300px-PrincessIslaDJ.png:

Link:

http://images3.wikia.nocookie.net/__cb20
111229211759/barbiemovies/images/thumb/4/41/PrincessIslaD
J.png/300px-PrincessIslaDJ.png

597px-HadleyDelancyBlairIsla.png:

Link:

20

http://images.wikia.com/barbiemovies/images/5/55/597pxHadleyDelancyBlairIsla.png

640px-Princess_Hadley_(16) .png:

Link:

http://images4.wikia.nocookie.net/__cb20
130715133829/barbiemovies/images/thumb/8/83/Princess_Hadl
ey_(16).png/640pxPrincess_Hadley_(16).png

1240505_10152157779734466_1613407
195_n.jpg:

Link:

http://lh3.ggpht.com/95QpjLAkrF4/Uh_0XZz6WQI/AAAAA
AAAADg/fhvdLQeNmY/1240505_10152157779734466_
1613407195_n.jpg

Arrow back.png:

Link:

http://www.veryicon.com/icon/png/Syste
m/Fresh%20Addon/Arrow%20back.png

Arrow forward.png:

Link:

http://www.veryicon.com/icon/png/Syste
m/Fresh%20Addon/Arrow
%20forward.png

Barbie_Logo.png:

Link:

http://piccolor.com/wpcontent/uploads/2013/08/Barbie_Logo21

200x110.png

barbie-wallpaper.jpg:

Link:

http://www.hdwallpaperstop.com/wpcontent/uploads/2013/07/barbiewallpaper.jpg

blue-home button- 200pix.png:

Link:

http://www.mortonarts.com/images/bluehome%20button-%20200pix.png

clear-button-png-hi.png:

Link:

http://www.clker.com/cliparts/x/y/r/T/f/B/
clear-button-png-hi.png

Cartoon-Barbie-Wallpaper.jpg:

Link:

http://www.hdwallpaperstop.com/wpcontent/uploads/2013/07/Cartoon-BarbieWallpaper.jpg

Close File.png:

Link:

http://www.veryicon.com/icon/png/Syste
m/Crystal%20Clear%20Actions/Close
22

%20File.png

Close_Box_Blue.png:

Link:

http://individual.iconsland.com/IconsPreview/BaseSoftware/PN
G/256x256/Close_Box_Blue.png

Dock_Icon_Home_Button_by_Moa_isa_
JediKnight.png:

Link:

http://fc06.deviantart.net/fs70/f/2010/237/
5/d/Dock_Icon_Home_Button_by_Moa_i
sa_JediKnight.png

glossy_exit_blue_3d_terminate_quit_del
ete_cancel_close_error.png:

Link:

http://icongal.com/gallery/image/252183/
glossy_exit_blue_3d_terminate_quit_dele
te_cancel_close_error.png

go_button.png:

Link:

http://www.southeastgreysupportservices.
com/Pictures/Utilities/go_button.png
23

Hadley_smiling.png:

Link:

http://images2.wikia.nocookie.net/__cb20
111005194938/barbiemovies/images/thumb/d/de/Hadley_smilin
g.png/305px-Hadley_smiling.png

home_button.png:

Link:

http://www.ellingtonschools.org//emslibra
ry/images/home_button.png

home-button.png:

Link:

http://www.keytothecity.co.uk/images/ho
me-button.png

LadyRoyalDelancy.png:

Link:

http://images2.wikia.nocookie.net/__cb20
111229212503/barbie24

movies/images/9/95/LadyRoyalDelancy.p
ng

netscape.png:

Link:

http://files.softicons.com/download/syste
m-icons/human-o2-icons-by-oliverscholtz/png/128x128/apps/netscape.png

refresh.png:

Link:

http://files.softicons.com/download/applic
ation-icons/toolbar-icons-bygentleface/png/512/refresh.png

photo_gallery_icon.png:

Link:

http://gbcmartinsburg.com/wpcontent/uploads/2013/05/photo_gallery_ic
on.png

Windows-Media-Player-11-icon.png:

Link:

http://icons.iconarchive.com/icons/ncrow/
mega-pack-2/256/Windows-MediaPlayer-11-icon.png

b) Videos
Videos
princess.charm.school.dvdrip.xvidinvaders.avi

Descriptions
Link:

http://kickass.to/barbie-princess25

charm-school-dvdrip-xvid-invaderst5863819.html
Barbie A Fairy Secret 2011

Link:

[DVDRip.XviD-miguel] [ENG].avi

http://kickass.to/barbie-a-fairy-secret2011-dvdrip-xvid-miguel-engt5223364.html

barbie.a.perfect.christmas.xvid-ignition.avi

Link:

http://kickass.to/barbie-a-perfectchristmas-dvdrip-xvid-ignitiont5983968.html

c) Websites
Website

Descriptions

Barbie.com

Link:

Barbie: Princess Charm School

http://www.barbie.com/
Link:

http://www.barbie.com/princesscharm-school/#/home

Barbie: A Fairy Secret

Link:

http://www.barbie.com/fairy-secretmovie/#/videos/

Barbie: A Perfect Christmas

Link:

http://www.barbie.com/perfectchristmas-movie/

Action and Expected Behaviour


Action
Splash Screen

Expected Behavior
It will appear when the programs start to run.

26

Picture Box

picRefresh:

Refresh the current website

picBrowser:

Go back to frmBrowser

picAnimations:

Hide frmWMP and show the frmAnimations

picWMP:

Hide frmAnimations and show the frmWMP

picBack

Go back to the previous website

picForward:

Go to the next website

picClear:

Unchecked the Radio Button


Clear the Combo Box items
Clear the txtComment

picHome:

Back to frmMenu

picExit / picClose:
Radio Button

Terminates the program


radBlair:

Display the 300px-PrincessBlairWillows.png file


within picCharacters

radDelancy:

Display the LadyRoyalDelancy.png file within


picCharacters

radHadley:

Display the Hadley_smiling.png file within


picCharacters

radIsla:

Combo Box

Display the 300px-PrincessIslaDJ.png file within

picCharacters
cboFormColor:
27

Display a list of colors (Light Coral, Light Pink ,


Light Blue, Light Yellow & Medium Purple.

cboFont:

When choose a font type, it will automatically


display the font size of 16 and Regular font

style within the txtComment.


Display a list of font type (Arial, Forte, and so
on )

cboFontColor:

Display a list of font colors (Red, Yellow,


Blue , Green , Purple)

Buttons

btnBrowser:

Hide the frmMenu and show the frmBrowser.

btnAnimations:

Hide the frmMenu and show the frmAnimations

btnWMP:

Hide the frmMenu and show the frmWMP

btnClose:

Close the frmMenu

btnBarbie:

Display the http://www.barbie.com/ webpage.

btnPrincessCharmSchool:

Display the http://www.barbie.com/princesscharm-school/#/home webpage.

btnFairySecret:

Display the http://www.barbie.com/fairy-secretmovie/#/videos/ webpage.

btnPerfectChristmas:

Display the http://www.barbie.com/perfectchristmas-movie/ webpage.

btnSoundtrack 1

Play the Barbie Princess Charm School _You Can


28

Tell She's A Princess.mp3 file.


btnSoundtracks 2:

Play the Barbie A Fairy Secret - Can You Keep A


Secret.mp3 file.

btnSoundtracks 3:

Play the Barbie in A Perfect Christmas-A Perfect


Christmas.mp3 file.

btnMovie1:

Play the princess.charm.school.dvdrip.xvidinvaders.avi file.

btnMovie2:

Play the Barbie A Fairy Secret 2011


[DVDRip.XviD-miguel] [ENG].avi file.

btnMovie3:

Tool Strip Menu Items

Play the barbie.a.perfect.christmas.xvid-

ignition.avi file.
BarbiecomToolStripMenuItem

Display the http://www.barbie.com/ webpage.

BarbiePrincessCharmSchoolToolStripMenuItem

Display the http://www.barbie.com/princesscharm-school/#/home webpage.

BarbieAFairySecretToolStripMenuItem

Display the http://www.barbie.com/fairy-secretmovie/#/videos/ webpage.

BarbieAPerfectChristmasToolStripMenuItem

Display the http://www.barbie.com/perfectchristmas-movie/ webpage.

PrintToolStripMenuItem

Print the current website when one of the website is


running

SaveToolStripMenuItem

Show the Save As Dialog Box when one of the


website is running
29

PrintPreviewToolStripMenuItem

Show the Print Preview Dialog Box when one of the


website is running

ExitToolStripMenuItem

Close the program

MenuToolStripMenuItem

Hide the frmBrowser and show the frmMenu.

AnimationsToolStripMenuItem

Hide the frmBrowser and show the frmAnimations

WindowsMediaPlayerToolStripMenuItem

Hide the frmBrowser and show the frmWMP

AboutUsToolStripMenuItem

Shows the frmAboutUs

30

You might also like