Skip to content

Commit

Permalink
Adding example
Browse files Browse the repository at this point in the history
  • Loading branch information
avinasha committed Aug 10, 2012
1 parent f25dd76 commit 407109a
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions EXAMPLE.C
@@ -0,0 +1,44 @@
#include<stdio.h>
#include<display.h>
#include<ctype.h>
#include<string.h>
#include<printlet.h>

void Login()
{
char loginID[10];
//_setcursortype(_SOLIDCURSOR);
backs(7,0);
win(16,8,65,18,1);
textbackground(1);
bod(16,8,65,18,14);
gotoxy(18,9);
textcolor(14);
cprintf("Login:");
gotoxy(20,13);
cprintf("Enter the Login ID: ______________");
gotoxy(42,13);
getch();
clrscr();
backs(7,0);
dissolve(16,8,65,18,1);
getch();
clrscr();
backs(7,0);
fro(1,15,1);
getch();
clrscr();
backs(7,0);
cascade(1,15,1);
getch();
decascade(7,100,1);
getch();
backs(7,0);
blocklet("HELLO WORLD",5,5,7,12,128);
getch();
}

void main()
{
Login();
}

0 comments on commit 407109a

Please sign in to comment.