Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Fields Not Being Displayed
Message
From
24/04/2002 17:58:20
 
 
To
24/04/2002 17:49:02
Henry Ravichander
RC Management Systems Inc.
Saskatchewan, Canada
General information
Forum:
Visual FoxPro
Category:
Reports & Report designer
Miscellaneous
Thread ID:
00648859
Message ID:
00648896
Views:
14
>
>What I see happening is the cursor being displayed on screen before the report is display. Actually I would not want the cursor to show up at all. I even put "Select * from LettersForThisPatient noconsole" and it still showed up on screen.
>

Ravi,

How about something like this?
if !empty(mHealthCard)
    select * from referal_to ;
            where referal_to.hlth_card = mHealthCard ;
	    order by referal_to.refer_date ;
            into cursor LettersForThisPatient nofilter
    if _tally > 0
	* Select the field required to display the clinic information on the report and
	* store that information into a cursor.
	select clnc_name, address2, address22,;
		alltrim(proper(city))+", "+alltrim(upper(Province))+" "+ alltrim(PostalCode) as CityProvcode,;
		alltrim(str(area_phone))+" "+alltrim(str(phone)) as telephone,;
		alltrim(str(area_fax))+" "+alltrim(str(facsimile)) as faxnumber;
		from clinic into cursor clinicinfo nofilter
        select lettersForThisPatient
	report form ViewReferralLetter preview
    else
        do form not_find
    endif
endif
Steve Gibson
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform