Click here to Skip to main content
15,906,569 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Does any one know what i have done wrong Pin
Paul Conrad25-Jan-08 7:48
professionalPaul Conrad25-Jan-08 7:48 
GeneralRe: Does any one know what i have done wrong Pin
solarthur0125-Jan-08 7:50
solarthur0125-Jan-08 7:50 
GeneralRe: Does any one know what i have done wrong Pin
Christian Graus25-Jan-08 12:42
protectorChristian Graus25-Jan-08 12:42 
QuestionHow to read text present on a image Pin
harivinod25-Jan-08 2:39
harivinod25-Jan-08 2:39 
AnswerRe: How to read text present on a image Pin
Justin Perez25-Jan-08 3:02
Justin Perez25-Jan-08 3:02 
AnswerRe: How to read text present on a image Pin
Paul Conrad25-Jan-08 3:48
professionalPaul Conrad25-Jan-08 3:48 
AnswerRe: How to read text present on a image Pin
Steven J Jowett25-Jan-08 5:45
Steven J Jowett25-Jan-08 5:45 
AnswerRe: How to read text present on a image Pin
eyes200729-Jan-08 19:28
eyes200729-Jan-08 19:28 
first of all have u tried google for this question. if not that's bad. u must understand the way of searching.
ok now your answer. now its up to u how will u take this... best of luck.



Dim Doc1 As New MODI.Document <br />
       Dim inputFile As String = "C:\test\multipage.tif"<br />
       Doc1.Create(inputFile)<br />
       Doc1.OCR()<br />
       ' this will ocr all pages of a multi-page tiff file <br />
       Doc1.Save()<br />
       ' this will save the deskewed reoriented images, and the OCR text, back to the inputFile <br />
       Dim strRecText As String = ""<br />
       For imageCounter As Integer = 0 To (Doc1.Images.Count - 1)<br />
           ' work your way through each page of results <br />
           strRecText &= Doc1.Images(imageCounter).Layout.Text<br />
           ' this puts the ocr results into a string <br />
       Next<br />
       File.AppendAllText("C:\test\testmodi.txt", strRecText)<br />
       ' write the OCR file out to disk <br />
       Doc1.Close()<br />
       ' clean up <br />
       Doc1 = Nothing


help everyone

Falling down is not defeat...defeat is when u refuse to get up...

QuestionHow to get file name from openfiledialog without file path Pin
ejaz_pk25-Jan-08 1:31
ejaz_pk25-Jan-08 1:31 
GeneralRe: How to get file name from openfiledialog without file path Pin
Johan Hakkesteegt25-Jan-08 2:30
Johan Hakkesteegt25-Jan-08 2:30 
AnswerRe: How to get file name from openfiledialog without file path Pin
Ashfield25-Jan-08 2:52
Ashfield25-Jan-08 2:52 
Question[Message Deleted] Pin
Francis K Antony25-Jan-08 0:23
Francis K Antony25-Jan-08 0:23 
GeneralRe: VB.net (Visual studio 2005) Pin
Justin Perez25-Jan-08 3:04
Justin Perez25-Jan-08 3:04 
GeneralRe: VB.net (Visual studio 2005) Pin
Paul Conrad25-Jan-08 3:50
professionalPaul Conrad25-Jan-08 3:50 
GeneralRe: VB.net (Visual studio 2005) Pin
Justin Perez25-Jan-08 3:55
Justin Perez25-Jan-08 3:55 
GeneralMaking the coloum header of datagridview read only Pin
Pradip Kishore25-Jan-08 0:20
Pradip Kishore25-Jan-08 0:20 
GeneralRe: Making the coloum header of datagridview read only Pin
Francis K Antony25-Jan-08 1:03
Francis K Antony25-Jan-08 1:03 
GeneralRe: Making the coloum header of datagridview read only Pin
Pradip Kishore25-Jan-08 2:25
Pradip Kishore25-Jan-08 2:25 
GeneralTo Drag And Drop B/W Two List Box [modified] Pin
sumit703424-Jan-08 22:15
sumit703424-Jan-08 22:15 
GeneralRe: To Drag And Drop B/W Two List Box Pin
Justin Perez25-Jan-08 3:06
Justin Perez25-Jan-08 3:06 
Questionvb6 code to vb.net code Pin
Member 412150324-Jan-08 21:14
Member 412150324-Jan-08 21:14 
GeneralRe: vb6 code to vb.net code Pin
Johan Hakkesteegt25-Jan-08 2:16
Johan Hakkesteegt25-Jan-08 2:16 
AnswerRe: vb6 code to vb.net code Pin
Guffa25-Jan-08 6:02
Guffa25-Jan-08 6:02 
QuestionDesign Card Pin
structures8324-Jan-08 20:31
structures8324-Jan-08 20:31 
GeneralRe: Design Card Pin
Johan Hakkesteegt25-Jan-08 1:56
Johan Hakkesteegt25-Jan-08 1:56 

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

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