VS 2010 - Extracting Text - Convert The English Text Shown In Screen To Malayalam
Sep 6, 2010
I'm trying to create a small program, which I think will be helpful to others(in here). My aim is to convert the English text shown in screen to Malayalam. English-to-Malayalam conversion is not a problem. But the problem is, how to extract the text from the screen. In most of the converter/translator, the text needs to be copied or written down in the translator tool. But my program will cut off that part. That is, simply move the program window (having a rectangle hollow portion) to the English word that needs to be converted. And upon pressing a button (or autodetect), the English word is converted to Malayalam.
So, my question is how to extract the English text(or words) from the screen (which is seen through the hollow portion of the window.
Here's a screenshot of what I'm trying to do.
View 22 Replies
ADVERTISEMENT
Sep 18, 2009
how to convert English text to Arabic?
View 25 Replies
Jan 31, 2009
Is it possible, convert english to oriya within two textbox using VB.Net? My problem is, I have two Texbox and one button. Suppose I enter a word in Textbox1 then when I click on the button then that English text convert to oriya and display in second textbox.
View 3 Replies
Oct 29, 2010
I'm trying to extract the text between: <label for=field_1> and </label> I have captured the HTML into a string using the webbrowser control, and am using the following function to try and get the text within the tag:Public Function midReturn(ByVal first As String, ByVal last As String, ByVal total As String) As String
[Code]...
However, this code will not work, if I use <label for=field_1> as the first string and </label> as the second.
View 6 Replies
Mar 16, 2009
I have to develop a bylangual project where i need to translate / transliterate the english text to hindi and vide versa.
View 1 Replies
Feb 23, 2012
I have a text file I'm trying to pull specific data from to make a report in excel and am wanting to know if my code can be improved or if I have something wrong. If it's apparent to anyone that I should be doing something elThis code does work but, very slow. These reports take up to 20 minutes for about 100 files so I am wanting to decrease the time somehow. I have attached the whole sub in a text file, it's about 900 lines long so don't think I should post all of it. This is one part that seems to take the longest:Partial code that reads the text into a string, then each line is read to find whether it holds the data or not. Inside this while loop, I am checking numerous lines to see what they hold and extract specific items. First I verify it's a interface by checking for "line protocol".
Dim str As StreamReader = File.OpenText(filefound)
While (str.Peek <> -1)
If txtLine.Contains("line protocol") = True Then 'Found an interface,
[code].....
View 10 Replies
Mar 23, 2012
I have a User Control that is a ProgressBar with Dock set to Fill. The code is as below. Unfortunately it simply doesn't show the text in the progress bar and why is beyond me skill.
[Code]....
The If Not... conditional code in the set method is there to prevent the SetProgressText procedure running every time the property is set. The Value property of a ProgresBar is an Integer and if the code that is setting it runs through thousands of loops (>600,000 in my case) then there's no point updating the text every time since it can only actually change 100 times for a 0-100 ProgressBar. The 600k looping takes about 2 seconds usually, without that conditional code it takes at least 2 minutes!
View 4 Replies
Jan 24, 2012
change "Date" from English to another languages in Vb 2008 or 2010.
Before i have used...
Private Sub Form1_Load(Byval......
Timer1.Interval = 500
Timer1.Start()
Private Sub Timer1_Tick(Byval....
[Code]....
View 7 Replies
Oct 26, 2010
I have been pulling my hair on how to write a simple (may be not) program to recognize my native language (again, not English).I want to be able to just speak to the computer as we could in English and have the program type the words for me.We use the English alphabet to write our words so that's one step ahead already, but I don't understand how I can tie the sound to the words.
View 3 Replies
Nov 8, 2010
Extracting highlighted text from a text box
View 1 Replies
Jun 25, 2012
In VB.NET, I want to allow typing of non English Characters (For example, Russian, Turkish) in text box. How can I achieve this? Please let me know.
View 1 Replies
Mar 11, 2010
i have two textboxes in my form.when i type the text in the first textbox which is english language.now i need to display the the text in telugu language in other textbox.
View 1 Replies
Feb 25, 2009
In my current project, i need to build a tool to translate text from some languages to English
Ex.: Chinese To English
Is there any translation SDK available?
View 3 Replies
Jun 2, 2009
Im trying to create a program to translate english to text, or text to english. I have the design of the program finished and i have alot of comments, but the person that was helping me on it is no longer reachable. so far i have :
[Code]...
View 7 Replies
Dec 8, 2009
I have a program in which a user enters a sentence in English into a text box, then the sentence is translated into French and German based on words in an array of structures that gets its values from a text file. I have almost all of the program written, but I am a bit confused on how to get VB to get the English words that are entered into the text box separately so they can be translated individually and the value returned. I need to use a Sub Procedure to get the English Words and to Translate them. [Code]
View 7 Replies
Feb 28, 2011
text-to-speech for English language using Visual Basic 2008
Dim speech speech = CreateObject("sapi.spvoice")
speech.speak(TextBox1.Text)
how this can be used for other languages?
View 3 Replies
May 11, 2011
how to Draw text directly to the screen - effectively overlapping anything underneath it - but have it out side a form area! I would really like to have no user interface at all if possible I know what I wanted after recently using FRAPs.
View 8 Replies
Aug 16, 2009
I'm going to make a program that translates text from Swedish to English..
I got 2 textfiles "svenskaengelskaA.txt" and "engelskasvenskaA.txt"
Inside the program I got 2 textboxes and 1 button, If I write like "�pple" in TextBox1 I want it to write out "Apple" in TextBox2 when I press the button "Translate"..
But for the translate button to work it needs to read the 2 files..
View 17 Replies
Apr 1, 2011
I have a piece of code which loads either french or english text and 2 link buttons that allow to switch between.
<%
if publierFR = 0 Then
if publierEN = 0 Then
[code].....
View 1 Replies
Sep 30, 2011
In my debug folder I got this "Full English Dictionary" .txt file which I use in my program. But I don't want to send the whole folder, I just want to send the .exe file.. So is there a way to somehow "add" the dictionary file to the .exe file? Like get it inside it or something?
View 9 Replies
May 26, 2010
I am trying to create a new customised textbox using vb.net 2005 usercontrol. And also am new to .NETWhen i add the property Text() it does not shown in design modeThe user control code is like :
Property Text() As String
Get
Return MyText.Text
[code]....
View 2 Replies
Jan 14, 2011
I am looking for a sdk with sample code for use in VB2010 to convert text to speech. I have the microsoft sdk but cannot get it working in VB2010 and I cant find any samples to use it. I would like to use this sdk, I just cant find any examples for me to play around with.
View 13 Replies
Feb 27, 2011
How? I am willing to make a text to binary to text converter, but how can i convert text to binary?
View 1 Replies
Jun 12, 2011
I am trying to grab what appears to be text of a label from a different process so I can show what it says in my own program using pre-recorded audio files, basically trying to read the programs text to the user, one of the things im missing is reading a label, it appears to be easy to read the Edit control/textbox you can type into & other things but I cant seem to find out reading this label.
View 2 Replies
Jul 12, 2011
I need to convert numbers to words, (ex: 123 to one hundred twenty three/ 123.5 to one hundred twenty three point five.I use visual basic express 2010. I intend to create a textbox for the input and use a label to show the result. If I call the textbox "textbox1" and the label "label1", what will the code be?
View 3 Replies
Feb 17, 2012
iam using visual basic 2010 if possible convert Text to wav or mp3 format?
View 7 Replies
Jul 21, 2010
I realize this may be a simple request, but I am fairly new to VB so even the simplest tasks are sometimes over my head. Basically, what I need is a function that will take a URL from one of the text boxes on my form, and extract a certain piece of text from that URL. The problem, for me, lies in the fact that the text in question isn't always in the same position, character wise, every time. Basically, the URL looks something like this:
url...randomNumbers rarely seems to be the same amount of characters each time, however the randomNumbersINeed always appear after the second underscore and end right before the third underscore, no matter the amount of randonNumbers that appears before hand.The process I am working on does the following:
1. Takes the raw URL that I have pasted into a text box on the form.
2. Declares that text as a string.
3. Extracts randomNumbersINeed from that string
4. Assigns or declares randomNumbersINeed as a string
5. Appends that string to a .txt file.
I can do steps 1, 2, 4, and 5 with no problem, in fact I've already got those set up in my code ready to go. I just need a function that could extract the numbers from the URL.Could someone help me out here or point me in the right direction?
View 5 Replies
Nov 21, 2011
Below is the complete code per instruction CREATING A COMBO BOX.My text "SAMPLE MONTHLY BUDGET REPORT' does not appear on my screen.Imports System.Drawing
Imports System.Windows.Forms
Module Exercise
Public Class Starter
Inherits Form
Private LblTitle As Label
[Code]...
View 4 Replies
Jul 4, 2011
I have the following text, it displays like this in a textbox, but is all stored in one string:
[Code].....
But I cant think of a way to do it, the only thing I can think is to try and grab the text on the line after each "+CMGR:"
View 2 Replies
Feb 6, 2012
I have one text file with few thousand lines of information. Out of few thousand lines, few hundred lines are something like:
Copy "\server1C$abc.msi" C:windowsinstaller1abc.msi
Copy "D: empxyz.msi" c:windowsinstallermissing.msi
Now it is really hard to find manually all those statement which starts with "copy ".I would like to create another new text file with all those statements which starts with "Copy".
View 1 Replies