Wednesday, 18 March 2015

Creating Simple Loading Bar in Turbo c

Study the following Code or download the Code file and place it at C:\TC\BGI




CODE:

#include <graphics.h>
  #include <stdlib.h>
  #include <stdio.h>
  #include <conio.h>
  #include <dos.h>



Creating Windows VISTA LOGO

Simply go through the Following coding or Download By clicking Download.Place the downloaded file in C:\TC\BGI

Download

CODE:

#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
#include <dos.h>

How to Create Football in turbo C

First initialize Graphics  by adding the following code:

int gd = DETECT,gm;
initgraph(&gd,&gm,"C:\\TC\\BGI");

Set Colour for the ball and background:
setbkcolor(16);
setfillstyle(SOLID_FILL,23);
floodfill(23,50,23);

How to create Moving Bar in Turbo c

Creating moving bar in tubro c is very easy just go through the following code:

You can download the Complete file by clicking Download
Place the downloaded file in C:\TC\BGI

Download


#include<stdio.h>
#include<graphics.h>
#include<conio.h>


void main()
{
int l,i=250,j=400,x=0,y=-1,ch,gd=DETECT,gm;
initgraph(&gd,&gm,"c:\\TC\\BGI");
while(100)

Bouncing ball in turbo c



This program is build by using Turbo c(Dos Box) .Graphic mode are present in BGI folder of TC .Code Sample are given below you can download it by clicking the download button.Place the downloaded file in C:\TC\BGI

Computer-Aided Design (cad)

Computer aided design is a tool used by graphics designers/engineers to analyze, create, edit and maximization of a design. Computer Aided Design is used to increase the skills of a designer to improve the quality of work, it allow a designer to represent a design graphically and view design from any angle with a single click of a button and to zoom in or out for closer and far views. CAD is used to create two or three dimensional (2D or 3D) graphical representations of physical objects.  It is widely used for computer animation and special effects in movies, advertising, and other applications where the graphic design is needed.

Monday, 16 February 2015

Rss Feed Complete Code

Objectives

In this blog, we take a quick tour of the features that you'll use to build Windows Store apps. Through the process of creating a simple blog reader app, we introduce concepts that are core to development with XAML, including layout, controls, templates, and data binding. You learn how to use the page templates and navigation that are built into Microsoft Visual Studio Express 2012 for Windows 8 to quickly start your app development. You then learn how to use custom styles to modify the look of the app, and how to adapt the UI to various layouts and views. Finally, we briefly discuss integrating the app with Windows 8 and publishing it to the Windows Store. By the time you complete this tutorial, you'll be prepared to start building your own Windows Store apps.

Android Studio Project Structure

Android Project Structure In this blog i have explained Android project structure and file organization in detail, by creating a new An...