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 Mike Lewis 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. hgirish

    Help with vfpconnection library

    It worked for me by set procedure command SET PROCEDURE TO vfpconnectiontests.prg ADDITIVE SET LIBRARY TO (LOCFILE("vfpconnection.fll","FLL")) ?httpget('http://www.google.com','google.htm',"MyProgress()", "MyTrace()")
  2. hgirish

    IE 9 automation in vfp problem

    Turn Compatibility View on. http://www.sevenforums.com/tutorials/1196-internet-explorer-compatibility-view-turn-off.html
  3. hgirish

    How to add picture in Excel Comment Box from VFP?

    http://www.xcelfiles.com/VBA_Quick11.html
  4. hgirish

    How to read 31-Mar-2006

    I use .net InterOp to convert Date string to Date. This works on almost all variations of date format. My .net method public DateTime Date_Conv(string date) { DateTime d; d = DateTime.Parse(date); return d.ToUniversalTime(); }
  5. hgirish

    How could I have my prg go grab the source code of a website?

    Hi, You may try this oIE = CreateObject("InternetExplorer.Application") lcURL="http://www.mywebsite.com" oIE.Navigate(lcURL) lcInnerHtml = oIE.Document.Body.InnerHtml * lcInnerHTML contains webpage source
  6. hgirish

    "copy to" or "export to" a text file...

    Copy To filename Type csv Creates a comma separated value file. A CSV file has the field names as the first line in the file, and the field values in the remainder of the file are separated with commas.
  7. hgirish

    vfp8 odbc enginebehaviour

    Yes. It's length. According to my test insert takes values upto 537 characters. My table's total length of fields is 640. So broke insert statement into insert and update. It works. But still I don't understand why it works with vfp6 and not with vfp8.
  8. hgirish

    vfp8 odbc enginebehaviour

    After spending little time, I found out that, enginebehaviour is not a problem. The problem lies with insert statement. It seems that foxpro gives error (command contains unrecognized phrase/keyword) on insert statement if number of fields in insert statement exceeds 12 or 13. I tested with...
  9. hgirish

    vfp8 odbc enginebehaviour

    I am accessing vfp8 database through coldfusion files which uses foxpro ODBC driver. I know I can specify enginebehaviour for foxpro Oledb but I don't know how to specify enginebehaviour for ODBC driver.
  10. hgirish

    vfp8 odbc enginebehaviour

    How do i set enginebehaviour 70 in foxpro 8 odbc? I am using coldfusion to access foxpro table. Everything was working fine in vfp6. But now I am having problem with odbc date. I ahve tried to put enginebehaviour 70 in config.fpw in home() directory. Didn't work.

Part and Inventory Search

Back
Top