Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Crystal and vars. collection
Message
From
13/07/2000 12:28:09
Walter Meester
HoogkarspelNetherlands
 
 
To
13/07/2000 11:21:18
General information
Forum:
Visual FoxPro
Category:
Third party products
Miscellaneous
Thread ID:
00391737
Message ID:
00391885
Views:
12
Mark,

>oReport.formulafields(11).Text = lnCloseAssetBaseMonth
>Can I use formula's name instead of 11?

>FormulaFieldDefinitions is unknown name.
>Mark

Yes, My fault. Accoring the documentation (Developer.hlp), you can use:
oReport.formulafields("WhatEverName").Text= cYourFormula.

B.t.w., Do you need to change the formula, or do you simply want to pass a variable to the report. Then it might be better to use parameterfields. for example:
WITH oReport.ParameterFields
	FOR nT= 1 TO .Count
		cName=.Item(nT).ParameterFieldName
		IF TYPE(cName) # "U"
			.item(nT).SetCurrentValue(EVAL(cName))
		ENDIF
	ENDFOR
ENDWITH
In this way you pass variables defined in VFP to CR, if the variables in CR have the same name.

Walter,
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform