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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Orion7

  1. Orion7

    accessing .mdb database in visual foxpro

    you can do sql executes to it with the sqlexec command.
  2. Orion7

    Foxpro 2.5a

    I believe that there is a function called YEAR().  This should convert your 2 digit years to 4 digit years, and I have seen this extensively used with Fox for Dos Y2K issues.
  3. Orion7

    Saving Table structure in a text file

    There is a command called list struct. I have already used this command for this very purpose. There is a switch list table to file. LIST STRUCTURE TO FILE "c:\temp\myfile.TXT" Hope that helped.
  4. Orion7

    Books on Graphics programming

    Open GL Programming and Direct X programming are opular APIs for graphics programming. They both support 2d and 3d graphics, along with a host of rendering and surfacing features. <br> <br> Open GL is an excellent entry point to the MFC. If you can program with Open GL. I suggest a book...
  5. Orion7

    what is error codes error 32?

    I have figured it out, it is Broken Pipe. I don't know much about that error though. Any input would be good.
  6. Orion7

    what is error codes error 32?

    I am running into a file error 32 after i do a fopen in my code. I have not found any documentation that covers this error. I found the definition in the Errno.h file. It is :<br> <br> #define EPIPE 32<br> <br> Here is part of my code:<br> if( (stream = fopen( cfile, &quot;r+b&quot...
  7. Orion7

    How I Pack Table in multiuser (buffermode override 5 mode)

    Sometimes it is necessary to do a little system maintenance. Sometimes the middle of the night just doesnt cut it. If you want to do and index and pack in your code, you should verify that you can use the tables exclusivly. <br> Here is an example of such code.<br> <br> * Create an array of...
  8. Orion7

    REINDEXING YOUR TABLES TIP.

    Well, I suggest that you look into Stonefield database toolkit. Stonefield allows you to reindex, repair corrupt tables and update your databases without writing a program to do these functions. It allows you to go straight from database design to production without changing the code every...
  9. Orion7

    linking data to msaccess

    Look into remote views for FoxPro. Therein lies your answer. Also these can be requied to show new table contents. Combining OBDC with remote views will allow you to integrate to almost any database.
  10. Orion7

    I need to print a field in the last page of a report with VFP5.0

    also look into adding groups to reports. this is key. i believe it is rather set up in the group footer.
  11. Orion7

    I need to print a field in the last page of a report with VFP5.0

    Use the DETAIL section of the report in the Report Designer to total up line items and show the final info from the report. If you need further help, I suggest a book. Visual Foxpro OOP, by WROX. It covers Rapid Application Developement as well as good sections on the report designer, the...
  12. Orion7

    VFP 6.0 FORMS SLOWER THAN VFP 5.0

    im just guessing but perhaps one of your controls acts differently under 6. eg there is a terminal control that will not work under 6 at all. try taking each control off individually and see if the overall performance of the form increases. if you cannot remove the controls without breaking...
  13. Orion7

    Reindexing VFP tables automatically within code

    If you would like to Index your data more effectively, check into stonefield database kit. re-indexing via fox commands is not nearly as effective as stonefield database kit. not only does it index, it has a wide variety of safety features in it to protect your data against file corruption.
  14. Orion7

    FoxProWindows 95 API calls

    hmm.........
  15. Orion7

    Compatibilility Issues

    visual foxpro maintains complete "backwards compatibility" meaning IF you re-compile the project with visual 6.0, you will be able to run the executible.

Part and Inventory Search

Back
Top