Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Imaginecorp

  1. Imaginecorp

    reusing a combo in an application

    In the combo code, prior to setting rowsource etc put a simple: this.rowsource = ""
  2. Imaginecorp

    Mike Gagnon - Re: OCR code

    Thanks Dan; appreceate it...
  3. Imaginecorp

    Mike Gagnon - Re: OCR code

    Quick Question: where does the Modi.ocx reside. On another machine running XP and another one running windows 7, its not found... Do I have to download it? Thanks
  4. Imaginecorp

    Mike Gagnon - Re: OCR code

    Fixed it... Not the most elegent way, but created a seperate .exe that only converts the .tif into text and stores in the memo field. Seemed like some refrences were left hanging and the code could not "Create". thus throwing the un-informative error unless VFP was shut down and restarted. Will...
  5. Imaginecorp

    Mike Gagnon - Re: OCR code

    Thanks Mike; I got it figuired using memo functions etc. We get a Fax which gets converted to a .tif file (default on the all in one printer). Now I have a different problem. When I rerun the program within the same vfp session line miDoc.Create( "C:\era\roadamerica.tif") returns an error...
  6. Imaginecorp

    Mike Gagnon - Re: OCR code

    the fax is at: www.imaginecorp.com/mikeg.htm
  7. Imaginecorp

    Mike Gagnon - Re: OCR code

    Sorry wrong way to upload a file... will try again
  8. Imaginecorp

    Mike Gagnon - Re: OCR code

    Hello Mike; This is for a dispatch system for a roadside assistance company. We get the dispatch via fax. The HP officejet 8500 all in one printer, stores the fax in a network folder. When a Fax comes in the user clicks a button which starts the conversion, and displays the information in a form...
  9. Imaginecorp

    Mike Gagnon - Re: OCR code

    Mike I came across this code you wrote for converting .Tiff to Text. Local miDoc,miLayout,lcStr lcStr='' CREATE CURSOR mondocument (mondococr m) miDoc = Createobject('MODI.Document') miDoc.Create( "C:\era\beacon0001.tif") miDoc.Images(0).OCR miLayout = miDoc.Images(0).Layout strLayoutInfo...
  10. Imaginecorp

    mappoint control - cannot quit foxpro error

    No Dan; the form is not open.... This is a full blown commercial app. With a startup routine and a shutdown one as well. The app is not the problem; it’s the mappoint control. Thanks though...
  11. Imaginecorp

    mappoint control - cannot quit foxpro error

    Dan; the application closes, Releases all forms, libs etc but when it encounters "Quit" it hangs. In development mode Display Memo shows Only System variables. By default Mappont looks in "My Documents" for any Map it needs to open, once it found our map directory, it would change the default...
  12. Imaginecorp

    mappoint control - cannot quit foxpro error

    Thanks guys; good to see ALL the old crew... VFP will not allow "Quit" Re: shutdown Yes, the "Saved = .t." is not posted but it is there. I have debuged and debuged and the form is not going Modal... Tried Rick S. trick of "set step on, clear all" in the Destroy() method BUT nothing is...
  13. Imaginecorp

    mappoint control - cannot quit foxpro error

    Thanks Dan; Just tried it did not work. We never caught this as the users would always manipulate the map i.e. get directions, distances time etc. But there is always one that didn’t… Prior to releasing it we would set the Mapcontrol 'Saved' Property to .T., so changes could not be saved. I am...
  14. Imaginecorp

    mappoint control - cannot quit foxpro error

    I have a form that displays a saved map. I do this by using ADDOBJECT() to the form. If Vartype(This.Reg_mapcontrol1) # "O" This.AddObject("Reg_mapcontrol1","Reg_mapcontrol") Endif oMap = Addbs(Sys(5)+Sys(2003))+'new map.ptm' *!* oMap = Addbs(Justpath(Sys(16)))+'new map.ptm' With...
  15. Imaginecorp

    Table Design and Report Guidance

    small world; I have been doing this for the last 12 years. Wrote and marketed Truck, Trailer and overseas container rental software. The way we did it was create a table with the specifications, this could be changed by the users. We had a class (list box) that would use the "spec" table to...

Part and Inventory Search

Back
Top