Forum     

Go Back   Digit Technology Discussion Forum > Community > Tutorials
Register FAQ Calendar Mark Forums Read

Tutorials This section offers tutorials and How to's on just about anything related to computers and IT. Note: All tutorials are courtesy the posters and not verified by Digit


View Poll Results: How much useful is this post
Very Very much useful 1 20.00%
Very useful 1 20.00%
Useful 0 0%
Already knowing 3 60.00%
Voters: 5. You may not vote on this poll

Closed Thread
 
LinkBack Thread Tools Display Modes
Old 20-01-2007, 09:24 PM   #1 (permalink)
In The Zone
 
Join Date: Sep 2006
Posts: 319
Lightbulb Make ur written materials more beautiful by using AASCII keys


Tutorial number = 3

This Tutorial is only for beginners

Hello frnds,
this tutorials is basically for beginners but it may prove useful to advanced and intermediate users also.
In this tutorial u will learn how to make ur e-mails , textdocuments , presentations ,icons and general writing beautiful using AASCII keys .I will like to tell u that AASCII values may or may not work somewhere for e.g in this page also many AASCII keys do not work. e.gs of AASCII keys are

‼ ¶ § ♀ ♂ ♪ ♥ ♣ ♠ • ○ ♂ § ↑ ↓ → ← ∟ ↔ ▲ ▼ ± Φ ╘ ╚ ╟ ╞ ┼ etc.

To use AASCII keys somewhere u have to hold alt and press the AASCII number. For e.g
The result for alt + 45 will be -
The result for alt + 254 will be ■
The result for alt + 253 will be ˛
etc

I have founded the AASCII keys and there values by making a C# program. If u want that C# program u can reply for it.
I have also created a word document that tells the AASCII keys and their values.

AASCIIvalues.zip
__________________
Visit now ;)
www.indiandevs.com - for great free designs :)
www.indiandevs.com/technoworld/ for latest technology news and tricks

Last edited by Siddharth Maheshwari; 21-01-2007 at 12:32 PM.
Siddharth Maheshwari is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 20-01-2007, 09:41 PM   #2 (permalink)
Super Hero - Super Powers
 
n2casey's Avatar
 
Join Date: Sep 2006
Location: Dynamic
Posts: 766
Smile Re: Make ur written materials more beautiful by using AASCII keys

Here is the C program to find ASCII values.

Code:
#include<stdio.h>
#include<conio.h>

void main()
{
char x;
clrscr();
do
{
x = getch();
printf("ASCII value of %c is %d\n",x,x);
}
while(x != 13)
getch();
}
Here 13 is the ASCII value of Enter key so the program will run till Enter is not pressed.
__________________
Minds are like Parachutes :arrow: They work best when open
n2casey is offline  
Old 20-01-2007, 09:59 PM   #3 (permalink)
Google Bot
 
Pathik's Avatar
 
Join Date: Aug 2005
Posts: 9,772
Default Re: Make ur written materials more beautiful by using AASCII keys

hehe... this was the first program i had made wen learning C...

/*ASCII VALUES (p@t)*/

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

void main()
{
int a;
clrscr();
printf("ASCII VALUES.. 1-256 by Pathik S\n");
printf("Enter a number from 1-256 to get its ASCII value\n");
scanf("%d",&a);
printf("%d %c",a,a);
printf("\n");
getch();
}
Pathik is offline  
Old 20-01-2007, 10:03 PM   #4 (permalink)
Super Hero - Super Powers
 
n2casey's Avatar
 
Join Date: Sep 2006
Location: Dynamic
Posts: 766
Default Re: Make ur written materials more beautiful by using AASCII keys

^^
Me too, made the third program in C when started learning C.
__________________
Minds are like Parachutes :arrow: They work best when open
n2casey is offline  
Old 20-01-2007, 10:15 PM   #5 (permalink)
Šupər♂ - 超人
 
koolbluez's Avatar
 
