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: *

  • Users: foxdbs
  • Order by date
  1. foxdbs

    Help with focus

    >> That works, but each time I issue "DO FORM" I open another instance of the form. I want to keep two forms open, one visible and one that appears and hides. ------------------- The form created with DO FORM is an object, which has its object reference (variable of type Object). Through this...
  2. foxdbs

    Which object has been "clicked"

    THISFORM.ActiveControl --or-- in control.gotfocus save the object reference or object name into user defined property of the form --or-- in control.click save the object reference or object name into user defined property of the form (only if you use such parameters of BINDEVENTS, where...
  3. foxdbs

    ActiveX for Email?

    I like JMail.dll from Dimac Development, www.dimac.net. It should be free for SMTP. Most POP3 ActiveX aren't free, but (I hope) ESPOP is (in google try to find Espop Essmtp)
  4. foxdbs

    VFP 9.0 SP1 Compatibility

    I think if you add proper runtime files in same folder as the application, you will never have problems. I think it isn't very good idea to install runtime files in common location, because you can rewrite runtime version for other VFP applications.
  5. foxdbs

    VFP 6 Duplicating a record

    I think SCATTER NAME can be usefull command. LOCAL loRecord SELECT Alias SCATTER NAME loRecord loRecord.FieldName1 = NewValueForFieldName1 INSERT INTO Alias FROM NAME loRecord If INSERT INTO FROM NAME isn't supported in your/older version of VFP, you can use APPEND BLANK + GATHER NAME...
  6. foxdbs

    FULLPATH problem

    FULLPATH returns the current full path, if you use it with empty string as parameter: ? FULLPATH("")
  7. foxdbs

    1.5GB CSV

    You can use Visual Foxpro (or old Foxpro): From help file: CSV - Include CSV to import data from a comma separated value file. A CSV file has field names as the first line in the file; the field names are ignored when the file is imported. Use following commands: CREATE TABLE NewTable (field1...
  8. foxdbs

    DataSessions

    Hi Mike & others, I had sometimes problem with SET DATASESSION command - application wasn't stable and I received strange C000005 errors later in the application run. It was in VFP6 or VFP7 and maybe such problems are no longer here. But to avoid such problems I recommend to go back to the...
  9. foxdbs

    Your thoughts on Fe/Be Set-up Please

    Yes, we haven't enough problems to develop software, so we need additional problems with such crazy IT managers. Cannot help something with SUBST command, f.e. SUBST e: \\server\netdir\userdir ? (and "userdir" (maybe) you can give as a parameter in the starting command)
  10. foxdbs

    Choosing between ODBC and OLEDB?

    OLE DB runs faster and it is the preffered (Microsofts) way for future. Use Visual Foxpro and its Cursoradapter class. Then you can switch between ODBC and OLE DB with one property setting.
  11. foxdbs

    Challenge: Simplest VFP web application EVER!

    I make it using PHP which calls COM servers well. I don't know PHP at all, but it is realy easy to call FoxPro COM server. F.e. on Win98 I have installed PHP for Windows and Xitami web server and I have setup Xitami to run PHP for .php extension. In Xitami /cgi-bin folder I have a registered...
  12. foxdbs

    Shift to NEW Versions of Foxpro

    New versions of Foxpro (starting from 6 with servicepacks) are stable, very good software. But automatic conversion from versions <3 isn't good idea. You should change to object interface (forms) at least. Redesign forms with object controls and then you can copy-paste the old code into...
  13. foxdbs

    HTPATCH.EXE causes Foxpro/DOS hangs in fullscreen mode !

    HTPATCH.EXE is a part of SiS video drivers (patch for hyperthreading support?) HTPATCH.EXE causes Foxpro/DOS (and other DOS applications with similar interface, f.e. Volkov commander) hangs in fullscreen mode immediately! (sure valid for HTPATCH.EXE 27.03.2003, Celeron (=no hyperthreading...
  14. foxdbs

    Access through remote views and VFP-ODBC to DBF files

    I have WinXP-professional station (not a server), shared folder with DBF files, which is accessed from LAN, fixed internet connection with public IP address. Is it possible to access the data through remote views & VFP ODBC from other computers in internet? What is necessary to do for it?
  15. foxdbs

    ShellExecute / Run Problem

    Maybe "with these line changes" means: "other lines remain same, don't remove them"..... :-)
  16. foxdbs

    How to send e-mail with attachment from VFP?

    I'm sorry, I haven't understand that it is necessary to send mails using Outlook. If so, solution is Outlook automation (example bellow). JMail sends mails directly to the SMTP server, no e-mail client is required. <code> * Class requires .roOutLook and .roOutLookItem properties PROCEDURE...
  17. foxdbs

    How to send e-mail with attachment from VFP?

    JMail, www.dimac.net, COM server, freeware to send mails
  18. foxdbs

    Error in error handler

    Thank you for responses. > Mike Gagnon: on error * doesn't work inside error handling code. > Mike Lewis: yes. But I wait a little more from the error handling routine, f.e.: give info to the user in his current language, let write him his knowledges about the error, write error info into...
  19. foxdbs

    Error in error handler

    Hi. If there is an error in code, and error procedure starts, is there a possibility to disable error messages for next errors (i.e. for errors inside the error procedure)? I know that starting from VFP8 Try/Catch can be used. But in VFP7?
  20. foxdbs

    Email: Sending, Receiving and Reading Reply

    JMail from www.dimac.net works well. (It is COM server.) However it is not a freeware to receive mails.

Part and Inventory Search

Back
Top