Title: | *OLD* ALL-IN-1 (tm) Support Conference |
Notice: | Closed - See Note 4331.l to move to IOSG::ALL-IN-1 |
Moderator: | IOSG::PYE |
Created: | Thu Jan 30 1992 |
Last Modified: | Tue Jan 23 1996 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 4343 |
Total number of notes: | 18308 |
I have 2 questions about ALL-IN-1. 1. When I send a mail that is created by EM C option with marking 'READ RECEIPT' and select SUBSCRIBERS: as TO:,I got the many mails from EARS_POSTMASTER. I checked the EARS_POSTMASTER account and but I fond any error. How can I solve the problem? 2, I can't find a OA special symbol that contains a value of 'MAIL ARRIVED DATE'.I looked for CAB$ and CAB$ATTACH symbol,but I can't find it. Pls let me know the symbol name or the way to get the right value. 3. When I use a scrolled area, I want to know the bottom status or field name.When I use oa$scroll_bottom , it goes to the bottom of the field.But the function is difference from that I want. I only want to check whether current item is the bottom item or not. Hope your answer. - DaeHee
T.R | Title | User | Personal Name | Date | Lines |
---|---|---|---|---|---|
3351.1 | CAB$.DELIVERED[OA$CURDOC] | GIDDAY::SETHI | My name is Sunil without the H | Mon Oct 04 1993 06:03 | 12 |
Hi DaeHee, >2. I can't find a OA special symbol that contains a value of 'MAIL > ARRIVED DATE'.I looked for CAB$ and CAB$ATTACH symbol,but I can't > find it. > Pls let me know the symbol name or the way to get the right value. The cabinet function is called CAB$.DELIVERED[OA$CURDOC]. Regards, Sunil | |||||
3351.2 | 3) | IOSG::CARLIN | Dick Carlin IOSG, Reading, England | Mon Oct 11 1993 18:37 | 31 |
DaeHee Re: 3) I'm not sure whether you want to see if you are a) at the bottom of the whole scrolled region or b) at the bottom of the current page. In b) you may want to modify the "hard coded" 14. a) get oa$function = "get #next_line = " - oa$scroll_data_set ".%next[oa$scroll_key]" get oa$function = "get #first_line = " - oa$scroll_data_set ".%first[oa$scroll_key]" .if #next_line eqs #first_line .then get #line_is_last = 1 .else get #line_is_last = 0 .end_if b) get oa$function = "get #next_line = " - oa$scroll_data_set ".%next[oa$scroll_key]" get oa$function = "get #first_line = " - oa$scroll_data_set ".%first[oa$scroll_key]" .if (#next_line eqs #first_line) or oa$scroll_line eq 14 .then get #line_is_last = 1 .else get #line_is_last = 0 .end_if |