Shaker – Music CD`s, Film DVD`s and Blu-Ray project…
I had to do a project for Music CD`s, Film DVD`s and Blu-Ray.
The website is about 12 pages with a lot of javascript, ajax, mootools and some php scripts. I did try to combine all new useful web technologies in one site and I guess i did well.
I present to you Shaker
It took me about 2 weeks but I couldn`t work on it every day because I was still doing my college course. Also this website took me to the finals of web development competition.
Screenshots of the project.
I tried to make step by step screenshots. As you might be able to see I didn't actually make screenshots for everything I did. I made some screenshots time to time so everyone can part of my way of creating website. There is screenshots of design the website, design and creating the flash animation and coding the actual website with CSS and HTML.
I did try to make a video of creating the website but my computer isn't powerfully enough to handle the recording and working with software such as Flash, Photoshop and Dreamweaver.
That's all from now, please leave a comment saying what you think about the website and also if you say what you don't lime about the website will be great!
Thanks for wasting your time in my poor blog.
Visual Basic 2008 – Variables
First of all I am going to explain what variable is. For those of you who already know just skip this part.
A variable is something that you can store any value in as you work through your algorithm. You can make a decisions based on the value for example ( is your value equal to 5 or is more than 6). Also you can perform operations on that value to change it into something else... for example add some number to the value( 4 + the value minus 2, and so on).
How to create a variable and work with it.
1) First create new Visual basic Project.

New VB 2008 project
2) Add a button control from the ToolBox to the stage your working on. Set the button to Text property Add 2 to Number and the name property to btnAdd.
The button should looks like that:

Visual Basic 2008 button
3) Double click on the button(Add 2 to Number) and this will bring you to code view. Now copy the code:
Dim Number As Integer
Number = 20
Number = Number + 2
MessageBox.Show("Value of Number + 2 = " & Number.ToString, "Variables")
Your code shoud looks like that:

Simple Variable coding
4) OK now you have done the coding bit. To test the program click on the little green button above your tabs. Now what is happening is that the number 20 + 2 should give you an answer of 22. Is your right?
Every variable starts with Dim then the name and the type. Example: Dim Name As String.
What I have done in the code is I set a Dim, the name was Number and the type As Integer. You should learn all types before start any coding. (Integer, Decimal, String....)
I have told the form that the variable Number is equals 20 ( Number = 20). After this i set that the Number is equals the Number itself plus 2 ( Number = Number + 2)
And on the last code I simply outputted that answer in Message Box. (MessageBox.Show(Number.ToString) and I added some text in the open and closed brackets.
This is it. You just learned how the variables work and how to use them.















































































