Re: How to assign an incoming parameter?




"tj" <tj@xxxxxxxxxxxxxxxxxxxxxxxxx> schrieb im Newsbeitrag
news:E042336B-A91E-4CC5-865D-41F536635BE7@xxxxxxxxxxxxxxxx
New to VFP, and working on a project. Any help would be truly
appreciated.
How do I display an incoming parameter on a form? A read-only text box?

What is the content/purpose of your parameter? In general, you'd
probably either evaluate and use it in the receivingForm.Init() directly,
say when it is meant to determine the Form.Caption:
LParameters tcCaption, tuUsefulInfo
Thisform.Caption = Trans(m.tcCaption)

or store it in a form.CustomProperty to use it later in (an)other method(s).
Thisform.yourProperty = m.tuUsefulInfo


hth
-Stefan



--
|\_/| ------ ProLib - programmers liberty -----------------
(.. ) Our MVPs and MCPs make the Fox run....
- / See us at www.prolib.de or www.AFPages.de
-----------------------------------------------------------




.