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 gkittelson 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. fdbozzo69

    Profiling Performance - Where is the missing Time?

    Hi Olaf: You could try testing things separated. In example: - You can create a test form with just the calendar to check how much time it takes alone (with the original date/time settings) - You can create another test form with just the tables/views environment, to see how long it takes...
  2. fdbozzo69

    Is this a form bug? What is happening here?

    Hi Olaf: The problem is caused with those Win32 API functions altering internal VFP data. If you want to open a form inside another form, you should do it with the VFP way. This is the part of your example code changed for the VFP style of doing it, and does not couse this problem when...
  3. fdbozzo69

    Application development

    Hi JLF999, just open your project, select your program and click the button on the right that say "Remove" on his caption...
  4. fdbozzo69

    New FoxBin2Prg v1.19.47 is out!

    Hi everybody: Just want you to know that there is a new version of this bidirectional bin<->text tool with some fixes and new features, like the import of DB2 data into DBFs and some new API methods: https://vfpx.codeplex.com/wikipage?title=FoxBin2Prg You can use it alone, or with any Source...
  5. fdbozzo69

    Good Diff, Merge and Version Control solution with FoxBin2Prg

    Hi Olaf: I may help you with TFS + VFP + FoxBin2Prg if you want. I just use TFS for uploading to VFPx, because it's needed by VFPx, but for my development I use PlasticSCM. Just in case this could give you some idea of using with TFS, in the screenshot you posted for configuring SccTextX for...
  6. fdbozzo69

    Good Diff, Merge and Version Control solution with FoxBin2Prg

    Yes, sure, I can make some suggestions about it. First of all, the hard part: A mind-change about how to work with Source Control is needed. The problem with this is that SourceSafe have accostumed as for many many years in a way of working with SCM, that is what almost every SourceSafe user...
  7. fdbozzo69

    Good Diff, Merge and Version Control solution with FoxBin2Prg

    Olaf, the way you propose to work with a SCM tool is the same used by SourceSafe the last century. Things have changed and now teams work using DVCS tools, which allow teams working in parallel and in branches without blocking themselves, something imposible to do with SourceSafe and tools like...
  8. fdbozzo69

    Good Diff, Merge and Version Control solution with FoxBin2Prg

    Hi Dante: The new "Preview2" version of FoxBin2Prg v1.19.47 in VFPx have initial support for importing data: https://vfpx.codeplex.com/releases/view/116407 Best Regards.-
  9. fdbozzo69

    Good Diff, Merge and Version Control solution with FoxBin2Prg

    Hi Olaf: You should understand that people and teams have different necessities and different use-cases that you may not have. One case on which this is useful is with business data: - You have a table with validations for 3 products X, Y, Z - Developer 1 add validations (records) for a new...
  10. fdbozzo69

    Good Diff, Merge and Version Control solution with FoxBin2Prg

    Hi Dan: I'm working on the DB2 Data reimport, that right now is not supported. Please, have in mind that data tables should not go into the SCM/DVCS tool, except small data tables like configs or business rules and the like, because data is very heavy to sync. You can find more help about VFP...
  11. fdbozzo69

    Good Diff, Merge and Version Control solution with FoxBin2Prg

    Hi Dan: As with any merge operation with code in any language, you can't always trust on the SCM/DVCS tool do it automatically, and the Developer doing the merge must know what is merging and how is doing it, because it's the same as trying to merge a simple PRG with classes without looking at...
  12. fdbozzo69

    Divided/0

    If you want to throw an error when dividing by 0, you can use a trick, just adding this single line before the real division: =MOD(XX,YY) && If YY=0, "Cannot divide by 0" error is thrown *-- Real division aa = XX/YY Regards.-

Part and Inventory Search

Back
Top