yes is free 2 links that works or googling search --> ocr online check it out!!! http://www.free-ocr.com/ http://www.newocr.com/[^]
GREG_DORIANcod
Posts
-
OCR Opinions invited -
OCR Opinions invitedhmmm also you can use OCR online like, www.onlineocr.net/[^] www.free-ocr.com/[^] www.newocr.com/[^]
-
where can i find flow free puzzle gameHi I been searching for a source code of flow free puzzle game, does anybody tell where can find it? in c#
-
how to contact a person privately here in codeproject?how to contact a person privately here in codeproject or it´s imposible?
-
Code Project Having it's own Google Code or Compilar?I support your idea! something like https://compilr.com/[^] and subversion a version control at the same place! yeah!
-
Are you a Brogrammer?a real brogrammer shares code, without being pretentious, teaching small code tricks, not being a haughty pal, And never say "no" to any party/drink shot/beer at the office. I´m scores 85!!! :) :-D :laugh: ;) ;P :^) :-\ :omg: :cool::java:
-
cross-company collaboration...a real brogrammer shares code, without being pretentious, teaching small code tricks, not being a haughty pal, And never say "no" to any party/drink shot/beer at the office. I´m Scores 85! :-D :) :laugh: ;P :-\ :cool::java:
-
We already have iPhone, iPod, iTune - so what comes next?Samgsum Galaxy IV, Flexible Screens, I-watch... :-D :-\
-
how much does earn a programmer in india per hour programing visual c# or others languages?thx!
-
how much does earn a programmer in india per hour programing visual c# or others languages?I´m a SouthAmerica Programmer, and I consider that am a junior, semi-pro programmer in languages like PHP, Java and VS c# 2008 - 2010 principally. My escencial work is Design DataBase, code 3 - tier projects, Windows form, php forms, Aspx web forms, and I have a few of question for other programmer who writes code in the other side of the world. 1. what is the price (average) per hour do you perceive por a little project? (example, design a database, design css, logos etc, a[]nd program a webform page/ winform for a Gym) 2. in What parameters do you base to charge that? 3. would you work a big project in another country? what do you ask for earn?
greg
-
Google Calendar Sucks On Blackberryand black berry suck all!! R.I.P. BB is time to go to rest in peace ... The name RIM will Change to RIP
-
Hibernateis an ORM like Entity Framwork .net http://en.wikipedia.org/wiki/Hibernate_%28Java%29[^]
-
Do I need a pivot Query?yes!! using this 3 columns nc_doc nd_doc and rc_doc , and then transpose as DocType... any ideas!!!?
-
Do I need a pivot Query?this is my original query: INVOICE NC_DOC NC_VALUE ND_DOC ND_VALUE RC_DOC RC_VALUE 40842 137 130130 140 60000 3 130130 40842 137 130130 141 85060 3 130130 40842 138 -130130 140 60000 3 130130 40842 138 -130130 141 85060 3 130130 40842 139 190130 140 60000 3 130130 BUT Now i need some query like this doctype numberDoc doc_value NC_DOC 137 130130 NC_DOC 138 -130130 NC_DOC 139 190130 ND_DOC 140 60000 ND_DOC 141 85060 RC_DOC 3 130130
-
auto complete featuresmaybe using a web service and xml files
-
MySqlParameter... Add or AddWithValue?use AddWithValue! beacuse use a strongly type dataset functionality
-
Creating Windows Applicationfirst step: analyzes your application second step: model a database third step: try to use n-layer model. is the best way for use a windows form / web form project in internet there's a lot of examples how you can conect database, n - layer applications, consult youtube is the best for tutorial!!
-
auto complete featuresIs no clear your question, fill a web in a windows form? use a webBrowser control in a windows form in the form1_load event put your web page, for example: this.webBrowser1.Url = new System.Uri("http://www.youtube.com", System.UriKind.Absolute); c ya!
-
Compare rows of a datagridview and remove repeated rowsHi there! I am trying to compare the rows of a Datagridview and that it removes the rows that are repeated. I think that I´m doing something wrong, need some of help!! my mind is not clear today! (maybe x-mas holyday! ;) ) here´s the code:
public void Compare(DataGridView grv) { grv.Sort(grv.Columns\[0\],ListSortDirection.Ascending); for ( int row = 0; row < grv.Rows.Count; row++) { for ( int col = 0; col < grv.Columns.Count; col++) { int rowx=1; if (grv.Rows\[row\].Cells\[col\].Value != null && grv.Rows\[row\].Cells\[col\].Value.Equals(grv.Rows\[rowx\].Cells\[col\].Value)) { if (col == grv.Columns.Count - 1) { grv.Rows.RemoveAt(row); grv.Sort(grv.Columns\[0\], ListSortDirection.Descending); } } else { grv.FirstDisplayedScrollingRowIndex = grv.RowCount - 1; grv.Rows\[grv.RowCount - 1\].Selected = true; } } } }
-
Converted VB.NET to C# With ErrorTry to change to this line My.Computer.FileSystem.RenameFile((dest), newName = sheet.Cells[row, 14].value + "_" + sheet.Cells[row, 15].value)