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...
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...
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...
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...
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...
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...
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.-
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...
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...
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...
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.-
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.