Click here to Skip to main content
Click here to Skip to main content

Text to Braille Converter

By , 18 Jul 2007
 
Screenshot - braille.jpg

Introduction

Well Guys, I have developed this very simple program to demonstrate the regular text to Braille conversion. I won't go into the history or what is Braille? you can check this out here http://en.wikipedia.org/wiki/Braille .

Using the code

How you can write this program what sort of things are necessary to develop this very simple program. First off all you have to download the font [Braille]. If you unable to find one then I have provided in the source code zip which you can download it from above. Just copy that font into your font directory in the control panel. Now run your application and Test.

Setps to develope:

1. Place two TextBoxes one for regular Text and another for braille Text.

2. Set the Font of Braille TextBox to that font which you have copied to your

operating system fonts dirctory.

The Source code is simple.

<pre lang="cs">using System; 
 
using System.Collections.Generic; 
 
using System.ComponentModel; 
 
using System.Data; 
 
using System.Drawing; 
 
using System.Text; 
 
using System.Windows.Forms; 
 
 
namespace Braille 
 
{ 
 
public partial class Form1 : Form 
 
{ 
 
public Form1() 
 
{ 
 
InitializeComponent(); 
 
} 
 
 
        private void button1_Click(object sender, EventArgs e)

 
{ 
 
string regularText = RegularTextBox.Text.ToString(); 
 
BrailleTextBox.Text = regularText.ToString(); 
 
} 
 
} 
 
} 
 

Conclusion:

Well guys i know it's very simple application. i Hope you people will like it. www.exposecode.com

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

MussaratAziz
Web Developer
Pakistan Pakistan
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionNeed Translation for tattoo PinmemberCarmen Ayala22 Jun '09 - 9:23 
GeneralMy vote of 1 Pinmemberkasparovthe219 May '09 - 5:31 
Questionalgorithms Pinmembermagbee23 Feb '09 - 3:33 
GeneralExcessive use of ToString() PinmemberRavi Bhavnani19 Jul '07 - 3:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 19 Jul 2007
Article Copyright 2007 by MussaratAziz
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid