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!

Search results for query: *

  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...
  16. Imaginecorp

    Remembering Maximixed Windows in VFP 9

    I somehow do not see a problem. Open the coding window, resisize it to whatever size you want, save it... thats it. Unless you delete Foxuser.dbf, that coding window will always open in the same size and position.... simple
  17. Imaginecorp

    Remembering Maximixed Windows in VFP 9

    If you quit VFP and restart it and open the .prg... it will still open with the last size and position saved... Dont know if this is true in Windows 7 though
  18. Imaginecorp

    Remembering Maximixed Windows in VFP 9

    It works in VFP9 running on XP. The trick is when you open a .prg, DO NOT click the maxamize button, but resize the code window, now make a change and save it. if you reopen the .prg it will remember the size and position... these are written to the Foxuser.dbf
  19. Imaginecorp

    Texting (cell phones) from a VFP app

    Thanks; Currently I am running Joopz in a VFP "wrapper". It works great but there is no control i.e. cannot incorporate any intelligence or get any feedback from joopz. I am basically trying to incorporate mapping and texting (no emails) from within a VFP app for communications between...
  20. Imaginecorp

    Texting (cell phones) from a VFP app

    Hello everybody; havent been here for a long time, good to see some old friends on... Has anybody done any 2 way texting (to and from a cell phone) from within a VFP app? I want to incorporate texting in a new app I am writing. It will be similar to Joopz (www.joopz.com). All suggestions, ideas...

Part and Inventory Search

Back
Top