Make A Translator - Translateevery Single Letter And Make It 1 Word

Sep 7, 2009

I want to make a translator like this: [URL]...I have already made two textboxes and a button. If I type in textbox 1 abc then textbox 2 must say nop. I already know the If textbox1.text = "abc" then textbox2.text = nop. I don't want that i want to translate the a to a n and the b to a o and the c to p. So i want to translate every single letter and make it 1 word. Its like a secret code. My language looks like that a=nb=oc=pd=qe=rf=sg=th=ui=vj=wk=xl=ym=z n=ao=bp=cq=dr=es=ft=gu=hv=iw=jx=ky=l z=m

View 22 Replies


ADVERTISEMENT

Make A 'translator' That Will Simply Just Swap Each Letter?

Nov 15, 2010

I'm trying to make a 'translator' that will simply just swap each letter with each other, (a = b, b = a, c = d, d = c ect.), when the user types something into a textbox. How would I go about making it?

View 6 Replies

Parse Single Line In Textbox But Make Each Word / Number A String On Its Own?

Nov 9, 2011

I am populating a textbox with a single line of numbers that I would like to seperate out into strings.[code]...

View 3 Replies

Make A Na'Vi Translator?

Jan 9, 2010

I have a couple people asking me to make a Na'Vi translator (for those who saw Avatar). If I was to take on such a project, how would you go about creating a language translator in VB? (i.e. *TargetLanguage* -> English and visa-versa)

View 13 Replies

VS 2008 - IndexOf - User Enters A Letter Into A Text Box, And The Output Must Make The Letter Uppercase

Jun 28, 2010

I am a vb newbie having some trouble with an assignment. A user enters a letter into a text box, and the output must make the letter uppercase and tell what position the letter is at in the sentence "The quick brown fox jumps over a lazy dog."

Here is my

Private Sub btnSubmit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSubmit.Click

[CODE]...............

This is what comes out: "A first occurs in position -1". Everything comes out except the position is always displayed as -1.

View 4 Replies

Make A Leetspeak Translator In Vb 2010?

Mar 19, 2012

i've tried to make a leet translator but it fails.

View 7 Replies

Make Translator Interactive With The User

Oct 5, 2009

I want to make my translator interactive with the user. In microsoft Word the User can change the dictionary terms of the word or insert a word to make the (little red line) beneath a misspelt word go away. In my translator program. I have a databank of words that are inside a strArray. The strArray is read as EnglishWord[SpanishDefinition] and SpanishWord[EnglishDefinition] inside the DataBank. I want the user to be able to insert a word with it's definition if the databank does not have the word or the definition...

View 13 Replies

Make VB Code To Take Apart A Word To Make Sure It Has Required Letters?

Sep 10, 2010

I've been looking through the book I own and I've been looking online but I just don't understand what code would I write to have it check the text box or input box for the right letters in a word?

View 2 Replies

VS 2005 Make First Letter Into Uppercase

Jul 15, 2009

how to Make Uppercase only the first letter and the rest are small.i found a lot of code here but i don't have clear to want i need [code]it work but the cursor is always move before the letter, result are user has difficulties when typing because it always move to before the first

View 6 Replies

IDE :: Make Validation In Txtbox Only Allow Letter And Number?

Jul 31, 2010

How to make validation Only Allow letters and Numbers to Input, without any special character in Textbox

View 4 Replies

Keypress - How To Make Separate Line For Each Letter

Nov 26, 2011

I have a textbox and I only want people to be able to type in the word "ALL" and the numbers 1-6. How do I go about that? I got the number part but do I have to make a separate line for each letter in the alphabet that isn't "A" or "L"?

Private Sub monthTextBox_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles monthTextBox.KeyPress
'If (e.KeyChar <= "1" OrElse e.KeyChar <= "6") Then _
'AndAlso e.KeyChar = "ALL" Then
'e.Handled = True
[Code] .....

View 4 Replies

Make SendKeys Just Hold The Key Down Instead Of Spamming The Letter?

Mar 13, 2011

I am trying to make a program that will be an auto-run in a game for me, the movement key is W and when i use SendKeys, it just spams W really fast (but with the KeyUps also) so my character just slowly goes and stops goes and stops. Is there a way I can just hold the W key down through VB.NET (such as just placing your finger on a key and holding it down)?

View 5 Replies

Use To Make The 1st Letter Of The Input Users Name Is Capitalised?

May 30, 2011

wondering what i should use to make the 1st letter of the input users name is Capitalised.

so textbox 1 they would enter - josh and when its shown in any labels is shows - Josh

would ucase be used here ? im not sure.

View 6 Replies

VB 2010 Make A Label Update And Add Another Letter Beside It?

May 19, 2012

how to make a label update and add another letter beside it? E.X : I want it to say Loading then 1 seconds later it goes to loading. then to loading.. then loading...

[Code]....

View 4 Replies

Make Program That Counts The Frequency Of Each Letter In The Alphabet?

Feb 22, 2012

I'm trying to make this program that counts the frequency of each letter in the alphabet for a set of ciphertext, the calculation i want to do is:lettersum*(lettersum - 1) + lettersum*(lettersum - 1) for however many letters example: User puts aabbcc in the ciphertext box , the output should be
2(2-1)+2(2-1)+2(2-1) =6 If the user inputs aaaaab the output should be 5(5-1)+1(1-1) = 20 The code I have so far only counts the last number of letters for example: aabbcc only reads the cc part and only outputs 2(2-1) = 2 instead of 2(2-1) + 2(2-1) + 2(2-1) = 6.The code below is part of a button_Click item

