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. Raven123

    Newbie Question...

    Hello, I am moving to Java from Delphi and have a question... In Delphi, it's legal to create enumerated types like: type Suit = (Club, Diamond, Heart, Spade); which defines an enumerated type called Suit whose possible values are Club, Diamond, Heart, and Spade.... Therefore, when I...
  2. Raven123

    Can't get a Crystal Report to Preview from VFP

    Hello, There is a really good article on this subject at http://www.pinnaclepublishing.com (go to FoxTalk area) The article is "Using Crystal Reports 7 with VFP 6" featured in the 11/1999 edition, written by Nigel Reburn. He includes a download that has a set-up (created in VB)...
  3. Raven123

    Convert Form file to Text

    Hello, Does anyone know of a utiltiy that pulls the Method/Event code out of a .SCT and writes to ASCII file? We are trying to do a DIFF on two versions of the same form, and cutting/pasting each method into a .TXT file seems pretty tedious... Any suggestions? Thanks in advance for any...
  4. Raven123

    Insert into Access Table using SQLExec

    Figured out the problem... The date: '01/01/2001' actually works. It was the field name, 'Date' that was causing the problem... Apparently this is a reserved word in ODBC... I changed the field name, and all is well. Thanks a lot for all the help. Rich.
  5. Raven123

    Insert into Access Table using SQLExec

    Sorry, still won't work... If you pass a string with '(ldDate)' to ODBC, it will take it literally (as 'ldDate' instead of 01/01/01)...
  6. Raven123

    Insert into Access Table using SQLExec

    Sorry, but it doesn't seem to work. ODBC/Access doesn't understand the 'CTOD' command...
  7. Raven123

    Insert into Access Table using SQLExec

    Hello, I am attempting to insert records into an Access table using the SQLExec() command... All was well until I attempted to insert a record to an Access table with a Date/Time field. Does anyone know the format for sending date/time values to Access? I have tried: ? SQlExec( con...
  8. Raven123

    Project Search and Replace

    Hello, Does anyone know of a way to globally search an entire project for the instance of a string (like a fieldname) and replace it with something else? Thanks in advance for any help.
  9. Raven123

    Calling Visual Basic Activex .DLL in VFP

    Hello, I am trying to call a function from an ActiveX DLL created in VB6 from Visual FoxPro 5, and not having much luck. * The .Dll name is: MyString.DLL * The fuction name is: GetMyString I Issue in the command window in Fox: Declare String GetMyString In MyString ? GetMyString() Foxpro...

Part and Inventory Search

Back
Top