Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Express Builder field length restriction
Message
From
14/08/2000 16:24:21
 
General information
Forum:
Visual FoxPro
Category:
Reports & Report designer
Miscellaneous
Thread ID:
00404615
Message ID:
00404693
Views:
11
>The solution has to be something just within Report Designer or an external app, meaning i could write a little app just for her lookup.

Nah, put a PRG in the path somewhere called getloantype.prg, make it look like this:
lparameters tnType
do case
	case type('tntype') <> 'N'
		return ""
	case tnType = 1
		return "Type1"
	case tnType = 2
		return "Type2"
	...
endcase
Then, in the report field, just put:

getloantype(loan_type)

And you shoudl be good to go.
Previous
Reply
Map
View

Click here to load this message in the networking platform