[Code]...

View 7 Replies

Check Each Letter Of A Word If That Word Doesn't Contain (AEIOUY)

Oct 28, 2011

I am trying to check each letter of a word if that word doesn't contain (AEIOUY) then I have to append (-way) to the end of the word. Now I have this if statement and it doesn't work:

If OriginalWord.ToUpper Like "*[!AEIOUY]*" Then
Label1.Text = OriginalWord & "-way"
End If

I need to append a (-way) to the end of a word that doesn't have (AEIOUY)

View 8 Replies

How To Make .net App Run From A Single USB Drive Only

Sep 11, 2010

I've developed an application in vb.net that can run from a usb drive. But i need my app to work only from that usb in which i distribute it.

If someone copies it to other Drive/USB, it must not work. Do u know how to implement this?

View 1 Replies

How To Make DataGridView Containing Single Row

Mar 6, 2009

How can I make the datagridview contains 1 row? Because I have a toolbar that have two button (forward,backward) and I need the datagridview to be single row because each row is a record in The DB. And when I press the forward button I will go to the next record. And btw, which is better this way or make the datagridview display all the records at once?

View 7 Replies

Make A Single .exe File?

Nov 1, 2008

how can i make my VB 2008 project just one single .EXE

View 8 Replies

VS 2005 Make Live Search Form Like When User Enter 1 Char Then It Ll Find All Data Start With Or Contain Letter?

Jun 19, 2009

I want to make live search form like when user enter 1 char then it ll find all data start with or contain letter.i have use the sql like query with textbox textchanged event but it is too slow any other method to make it fast?

View 4 Replies

Make A Single Image Appear Randomly?

Apr 26, 2011

im trying to make a single image appear randomly at any given time i have tryed to figure out the code for this my self however i have had no success any ideas

If HPU.Visible = FalseThen
HPU.Visible = Int((550) * Rnd() + 1)
EndIf

View 2 Replies

Make An Single Instance Form?

Aug 4, 2010

I have a mdicontainer form that summons forms. My problem is when the a user clicks again the menu for that form, it also make another instance of it.

What I did is declare a public class with a public variable on it ex: Boolean isFormOneOpen = false. Then every time formOne opens, it checks first the global variable I declared a while ago if it's false, if it is, instantiate an object of a formOne and then show it. Otherwise, do nothing. Very static, imagine if I have many forms, I have to declare a variable for each form to check if it's already open. Maybe a method that accepts a Form? Or any more clever way to do this.

View 2 Replies

Make Single Instance Application, What Does This Do

Aug 25, 2009

in vb 2008 express this option is available under application properties. does anyone know what is its function? does it make it so that it's impossible to open two instances at the same time?

View 3 Replies

Make Some Single Dimension Array Lists?

Sep 7, 2010

I've managed to make some single dimension array lists but I can't figure out a multi dimension arraylist.

Here's what I'm trying to do:

I have a database (mdb) with 5 columns that I want each row to be in an array list.

In PHP what I'd typically do is:

$array[$field1] = array($field2,$field3,$field4,$field5);

How I do the same in vb.net so anytime I need to fetch an item for a specific for the row1 I could call it?

For a single dimension I could do the following, but I can't figure out how to add more fields to a single array row:

Dim tmpArrayX As New ArrayList
tmpArrayX.Add(field(0))
tmpArrayX.Add(field(1))
etc...

View 1 Replies

Word Check - Code That Will Make Possible Check If The User Typed A Word

Mar 11, 2010

Is there any code that will make possible check if the user typed a word i want in order to show him something ? something like , if the user types time , or tim or timing or the word time and transformated to show him up the time ..

View 4 Replies

Make An App That Will Highlight A Word?

Apr 25, 2009

How would I make an App that will highlight a word i chose in my webbroswer im making.So i would have a textbox were i type the word i want to highlight and a button that search for the word in the texbox i chocie an d it will highlight in the webbroswer im making

View 6 Replies

Make A Richtextbox Act Like MS Word?

Sep 23, 2009

MS Word shows page breaks and other formatting characters. Is there a way to display that in a RichTextBox?

View 7 Replies

Change Console Text Kerning - Make Each Letter A "square" Essentially

Jul 12, 2011

I'm trying to make each letter a "square" essentially, so each letter is no more tall than it is wide, in vb.net. Is this possible? If so, how? I can't seem to find anything, and I've been searching hard.

View 2 Replies

Converting Text Into Single Letter Strings

Oct 22, 2009

Is there any way for a program to look at the text in, for example rtbInput and examine each letter individually as it goes? I mean, if the text in rtbInput is: How do I get the program to look at the text as 5 different strings: "H", "e", "l", "l" and "o"?

[Code]...

View 5 Replies

Make Single Sub Handle Keydown Event For Multiple Text Boxes

May 14, 2011

I don't have an example code, but recently figured out how to make a single sub handle the keydown event for multiple text boxes.What I would like to know is if it is simple enough to have the object name that is sending the event instead of "microsoft..text: 54654" (sender.ToString in a debug window) type of return. I don't know how to make use of that.

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved