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 SkipVought 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. EzLogic

    Anyone integrating apps with Sage Accounts?

    Do they have ODBC? https://visualstudiogallery.msdn.microsoft.com/2b03b2f2-5f99-4e5d-bc11-abc7c1375a2f Ez Logic Michigan
  2. EzLogic

    How to extract date

    select icode,max(invDate) as LastInvDate from yourTable group by icode into cursor Somecursor sele somecursor brow Ez Logic Michigan
  3. EzLogic

    WEB Sockets and VFP

    https://www.google.com/search?q=VFP+and+WEBSockets&ie=utf-8&oe=utf-8 Ez Logic Michigan
  4. EzLogic

    Timer stops occassionally

    do you think the various jobs take longer than 1000ms? Ez Logic Michigan
  5. EzLogic

    Ever seen IE automation without the HWND?

    I found this helpful post. I will read it http://stackoverflow.com/questions/27558028/failed-to-get-the-handle-of-the-windows-internet-explorer-main-window Ez Logic Michigan
  6. EzLogic

    Ever seen IE automation without the HWND?

    I just encountered another client, on 1 machine, windows 8 when doing IE automation, IE does NOT have HWND property.. This is the second client i see this.. all other 1000s of clients never had this oIE = createobj('internetexplorer.application') oIE.visible = .t. ?oIE.HWND && throws error ...
  7. EzLogic

    IE Automation - HWND throwing error..

    It works on windows 10 and windows 7 machine and my other laptop and almost 1500 other clients i have. I ran into 2 clients, where it works on their other machines, but, 1 of their machines (each), had weird situation I personally logged in to their machines, installed my own tool which gives...
  8. EzLogic

    IE Automation - HWND throwing error..

    Weird situation IE 11 Windows 7 Pro 64 Bit On this machine. loIE = CreateObject("InterNetExplorer.Application") loIE.visible = .t. loIE.Navigate2(".etc....") ?loIE.HWND && Throws Error.. loIE.navigate2("etc..") && works loIE.Quit Release loIE I am not sure why I cannot see the HWND for the...
  9. EzLogic

    Setting Record pointer in a grid

    select YourTableName Locate && or GO BOTT thisform.YourGridName.Refresh() Ez Logic Michigan
  10. EzLogic

    converting dbase file to multiuser

    set exclusive off? Ez Logic Michigan
  11. EzLogic

    One instance (revisited yet again)

    Dave, About 5 years ago, i created a System tray that auto launches when computer launched, and ran in the system tray area. it was syncing data from the store to the corporate office. and upon right-clicking on it, i activated a menu and a form etc.. Also, if the system tray was not running...
  12. EzLogic

    Ole Error Code 0x80040154

    did you register them as Administrator? Ez Logic Michigan
  13. EzLogic

    Navigating in a grid

    how about on the gotFocus of the text box in column 6? this.readonly = (tDetail.tStatus <> 'C') Ez Logic Michigan
  14. EzLogic

    FTPPutFile.prg .. how to log off?

    I am using FTPPut to send an XML file to a zebra printer. Everything works great, EXCEPT: After the 5th file being sent, the ftp returns that the host not available. After further investigation, i found out that the Zebra only allows 5 connection. I tried in in Dos ftp command.. i oppened 5...
  15. EzLogic

    64-Bit VFP

    Btw, you can see all of Chen's posts here.. and his profile http://www.foxite.com/members/default.aspx?id=4e637c9c-b764-4c9d-99d8-0dfddba20427 Ez Logic Michigan
  16. EzLogic

    64-Bit VFP

    Chen posts alot on foxite.com alot of the foxite members have tested his vfp10, i beleive mgagnon did too and pete sass as well. Ez Logic Michigan
  17. EzLogic

    Using VFP 9 To Access The Parse.Com Restful API

    check out wwHTTP from west-wind. you can do loHTTP.AddPostKey() and loHTTP.HttpGet() etc.. Ez Logic Michigan
  18. EzLogic

    RUN command

    Are you putting the function Helpfile() inside a method? on a form? Put it in your main PRG , assuming you have Set procedure to Main.prg additve or do this: Create a method on your form call it "HelpFile" Paste the code of the function (without the Function/EndFunc start/end) and then do...
  19. EzLogic

    RUN command

    If gcGood HelpFile(.....) Endif Function HelpFile() etc.. etc.. EndFunc Ez Logic Michigan
  20. EzLogic

    RUN command

    OpenFile('c:\Program File\abc\xyz.exe') FUNCTION openfile(tcFile) IF EMPTY(tcFile) RETURN ENDIF IF NOT FILE(tcFile) MESSAGEBOX("File [ " + ALLTRIM(tcFile) + " ] cannot be located. Please try again.",16,"Open file") RETURN ENDIF DECLARE INTEGER ShellExecute IN shell32.DLL ...

Part and Inventory Search

Back
Top