Sunday, September 19, 2010

Friday, September 17, 2010

Quiz1 - Brochure

1. open MS PUBLISHER 2003


2. In the publication for print select brochure


3. Select the style Accent Box


4. Copy the format as shown in the picture below

















5. Open the school website

6. Copy the picture and text (refer at the sample output)

7. Filename: quiz1










Thursday, September 9, 2010

Saturday, September 4, 2010

Creating Multimedia Applications-Part I

You can create various multimedia applications in VB that could play audio CD, audiofiles, VCD , video files and more.


To be able to play multimedia files or multimedia devices, you have to insert Microsoft Multimedia Control into your VB applications that you are going to create. However, Microsoft Multimedia Control is not normally included in the startup toolbox, therefore you need to add the MM control by pressing Ctrl+T and select it from the components dialog box that is displayed.

Creating a CD player

In this program, you can create a CD player that resembles an actual CD player. It allows the user select a track to play, to fast forward, to rewind and also to eject the CD. It can also display the track being played. The interface and code are shown below.

















The Code

Private Sub Form_Load()
'To position the page at the center
Left = (Screen.Width - Width) \ 2
Top = (Screen.Height - Height) \ 2
'Initialize the CD
myCD.Command = "Open"

End Sub


Private Sub myCD_StatusUpdate()


'Update the track number
trackNum.Caption = myCD.Track
End Sub

Private Sub Next_Click()
myCD.Command = "Next"
End Sub

Private Sub Play_Click()
myCD.Command = "Play"

End Sub

Private Sub Previous_Click()
myCD.Command = "Prev"
End Sub

Private Sub Stop_Click()
myCD.Command = "Stop"
End Sub

Tuesday, August 17, 2010

CS 1 Final Exam

Please Read First!!!!!

IT, ICT & HRM Students this is your final exam (hands-on). Kindly download the file on the given link below, after you download the file (Excel template) you may start answering, this is an individual work you are not allowed to talk and ask question from your seat mate. If you have question or clarification about the exam ask your teacher. Thanks you and GOOD LUCK.

http://www.4shared.com/document/Lt35aF0Q/Exam.html

Followers

Visitor

free counters

FEEDJIT Live Traffic Feed