Click here to Skip to main content
Licence 
First Posted 18 Jul 2007
Views 23,613
Downloads 264
Bookmarked 11 times

Text to Braille Converter

By | 18 Jul 2007 | Article
Converts the regular text into Braille text.
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



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. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionNeed Translation for tattoo PinmemberCarmen Ayala9:23 22 Jun '09  
GeneralMy vote of 1 Pinmemberkasparovthe25:31 19 May '09  
Questionalgorithms Pinmembermagbee3:33 23 Feb '09  
GeneralExcessive use of ToString() PinmemberRavi Bhavnani3:03 19 Jul '07  
GeneralRe: Excessive use of ToString() PinmemberMussaratAziz20:03 22 Jul '07  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

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