No, actually I don't. That seems overly complex to me, but then again, I'm not familiar with DevTree. And remember that the heirarchical scheme I came up with showed that many of those 40+ items don't materially affect the outcome.
(This really isn't the venue for this discussion, 'cuz the...
Hi Bill, y'ol' coot!
Check in your Tools|Options|File Locations from the VFP menu to see if you're using a Resource file. Double-click the Resource File name and a window will come up with a checkbox for "use resource file". Make sure that's checked. The file's usually...
parkfairfax
I should add that the "->" construct is only for table/view dot notation, not object/property situations etc. Thus, customer->password refers to the contents of a field called 'password' in a table or view called 'customer'.
Assuming I'm on the right track, your example...
Hi,
Yeah, that operator (->) comes from CA-Clipper, and probably also from any one of several older Xbase languages, even FoxPro. It's the equivalent (in your example) of "dot notation", so 'customer->password' is the same as 'customer.password' to VFP. It's sort of obsolete, but is...
Another possibility: Issue application.visible = .F. in the init event of your form (for which you might want to set ShowWindow = 2 (as top level form)). BE SURE you set application.visible to .T. again before CLEAR EVENTS (I put it in the Destroy event for the form) or you'll wind up with VFP...
Also, you might want to make your Form 1's ShowWindow property = 2 - As Top Level Form. Then set subsequent forms' ShowWindow property to 1 - In Top Level Form, and finally, setting AlwaysOnTop for the second and third forms wha ever way you wnat them.
Mike
Under the Project Menu, try "Clean Up Project". I've had numerous types of files reduced tremendously with this operation. It packs the project itself and a load of other things which I can't tell. Can't hurt to do, and it may be useful.
How big is your source file? If your...
>>3. For titles (1990, 1991...) use array with dynamic indexing base on another report variable. Following will be in fields:
aMyYears[MyVar+1] aMyYears[MyVar+2] aMyYears[MyVar+3]
Following is definition of MyVar:
MyVar = 0 && initial value
MyVar = iif(recno()=reccount(), MyVar+3, MyVar)...
I have a large number of 1-table reports, all wide, consisting of an item, then a variable number of columns of numbers, each column representing a datum for the item for the year at the top of the column, like so:
Page 1a
Item 1990 1991 1992...
------------------------------------...
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.