Join Date: Oct 2004
Location: Look up... up in da sky... see me yet? Nah... Use a telescope, dumbo!
Posts: 1,626
Default Re: Make ur written materials more beautiful by using AASCII keys

And ya... no need of downloadin the zip file.
Check out here, here, here or here's an online tool.
U can even check out ur windows utility.. Character Map (Run charmap)

Quote:
Originally Posted by siddharth_2463107
Make ur written materials more beautiful by using AASCII keys
And it's ASCII
__________________
Windows ka tashan... koolbluez ishtyle - http://lin.cr/ss
I almost forgot this - http://www.thinkdigit.com/forum/showthread.php?t=6242

Last edited by koolbluez; 20-01-2007 at 10:20 PM.
koolbluez is offline  
Old 20-01-2007, 11:10 PM   #6 (permalink)
Super Hero - Super Powers
 
n2casey's Avatar
 
Join Date: Sep 2006
Location: Dynamic
Posts: 766
Default Re: Make ur written materials more beautiful by using AASCII keys

@ siddharth_2463107

2463107 is that ur landline phone number??????

[Don't take otherwise, just asking.]
__________________
Minds are like Parachutes :arrow: They work best when open
n2casey is offline  
Old 21-01-2007, 12:04 PM   #7 (permalink)
Šupər♂ - 超人
 
koolbluez's Avatar
 
Join Date: Oct 2004
Location: Look up... up in da sky... see me yet? Nah... Use a telescope, dumbo!
Posts: 1,626
Default Re: Make ur written materials more beautiful by using AASCII keys

Quote:
Originally Posted by siddharth_2463107
I am getting very bad results from this tut
One more thing :-
This tutorial is only for beginners.
Dont feel bad, maan. Just givin what we know too.
Helpin u out.. not tryin 2 disappoint or put u down. Nice try.
__________________
Windows ka tashan... koolbluez ishtyle - http://lin.cr/ss
I almost forgot this - http://www.thinkdigit.com/forum/showthread.php?t=6242
koolbluez is offline  
Old 21-01-2007, 12:37 PM   #8 (permalink)
Ron
||uLtiMaTE WinNER||
 
Ron's Avatar
 
Join Date: Nov 2006
Location: Kathmandu,Nepal
Posts: 698
Default Re: Make ur written materials more beautiful by using AASCII keys

Hey keep posting.................
The more u share the more u gain.......................
__________________
||uLtiMaTE WinNER||
Ron is offline  
Old 21-01-2007, 06:08 PM   #9 (permalink)
Right Off the Assembly Line
 
Join Date: Jan 2007
Posts: 9
Default Re: Make ur written materials more beautiful by using AASCII keys

good at ur age
already knowing.......
sarkar is offline  
Old 21-01-2007, 06:14 PM   #10 (permalink)
Google Bot
 
Pathik's Avatar
 
Join Date: Aug 2005
Posts: 9,772
Default Re: Make ur written materials more beautiful by using AASCII keys

hey sid man... good tut ... and its not safe to give ur phone no here...
Pathik is offline  
Old 21-01-2007, 06:26 PM   #11 (permalink)
Google Bot
 
Pathik's Avatar
 
Join Date: Aug 2005
Posts: 9,772
Default Re: Make ur written materials more beautiful by using AASCII keys

hey u can pm the mods /admins and request them to change ur id...
Pathik is offline  
Old 21-01-2007, 08:01 PM   #12 (permalink)
Microsoft MVP
 
Vishal Gupta's Avatar
 
Join Date: Jul 2005
Location: AskVG.com
Posts: 5,173
Default Re: Make ur written materials more beautiful by using AASCII keys

@Siddharth, its ASCII, not AASCII
__________________
:arrow: http://www.AskVG.com/
Vishal Gupta is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


 
Latest Threads
- by Tenida
- by clinton

Advertisement




All times are GMT +5.5. The time now is 03:44 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2