Friday 20 March 2015

Making a Quiz in VS 2013

What code is needed to make a quiz game application on windows universal application.
I am using Visual Studio 2013 to achieve this.

Step 1 :
Design the way you want the quiz to look.



Step 2:
This is the simple way of creating a quiz which if done by making a separate page for each page in the quiz.The only code that you need for this is:

-The code for the wrong answer.
-This code displays a message to let the user know that the answer they chose is not correct.
-First you need to insert:

using Windows.UI.Popups;

 private async void wrongAnswer_Click(object sender, RoutedEventArgs e)

        {
            MessageDialog dialog = new MessageDialog("Try Again!");
            await dialog.ShowAsync();
        } 


Step 3:
The code for the right answer is :

 private void rightAnswer_Click(object sender, RoutedEventArgs e)
        {
            this.Frame.Navigate(typeof(FunQ2)); // FunQ2 is another page 
                                                                         // the code from this button passed the quiz to the other                                                                               page.
        }












Tuesday 11 March 2014

Cisco Packet Tracer: 
This is a network simulation program that allows students to experiment with network behavior and ask "what if" questions. As an integral part of the networking Academy comprehensive learning experience , Packet Tracer provides  simulation , visualization, authoring, assessment, and collaboration capabilities and facilities the teaching and learning of complex technology concepts.



Features:


  1. Improved Link-sys models, wireless security
  2. Cable and DSL enhancements 
  3. Call Manager Express (VOIP support)
  4. FTP servers and routers /switches - Server-Client 
  5. Email system -Server-Client
  6. Generic IP end devices
  7. Activity wizard Initial tree enhancements




Monday 10 March 2014

Review on Eclipse



Eclipse

With an extraordinary feature list that can only be associated with the product's longevity and widespread use, Eclipse has gained an unrivaled reputation for performance.

Web tool platform:

The Eclipse Web Tools Platform (WTP) project is an extension of the Eclipse platform with tools for developing Web and Java applications. It includes source and graphical editors for a variety of languages, wizards and built-in applications to simplify development, and tools and APIs to support deploying, running, and testing apps.



Features
  1. Supports Git Version Control System.
  2. Support for simultaneous reviews by multiple users.
  3. Use of current user perspective with extra views.
  4. Review Items browsing using Eclipse compare viewers.
  5. Uses databases.
  6. Integration of utilities to keep track of reviewed items and time spent in reviews
  7. Support for custom design rules enabling automatic entry of anomaly attributes.

Wednesday 26 February 2014

Editing Software to help you Personalize App images.

PIXLR is an online editing software that is free and very easy to work with. You can use this software to design and edit your app images. It is an easier version of Photoshop!

How to use this software:



  • Choose any photo's to add a photo from your computer or from the Internet.

  • Check all the editing tools that are available.

  • When you are happy with the output save it and you have a personalized image on your app.  

Monday 17 February 2014

Helpful Tutorial!

This tutorial will help you download Eclipse and the SDK that is needed to create an android application. It will also show you a small demonstration of how to create an android application.