Tasks.sgm 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442
  1. <!-- $XConsortium: Tasks.sgm /main/8 1996/10/29 20:23:43 cdedoc $ -->
  2. <!-- (c) Copyright 1995 Digital Equipment Corporation. -->
  3. <!-- (c) Copyright 1995 Hewlett-Packard Company. -->
  4. <!-- (c) Copyright 1995 International Business Machines Corp. -->
  5. <!-- (c) Copyright 1995 Sun Microsystems, Inc. -->
  6. <!-- (c) Copyright 1995 Novell, Inc. -->
  7. <!-- (c) Copyright 1995 FUJITSU LIMITED. -->
  8. <!-- (c) Copyright 1995 Hitachi. -->
  9. <!-- Help volume: Calendar -->
  10. <!-- File name: Tasks -->
  11. <Chapter Id="Tasks">
  12. <Title>Calendar Tasks</Title>
  13. <IndexTerm>
  14. <Primary>mouse, using a</Primary>
  15. </IndexTerm>
  16. <IndexTerm>
  17. <Primary>keyboard, using a</Primary>
  18. </IndexTerm>
  19. <Para>These instructions assume that you are using a mouse. Most tasks can
  20. also be done without a mouse. See
  21. <OLink Type="Jump" LocalInfo="Intromgr DesktopKeyboardNav">Keyboard Shortcuts for the Desktop</OLink> for more information.</Para>
  22. <Procedure>
  23. <Title>Basic Calendar Skills</Title>
  24. <Step>
  25. <ItemizedList Mark="&bull;" Role="tight">
  26. <ListItem Id="HCAL.TSKS.item.1">
  27. <Para><XRef Linkend="ToSpecifyACalendarViewTA"></Para>
  28. </ListItem>
  29. <ListItem Id="HCAL.TSKS.item.2">
  30. <Para><XRef Linkend="ToDisplaySpecificDateTA"></Para>
  31. </ListItem>
  32. </ItemizedList>
  33. </Step>
  34. </Procedure>
  35. <Procedure>
  36. <Title>Scheduling an Appointment</Title>
  37. <Step>
  38. <ItemizedList Mark="&bull;" Role="tight">
  39. <ListItem Id="HCAL.TSKS.item.3">
  40. <Para><XRef Linkend="ToScheduleApptTA"></Para>
  41. </ListItem>
  42. <ListItem Id="HCAL.TSKS.item.4">
  43. <Para><XRef Linkend="ToSetOptionsTA"></Para>
  44. </ListItem>
  45. <ListItem Id="HCAL.TSKS.item.5">
  46. <Para><XRef Linkend="ToChangeApptTA"></Para>
  47. </ListItem>
  48. <ListItem Id="HCAL.TSKS.item.6">
  49. <Para><XRef Linkend="ToDeleteApptTA"></Para>
  50. </ListItem>
  51. </ItemizedList>
  52. </Step>
  53. </Procedure>
  54. <Procedure>
  55. <Title>Scheduling a To Do Item</Title>
  56. <Step>
  57. <ItemizedList Mark="&bull;" Role="tight">
  58. <ListItem Id="HCAL.TSKS.item.7">
  59. <Para><XRef Linkend="ToSetUpToDoTA"></Para>
  60. </ListItem>
  61. <ListItem Id="HCAL.TSKS.item.8">
  62. <Para><XRef Linkend="ToChangeToDoTA"></Para>
  63. </ListItem>
  64. <ListItem Id="HCAL.TSKS.item.9">
  65. <Para><XRef Linkend="ToDeleteApptTA"></Para>
  66. </ListItem>
  67. </ItemizedList>
  68. </Step>
  69. </Procedure>
  70. <Procedure>
  71. <Title>Viewing Your Appointment and To Do List</Title>
  72. <Step>
  73. <ItemizedList Mark="&bull;" Role="tight">
  74. <ListItem Id="HCAL.TSKS.item.10">
  75. <Para><XRef Linkend="ToSelectApptListTA"></Para>
  76. </ListItem>
  77. <ListItem Id="HCAL.TSKS.item.11">
  78. <Para><XRef Linkend="ToSelectToDoListTA"></Para>
  79. </ListItem>
  80. </ItemizedList>
  81. </Step>
  82. </Procedure>
  83. <Procedure>
  84. <Title>Printing Calendars, Appointment, or To Do Lists</Title>
  85. <Step>
  86. <ItemizedList Mark="&bull;" Role="tight">
  87. <ListItem Id="HCAL.TSKS.item.12">
  88. <Para><XRef Linkend="ToPrintCurrentViewTA"></Para>
  89. </ListItem>
  90. <ListItem Id="HCAL.TSKS.item.13">
  91. <Para><XRef Linkend="ToPrintApptListTA"></Para>
  92. </ListItem>
  93. </ItemizedList>
  94. </Step>
  95. </Procedure>
  96. <Procedure>
  97. <Title>Finding an Appointment</Title>
  98. <Step>
  99. <ItemizedList Mark="&bull;" Role="tight">
  100. <ListItem Id="HCAL.TSKS.item.15">
  101. <Para><XRef Linkend="ToFindApptTA"></Para>
  102. </ListItem>
  103. </ItemizedList>
  104. </Step>
  105. </Procedure>
  106. <Procedure>
  107. <Title>Browsing Calendars on a Network</Title>
  108. <Step>
  109. <ItemizedList Mark="&bull;" Role="tight">
  110. <ListItem Id="HCAL.TSKS.item.16">
  111. <Para><XRef Linkend="ToAddUsersCalendarTA"></Para>
  112. </ListItem>
  113. <ListItem Id="HCAL.TSKS.item.17">
  114. <Para><XRef Linkend="ToDisplayAnotherUsersCalendarTA"></Para>
  115. </ListItem>
  116. <ListItem Id="HCAL.TSKS.item.18">
  117. <Para><XRef Linkend="ToCompareMultipleUsersCalendarsTA"></Para>
  118. </ListItem>
  119. </ItemizedList>
  120. </Step>
  121. </Procedure>
  122. <Procedure>
  123. <Title>Scheduling a Group Appointment</Title>
  124. <Step>
  125. <ItemizedList Mark="&bull;" Role="tight">
  126. <ListItem Id="HCAL.TSKS.item.19">
  127. <Para><XRef Linkend="ToSetUpGroupApptTA"></Para>
  128. </ListItem>
  129. <ListItem Id="HCAL.TSKS.item.20">
  130. <Para><XRef Linkend="ToDetermineAccessToOtherCalendarsTA"></Para>
  131. </ListItem>
  132. <ListItem Id="HCAL.TSKS.item.21">
  133. <Para><XRef Linkend="ToMailRemindersToGroupTA"></Para>
  134. </ListItem>
  135. </ItemizedList>
  136. </Step>
  137. </Procedure>
  138. <Procedure>
  139. <Title>Customizing Your Calendar</Title>
  140. <Step>
  141. <ItemizedList Mark="&bull;" Role="tight">
  142. <ListItem Id="HCAL.TSKS.item.22">
  143. <Para><XRef Linkend="ToSetApptEditorDefaultsTA"></Para>
  144. </ListItem>
  145. <ListItem Id="HCAL.TSKS.item.23">
  146. <Para><XRef Linkend="ToSetInitialCalendarTA"></Para>
  147. </ListItem>
  148. <ListItem Id="HCAL.TSKS.item.24">
  149. <Para><XRef Linkend="ToSetTimesDayWeekViewsTA"></Para>
  150. </ListItem>
  151. <ListItem Id="HCAL.TSKS.item.25">
  152. <Para><XRef Linkend="ToSetDefaultCalendarViewTA"></Para>
  153. </ListItem>
  154. <ListItem Id="HCAL.TSKS.item.26">
  155. <Para><XRef Linkend="ToGrantAccessToOtherUsersTA"></Para>
  156. </ListItem>
  157. <ListItem Id="HCAL.TSKS.item.27">
  158. <Para><XRef Linkend="ToDenyAccessToOtherUsersTA"></Para>
  159. </ListItem>
  160. <ListItem Id="HCAL.TSKS.item.28">
  161. <Para><XRef Linkend="ToCustomizePrinterSettingsTA"></Para>
  162. </ListItem>
  163. <ListItem Id="HCAL.TSKS.item.29">
  164. <Para><XRef Linkend="ToCustomizeDateFormatTA"></Para>
  165. </ListItem>
  166. <ListItem Id="HCAL.TSKS.item.30">
  167. <Para><XRef Linkend="ToChangeDefaultTimeZoneTA"></Para>
  168. </ListItem>
  169. </ItemizedList>
  170. </Step>
  171. </Procedure>
  172. <Procedure>
  173. <Title>Creating an Appointment File for Scheduling or Mailing</Title>
  174. <Step>
  175. <ItemizedList Mark="&bull;" Role="tight">
  176. <ListItem Id="HCAL.TSKS.item.31">
  177. <Para><XRef Linkend="ToDragDropApptTA"></Para>
  178. </ListItem>
  179. </ItemizedList>
  180. </Step>
  181. </Procedure>
  182. <Sect1 Id="ToSpecifyACalendarViewTA">
  183. <Title>To Specify a Calendar View</Title>
  184. <IndexTerm>
  185. <Primary>calendar views</Primary>
  186. </IndexTerm>
  187. <IndexTerm>
  188. <Primary>calendar view, changing</Primary>
  189. </IndexTerm>
  190. <IndexTerm>
  191. <Primary>day view</Primary>
  192. </IndexTerm>
  193. <IndexTerm>
  194. <Primary>three-month mini-calendar, day view</Primary>
  195. </IndexTerm>
  196. <IndexTerm>
  197. <Primary>day view, three-month mini-calendar</Primary>
  198. </IndexTerm>
  199. <IndexTerm>
  200. <Primary>week view</Primary>
  201. </IndexTerm>
  202. <IndexTerm>
  203. <Primary>grid, week view</Primary>
  204. </IndexTerm>
  205. <IndexTerm>
  206. <Primary>week view, grid</Primary>
  207. </IndexTerm>
  208. <IndexTerm>
  209. <Primary>month view</Primary>
  210. </IndexTerm>
  211. <IndexTerm>
  212. <Primary>year view</Primary>
  213. </IndexTerm>
  214. <Para>&newline;&empty;</Para>
  215. <Para Role="indent"><Link Type="jump" Linkend="day-button"><InlineGraphic Remap="graphic" Role="left" Entityref="Calendar-Day-Icon" Id="HCAL.TSKS.grph.1"></InlineGraphic></Link>Click to display Day view.
  216. Day view includes a three-month mini-calendar containing day and month buttons for navigation.</Para>
  217. <Para Role="indent"><Link Type="jump" Linkend="week-button"><InlineGraphic Remap="graphic" Role="left" Entityref="Calendar-Week-Icon" Id="HCAL.TSKS.grph.2"></InlineGraphic></Link>Click to display Week view.
  218. Week view includes a grid for the entire week showing shaded areas where appointments are scheduled.</Para>
  219. <Para Role="indent"><Link Type="jump" Linkend="month-button"><InlineGraphic Remap="graphic" Role="left" Entityref="Calendar-Month-Icon" Id="HCAL.TSKS.grph.3"></InlineGraphic></Link>Click to display Month view.</Para>
  220. <Para Role="indent"><Link Type="jump" Linkend="year-button"><InlineGraphic Remap="graphic" Role="left" Entityref="Calendar-Year-Icon" Id="HCAL.TSKS.grph.4"></InlineGraphic></Link>Click to display Year view.</Para>
  221. <Para>&newline;&empty;</Para>
  222. <Procedure>
  223. <Title>See Also</Title>
  224. <Step>
  225. <ItemizedList Mark="&bull;" Role="tight">
  226. <ListItem Id="HCAL.TSKS.item.32">
  227. <Para><XRef Linkend="ToDisplaySpecificDateTA"></Para>
  228. </ListItem>
  229. <ListItem Id="HCAL.TSKS.item.33">
  230. <Para><XRef Linkend="ToScheduleApptTA"></Para>
  231. </ListItem>
  232. <ListItem Id="HCAL.TSKS.item.34">
  233. <Para><XRef Linkend="ToPrintCurrentViewTA"></Para>
  234. </ListItem>
  235. </ItemizedList>
  236. </Step>
  237. </Procedure>
  238. </Sect1>
  239. <Sect1 Id="ToDisplaySpecificDateTA">
  240. <Title>To Display a Specific Date or Time Period</Title>
  241. <IndexTerm>
  242. <Primary>date, displaying</Primary>
  243. </IndexTerm>
  244. <IndexTerm>
  245. <Primary>date format, default</Primary>
  246. </IndexTerm>
  247. <IndexTerm>
  248. <Primary>defaults, date format</Primary>
  249. </IndexTerm>
  250. <OrderedList>
  251. <ListItem Id="HCAL.TSKS.item.35">
  252. <Para>Choose Go to Date from the View menu.
  253. </Para>
  254. </ListItem>
  255. <ListItem Id="HCAL.TSKS.item.36">
  256. <Para>Type the date you want to view in the format MM/DD/YY.
  257. </Para>
  258. </ListItem>
  259. <ListItem Id="HCAL.TSKS.item.37">
  260. <Para>Click Go To.
  261. </Para>
  262. </ListItem>
  263. </OrderedList>
  264. <Para Role="indent">For information on how to change the date format,
  265. see <Link Type="jump" Linkend="CalendarOptionsDateDialog">Date Format Dialog Box</Link>
  266. and <XRef Linkend="ToCustomizeDateFormatTA">.</Para>
  267. <Para>&newline;&empty;&newline;</Para>
  268. <Procedure>
  269. <Title>To Display Today</Title>
  270. <IndexTerm>
  271. <Primary SortAs="today,displaying">Today, displaying</Primary>
  272. </IndexTerm>
  273. <IndexTerm>
  274. <Primary>current view</Primary>
  275. </IndexTerm>
  276. <Step>
  277. <ItemizedList Mark="&bull;">
  278. <ListItem Id="HCAL.TSKS.item.38">
  279. <Para>Click the navigation button displaying Today or today's date.
  280. </Para>
  281. </ListItem>
  282. </ItemizedList>
  283. <Para Role="indent">Calendar changes the current view to show today
  284. in the format you were viewing. For example, if you are
  285. viewing by month, choosing today's date
  286. displays the Month view containing today.</Para>
  287. </Step>
  288. </Procedure>
  289. <Procedure>
  290. <Title>To Display the Previous View</Title>
  291. <IndexTerm>
  292. <Primary SortAs="previous view, displaying">Previous view, displaying</Primary>
  293. </IndexTerm>
  294. <Step>
  295. <ItemizedList Mark="&bull;">
  296. <ListItem Id="HCAL.TSKS.item.39">
  297. <Para>Click the navigation arrow pointing left.
  298. </Para>
  299. </ListItem>
  300. </ItemizedList>
  301. <Para Role="indent">Previous view is the day, week, month, or
  302. year before the one you are viewing.
  303. For example, if you are viewing by week, the previous view
  304. shows the previous week.</Para>
  305. </Step>
  306. </Procedure>
  307. <Procedure>
  308. <Title>To Display the Next View</Title>
  309. <IndexTerm>
  310. <Primary SortAs="next view, displaying">Next view, displaying</Primary>
  311. </IndexTerm>
  312. <Step>
  313. <ItemizedList Mark="&bull;">
  314. <ListItem Id="HCAL.TSKS.item.40">
  315. <Para>Click the navigation arrow pointing right.
  316. </Para>
  317. </ListItem>
  318. </ItemizedList>
  319. <Para Role="indent">Next view is the view after the one you are viewing.
  320. For example, if you are viewing by week, the next view shows the next week.</Para>
  321. </Step>
  322. </Procedure>
  323. <Procedure>
  324. <Title>See Also</Title>
  325. <Step>
  326. <ItemizedList Mark="&bull;" Role="tight">
  327. <ListItem Id="HCAL.TSKS.item.41">
  328. <Para><XRef Linkend="ToSpecifyACalendarViewTA"></Para>
  329. </ListItem>
  330. <ListItem Id="HCAL.TSKS.item.42">
  331. <Para><XRef Linkend="CalendarGotoDateDialog"></Para>
  332. </ListItem>
  333. <ListItem Id="HCAL.TSKS.item.43">
  334. <Para><XRef Linkend="ToCustomizeDateFormatTA"></Para>
  335. </ListItem>
  336. <ListItem Id="HCAL.TSKS.item.44">
  337. <Para><XRef Linkend="CalendarOptionsDateDialog"></Para>
  338. </ListItem>
  339. </ItemizedList>
  340. </Step>
  341. </Procedure>
  342. </Sect1>
  343. <Sect1 Id="ToScheduleApptTA">
  344. <Title>To Schedule a Basic Appointment</Title>
  345. <Para>Use the Appointment Editor to insert, change, or delete
  346. appointments on your calendar.
  347. <IndexTerm>
  348. <Primary>appointment, scheduling</Primary>
  349. </IndexTerm>
  350. <IndexTerm>
  351. <Primary>scheduling, basic appointment</Primary>
  352. </IndexTerm>
  353. <IndexTerm>
  354. <Primary>appointment, inserting</Primary>
  355. </IndexTerm>
  356. <IndexTerm>
  357. <Primary SortAs="appointment editor, using">Appointment Editor, using</Primary>
  358. </IndexTerm>
  359. <IndexTerm>
  360. <Primary>appointment, basic</Primary>
  361. </IndexTerm>
  362. </Para>
  363. <OrderedList>
  364. <ListItem Id="HCAL.TSKS.item.45">
  365. <Para>Display the Calendar view containing the day for which you
  366. want to schedule an appointment.</Para>
  367. </ListItem>
  368. <ListItem Id="HCAL.TSKS.item.46">
  369. <Para>Double-click that day.</Para>
  370. <Para>&newline;&empty;&newline;</Para>
  371. <Graphic Entityref="Calendar-Sched-Appt" Id="HCAL.TSKS.fig.1"></Graphic>
  372. <Para>The Appointment Editor is displayed.</Para>
  373. </ListItem>
  374. <ListItem Id="HCAL.TSKS.item.47">
  375. <Para>Choose the Start and End times.</Para>
  376. <Para>&newline;&empty;&newline;</Para>
  377. <Graphic Entityref="Calendar-Appt-Ed" Id="HCAL.TSKS.fig.2"></Graphic>
  378. <IndexTerm>
  379. <Primary>appointment, default duration</Primary>
  380. </IndexTerm>
  381. <IndexTerm>
  382. <Primary>defaults, appointment duration</Primary>
  383. </IndexTerm>
  384. <Para>The default appointment duration is one hour. If your appointment
  385. is longer or shorter, click in the End field to edit the End time.</Para>
  386. </ListItem>
  387. <ListItem Id="HCAL.TSKS.item.48">
  388. <Para>Type a description of the appointment in the What field.</Para>
  389. <Para>For example, you may want to enter the appointment's location
  390. and purpose.</Para>
  391. <Para>If you want to add optional settings to an appointment,
  392. see <XRef Linkend="ToSetOptionsTA">.</Para>
  393. </ListItem>
  394. <ListItem Id="HCAL.TSKS.item.49">
  395. <Para>Click Insert.
  396. </Para>
  397. <Para>The appointment is added to your calendar.</Para>
  398. </ListItem>
  399. <ListItem Id="HCAL.TSKS.item.50">
  400. <Para>Click Cancel to close the Appointment Editor.</Para>
  401. </ListItem>
  402. </OrderedList>
  403. <Procedure>
  404. <Title>See Also</Title>
  405. <Step>
  406. <ItemizedList Mark="&bull;" Role="tight">
  407. <ListItem Id="HCAL.TSKS.item.51">
  408. <Para><XRef Linkend="ToSetOptionsTA"></Para>
  409. </ListItem>
  410. <ListItem Id="HCAL.TSKS.item.52">
  411. <Para><XRef Linkend="ToSetApptEditorDefaultsTA"></Para>
  412. </ListItem>
  413. <ListItem Id="HCAL.TSKS.item.53">
  414. <Para><XRef Linkend="ToSpecifyACalendarViewTA"></Para>
  415. </ListItem>
  416. <ListItem Id="HCAL.TSKS.item.54">
  417. <Para><XRef Linkend="ToChangeApptTA"></Para>
  418. </ListItem>
  419. <ListItem Id="HCAL.TSKS.item.55">
  420. <Para><XRef Linkend="ToDeleteApptTA"></Para>
  421. </ListItem>
  422. <ListItem Id="HCAL.TSKS.item.56">
  423. <Para><XRef Linkend="ToSetUpGroupApptTA"></Para>
  424. </ListItem>
  425. <ListItem Id="HCAL.TSKS.item.57">
  426. <Para><XRef Linkend="CalendarOptionsCategoryDialog"></Para>
  427. </ListItem>
  428. </ItemizedList>
  429. </Step>
  430. </Procedure>
  431. </Sect1>
  432. <Sect1 Id="ToSetOptionsTA">
  433. <Title>To Set Appointment Options</Title>
  434. <IndexTerm>
  435. <Primary>appointment, scheduling</Primary>
  436. </IndexTerm>
  437. <IndexTerm>
  438. <Primary>appointment, inserting</Primary>
  439. </IndexTerm>
  440. <IndexTerm>
  441. <Primary>scheduling, appointment</Primary>
  442. </IndexTerm>
  443. <IndexTerm>
  444. <Primary>inserting an appointment</Primary>
  445. </IndexTerm>
  446. <IndexTerm>
  447. <Primary>appointment, options</Primary>
  448. </IndexTerm>
  449. <IndexTerm>
  450. <Primary>options, appointment</Primary>
  451. </IndexTerm>
  452. <IndexTerm>
  453. <Primary SortAs="appointment editor, using reminders">Appointment Editor, using reminders</Primary>
  454. </IndexTerm>
  455. <IndexTerm>
  456. <Primary>reminders, using</Primary>
  457. </IndexTerm>
  458. <IndexTerm>
  459. <Primary>appointment, privacy settings</Primary>
  460. </IndexTerm>
  461. <IndexTerm>
  462. <Primary>privacy, setting</Primary>
  463. </IndexTerm>
  464. <OrderedList>
  465. <ListItem Id="HCAL.TSKS.item.58">
  466. <Para>Schedule an appointment.
  467. </Para>
  468. <Para>Follow the steps in <XRef Linkend="ToScheduleApptTA">.</Para>
  469. </ListItem>
  470. <ListItem Id="HCAL.TSKS.item.59">
  471. <Para>Click the More button in the Appointment Editor to
  472. display additional appointment options.</Para>
  473. <Para>&newline;&empty;&newline;</Para>
  474. <Graphic Entityref="Calendar-Appt-Options" Id="HCAL.TSKS.fig.3"></Graphic>
  475. <Para>&newline;&empty;</Para>
  476. </ListItem>
  477. <ListItem Id="HCAL.TSKS.item.60">
  478. <Para>Select the desired appointment in the Appointment Editor list.</Para>
  479. </ListItem>
  480. <ListItem Id="HCAL.TSKS.item.61">
  481. <Para>Select Beep, Flash, Popup, or Mail for the type of reminder
  482. you want.</Para>
  483. </ListItem>
  484. <ListItem Id="HCAL.TSKS.item.62">
  485. <Para>Edit the reminder intervals or the <Emphasis>calendar-name@hostname</Emphasis>
  486. if necessary.</Para>
  487. </ListItem>
  488. <ListItem Id="HCAL.TSKS.item.63">
  489. <Para>Optional: To repeat the appointment more than once, choose an
  490. option from the Occurs menu, and then choose an option from the For menu.</Para>
  491. <Para>If you don't see the interval you want on the Occurs menu,
  492. choose Repeat Every and type the desired interval in days,
  493. weeks, or months.</Para>
  494. </ListItem>
  495. <ListItem Id="HCAL.TSKS.item.64">
  496. <Para>Choose an option from the Privacy menu.</Para>
  497. </ListItem>
  498. <ListItem Id="HCAL.TSKS.item.65">
  499. <Para>Click Change.</Para>
  500. </ListItem>
  501. <ListItem Id="HCAL.TSKS.item.66">
  502. <Para>Click Cancel to close the Appointment Editor.</Para>
  503. </ListItem>
  504. </OrderedList>
  505. <Procedure>
  506. <Title>See Also</Title>
  507. <Step>
  508. <ItemizedList Mark="&bull;" Role="tight">
  509. <ListItem Id="HCAL.TSKS.item.67">
  510. <Para><XRef Linkend="ToScheduleApptTA"></Para>
  511. </ListItem>
  512. <ListItem Id="HCAL.TSKS.item.68">
  513. <Para><XRef Linkend="ToSetApptEditorDefaultsTA"></Para>
  514. </ListItem>
  515. <ListItem Id="HCAL.TSKS.item.69">
  516. <Para><XRef Linkend="ToSpecifyACalendarViewTA"></Para>
  517. </ListItem>
  518. <ListItem Id="HCAL.TSKS.item.70">
  519. <Para><XRef Linkend="ToChangeApptTA"></Para>
  520. </ListItem>
  521. <ListItem Id="HCAL.TSKS.item.71">
  522. <Para><XRef Linkend="ToDeleteApptTA"></Para>
  523. </ListItem>
  524. <ListItem Id="HCAL.TSKS.item.72">
  525. <Para><XRef Linkend="CalendarOptionsCategoryDialog"></Para>
  526. </ListItem>
  527. </ItemizedList>
  528. </Step>
  529. </Procedure>
  530. </Sect1>
  531. <Sect1 Id="ToChangeApptTA">
  532. <Title>To Change an Appointment</Title>
  533. <IndexTerm>
  534. <Primary>appointment, changing</Primary>
  535. </IndexTerm>
  536. <IndexTerm>
  537. <Primary>changing an appointment</Primary>
  538. </IndexTerm>
  539. <OrderedList>
  540. <ListItem Id="HCAL.TSKS.item.73">
  541. <Para>Click the Appointment Editor icon.
  542. </Para>
  543. </ListItem>
  544. <ListItem Id="HCAL.TSKS.item.74">
  545. <Para>Select the appointment in the appointment list.
  546. </Para>
  547. </ListItem>
  548. <ListItem Id="HCAL.TSKS.item.75">
  549. <Para>Edit the appointment date, start or end time, description,
  550. reminders, frequency, or privacy.
  551. </Para>
  552. </ListItem>
  553. <ListItem Id="HCAL.TSKS.item.76">
  554. <Para>Click Change.
  555. </Para>
  556. </ListItem>
  557. <ListItem Id="HCAL.TSKS.item.77">
  558. <Para>Click Cancel to close the Appointment Editor.
  559. </Para>
  560. </ListItem>
  561. </OrderedList>
  562. <IndexTerm>
  563. <Primary SortAs="appointment editor, clearing">Appointment Editor, clearing</Primary>
  564. </IndexTerm>
  565. <IndexTerm>
  566. <Primary SortAs="clearing the appointment editor">clearing the Appointment Editor</Primary>
  567. </IndexTerm>
  568. <Para>Be careful if you are inserting multiple appointments, one after
  569. another, that you click Clear between insertions. This will reset
  570. options that you may not want to carry over from one appointment to the next.</Para>
  571. <Procedure>
  572. <Title>See Also</Title>
  573. <Step>
  574. <ItemizedList Mark="&bull;" Role="tight">
  575. <ListItem Id="HCAL.TSKS.item.78">
  576. <Para><XRef Linkend="ToScheduleApptTA"></Para>
  577. </ListItem>
  578. <ListItem Id="HCAL.TSKS.item.79">
  579. <Para><XRef Linkend="ToSetOptionsTA"></Para>
  580. </ListItem>
  581. <ListItem Id="HCAL.TSKS.item.80">
  582. <Para><XRef Linkend="ToDeleteApptTA"></Para>
  583. </ListItem>
  584. <ListItem Id="HCAL.TSKS.item.81">
  585. <Para><XRef Linkend="CalendarApptEditorDialog"></Para>
  586. </ListItem>
  587. </ItemizedList>
  588. </Step>
  589. </Procedure>
  590. </Sect1>
  591. <Sect1 Id="ToSetUpToDoTA">
  592. <Title>To Insert a To Do Item</Title>
  593. <IndexTerm>
  594. <Primary>To Do item, scheduling</Primary>
  595. </IndexTerm>
  596. <IndexTerm>
  597. <Primary>scheduling, To Do item</Primary>
  598. </IndexTerm>
  599. <IndexTerm>
  600. <Primary>To Do item, inserting</Primary>
  601. </IndexTerm>
  602. <IndexTerm>
  603. <Primary>To Do Editor, using</Primary>
  604. </IndexTerm>
  605. <Para>Use the To Do Editor to insert, update, or delete To Do items in your calendar.
  606. </Para>
  607. <OrderedList>
  608. <ListItem Id="HCAL.TSKS.item.82">
  609. <Para>Click the To Do Editor icon in the upper left corner of the main
  610. Calendar view window.</Para>
  611. <Para>&newline;&empty;&newline;</Para>
  612. <Graphic Entityref="Calendar-ToDoEd-Icon" Id="HCAL.TSKS.fig.4"></Graphic>
  613. <Para>The To Do Editor is displayed.</Para>
  614. <Para>&newline;&empty;&newline;</Para>
  615. <Graphic Entityref="Calendar-ToDo-Ed" Id="HCAL.TSKS.fig.5"></Graphic>
  616. <Para>&newline;&empty;&newline;</Para>
  617. </ListItem>
  618. <ListItem Id="HCAL.TSKS.item.83">
  619. <Para>Type or edit the due date for the To Do item in the Due Date field.
  620. </Para>
  621. </ListItem>
  622. <ListItem Id="HCAL.TSKS.item.84">
  623. <Para>Type a description of the To Do item in the What field.
  624. </Para>
  625. </ListItem>
  626. <ListItem Id="HCAL.TSKS.item.85">
  627. <Para>Click Insert.
  628. </Para>
  629. </ListItem>
  630. <ListItem Id="HCAL.TSKS.item.86">
  631. <Para>Click Cancel to close the To Do Editor.
  632. </Para>
  633. </ListItem>
  634. </OrderedList>
  635. <Procedure>
  636. <Title>See Also</Title>
  637. <Step>
  638. <ItemizedList Mark="&bull;" Role="tight">
  639. <ListItem Id="HCAL.TSKS.item.87">
  640. <Para><XRef Linkend="ToChangeToDoTA"></Para>
  641. </ListItem>
  642. <ListItem Id="HCAL.TSKS.item.88">
  643. <Para><XRef Linkend="ToDeleteApptTA"></Para>
  644. </ListItem>
  645. <ListItem Id="HCAL.TSKS.item.89">
  646. <Para><XRef Linkend="CalendarToDoEditorDialog"></Para>
  647. </ListItem>
  648. <ListItem Id="HCAL.TSKS.item.90">
  649. <Para><XRef Linkend="ToScheduleApptTA"></Para>
  650. </ListItem>
  651. </ItemizedList>
  652. </Step>
  653. </Procedure>
  654. </Sect1>
  655. <Sect1 Id="ToChangeToDoTA">
  656. <Title>To Change a To Do Item</Title>
  657. <IndexTerm>
  658. <Primary SortAs="to do item, changing">To Do item, changing</Primary>
  659. </IndexTerm>
  660. <IndexTerm>
  661. <Primary SortAs="changing a to do item">changing a To Do item</Primary>
  662. </IndexTerm>
  663. <OrderedList>
  664. <ListItem Id="HCAL.TSKS.item.91">
  665. <Para>Display the Calendar view containing the day for which you
  666. want to change a To Do item.
  667. </Para>
  668. </ListItem>
  669. <ListItem Id="HCAL.TSKS.item.92">
  670. <Para>Select that day.
  671. </Para>
  672. </ListItem>
  673. <ListItem Id="HCAL.TSKS.item.93">
  674. <Para>Click the To Do Editor icon in the tool bar to open the To Do Editor.
  675. </Para>
  676. </ListItem>
  677. <ListItem Id="HCAL.TSKS.item.94">
  678. <Para>Select the To Do item in the To Do List.
  679. </Para>
  680. </ListItem>
  681. <ListItem Id="HCAL.TSKS.item.95">
  682. <Para>Edit the due date or the description of the To Do item.
  683. </Para>
  684. </ListItem>
  685. <ListItem Id="HCAL.TSKS.item.96">
  686. <Para>Select Completed to change the status of the
  687. To Do item, if applicable.
  688. </Para>
  689. </ListItem>
  690. <ListItem Id="HCAL.TSKS.item.97">
  691. <Para>Click Change.
  692. </Para>
  693. </ListItem>
  694. <ListItem Id="HCAL.TSKS.item.98">
  695. <Para>Click Cancel to close the To Do Editor.
  696. </Para>
  697. </ListItem>
  698. </OrderedList>
  699. <Procedure>
  700. <Title>See Also</Title>
  701. <Step>
  702. <ItemizedList Mark="&bull;" Role="tight">
  703. <ListItem Id="HCAL.TSKS.item.99">
  704. <Para><XRef Linkend="ToSetUpToDoTA"></Para>
  705. </ListItem>
  706. <ListItem Id="HCAL.TSKS.item.100">
  707. <Para><XRef Linkend="ToDeleteApptTA"></Para>
  708. </ListItem>
  709. <ListItem Id="HCAL.TSKS.item.101">
  710. <Para><XRef Linkend="CalendarToDoEditorDialog"></Para>
  711. </ListItem>
  712. </ItemizedList>
  713. </Step>
  714. </Procedure>
  715. </Sect1>
  716. <Sect1 Id="ToDeleteApptTA">
  717. <Title>To Delete an Appointment or To Do Item</Title>
  718. <IndexTerm>
  719. <Primary>appointment, deleting</Primary>
  720. </IndexTerm>
  721. <IndexTerm>
  722. <Primary>deleting an appointment</Primary>
  723. </IndexTerm>
  724. <IndexTerm>
  725. <Primary SortAs="to do item, deleting">To Do item, deleting</Primary>
  726. </IndexTerm>
  727. <IndexTerm>
  728. <Primary SortAs="deleting a to do item">deleting a To Do item</Primary>
  729. </IndexTerm>
  730. <OrderedList>
  731. <ListItem Id="HCAL.TSKS.item.102">
  732. <Para>Click the Appointment or To Do Editor icon.
  733. </Para>
  734. </ListItem>
  735. <ListItem Id="HCAL.TSKS.item.103">
  736. <Para>Select the appointment or To Do item in the appropriate list.
  737. </Para>
  738. </ListItem>
  739. <ListItem Id="HCAL.TSKS.item.104">
  740. <Para>Click Delete.
  741. </Para>
  742. </ListItem>
  743. <ListItem Id="HCAL.TSKS.item.105">
  744. <Para>Click Cancel to close the editor.
  745. </Para>
  746. </ListItem>
  747. </OrderedList>
  748. <Procedure>
  749. <Title>See Also</Title>
  750. <Step>
  751. <ItemizedList Mark="&bull;" Role="tight">
  752. <ListItem Id="HCAL.TSKS.item.106">
  753. <Para><XRef Linkend="ToScheduleApptTA"></Para>
  754. </ListItem>
  755. <ListItem Id="HCAL.TSKS.item.107">
  756. <Para><XRef Linkend="ToChangeApptTA"></Para>
  757. </ListItem>
  758. <ListItem Id="HCAL.TSKS.item.108">
  759. <Para><XRef Linkend="ToSetUpToDoTA"></Para>
  760. </ListItem>
  761. <ListItem Id="HCAL.TSKS.item.109">
  762. <Para><XRef Linkend="ToChangeToDoTA"></Para>
  763. </ListItem>
  764. <ListItem Id="HCAL.TSKS.item.110">
  765. <Para><XRef Linkend="CalendarApptEditorDialog"></Para>
  766. </ListItem>
  767. <ListItem Id="HCAL.TSKS.item.111">
  768. <Para><XRef Linkend="CalendarToDoEditorDialog"></Para>
  769. </ListItem>
  770. </ItemizedList>
  771. </Step>
  772. </Procedure>
  773. </Sect1>
  774. <Sect1 Id="ToSelectApptListTA">
  775. <Title>To View an Appointment List</Title>
  776. <IndexTerm>
  777. <Primary>appointment lists</Primary>
  778. </IndexTerm>
  779. <IndexTerm>
  780. <Primary>list, of appointments</Primary>
  781. </IndexTerm>
  782. <Para>The appointment list displays all your appointments for the day, week,
  783. month, or year.
  784. </Para>
  785. <OrderedList>
  786. <ListItem Id="HCAL.TSKS.item.112">
  787. <Para>Display the view of the calendar
  788. that you want the appointment list to show.
  789. </Para>
  790. </ListItem>
  791. <ListItem Id="HCAL.TSKS.item.113">
  792. <Para>Choose Appointment List from the View menu.
  793. </Para>
  794. <Para>Appointments are listed chronologically and show date, time, and
  795. description.
  796. </Para>
  797. </ListItem>
  798. </OrderedList>
  799. <Procedure>
  800. <Title>See Also</Title>
  801. <Step>
  802. <ItemizedList Mark="&bull;" Role="tight">
  803. <ListItem Id="HCAL.TSKS.item.114">
  804. <Para><XRef Linkend="ToScheduleApptTA"></Para>
  805. </ListItem>
  806. <ListItem Id="HCAL.TSKS.item.115">
  807. <Para><XRef Linkend="ToSelectToDoListTA"></Para>
  808. </ListItem>
  809. <ListItem Id="HCAL.TSKS.item.116">
  810. <Para><XRef Linkend="ToPrintApptListTA"></Para>
  811. </ListItem>
  812. <ListItem Id="HCAL.TSKS.item.117">
  813. <Para><XRef Linkend="CalendarApptEditorDialog"></Para>
  814. </ListItem>
  815. </ItemizedList>
  816. </Step>
  817. </Procedure>
  818. </Sect1>
  819. <Sect1 Id="ToSelectToDoListTA">
  820. <Title>To View a To Do List</Title>
  821. <IndexTerm>
  822. <Primary>To Do lists</Primary>
  823. </IndexTerm>
  824. <IndexTerm>
  825. <Primary>list, of To Do items</Primary>
  826. </IndexTerm>
  827. <Para>The To Do List displays all your To Do items for the day, week, month,
  828. or year.
  829. </Para>
  830. <OrderedList>
  831. <ListItem Id="HCAL.TSKS.item.118">
  832. <Para>Display the view of the calendar
  833. that you want the To Do list to show.
  834. </Para>
  835. </ListItem>
  836. <ListItem Id="HCAL.TSKS.item.119">
  837. <Para>Choose To Do List from the View menu.
  838. </Para>
  839. <Para>To Do items are listed chronologically and show check box, due date,
  840. and description.
  841. </Para>
  842. </ListItem>
  843. </OrderedList>
  844. <Procedure>
  845. <Title>See Also</Title>
  846. <Step>
  847. <ItemizedList Mark="&bull;" Role="tight">
  848. <ListItem Id="HCAL.TSKS.item.120">
  849. <Para><XRef Linkend="ToSetUpToDoTA"></Para>
  850. </ListItem>
  851. <ListItem Id="HCAL.TSKS.item.121">
  852. <Para><XRef Linkend="ToSelectApptListTA"></Para>
  853. </ListItem>
  854. <ListItem Id="HCAL.TSKS.item.122">
  855. <Para><XRef Linkend="ToPrintApptListTA"></Para>
  856. </ListItem>
  857. <ListItem Id="HCAL.TSKS.item.123">
  858. <Para><XRef Linkend="CalendarToDoEditorDialog"></Para>
  859. </ListItem>
  860. </ItemizedList>
  861. </Step>
  862. </Procedure>
  863. </Sect1>
  864. <Sect1 Id="ToFindApptTA">
  865. <Title>To Find an Appointment in Your Calendar</Title>
  866. <IndexTerm>
  867. <Primary>appointment, finding</Primary>
  868. </IndexTerm>
  869. <IndexTerm>
  870. <Primary>finding an appointment in your calendar</Primary>
  871. </IndexTerm>
  872. <IndexTerm>
  873. <Primary>defaults, find search range</Primary>
  874. </IndexTerm>
  875. <OrderedList>
  876. <ListItem Id="HCAL.TSKS.item.124">
  877. <Para>Choose Find from the View menu.
  878. </Para>
  879. </ListItem>
  880. <ListItem Id="HCAL.TSKS.item.125">
  881. <Para>In the Find field, type some text that can become a keyword for the
  882. search; for example, <ComputerOutput>Dentist</ComputerOutput> or
  883. <ComputerOutput>Conference</ComputerOutput>.
  884. </Para>
  885. <Para>The Find field is not case-sensitive.
  886. </Para>
  887. <Para>By default, Calendar searches the past and future six months in your
  888. calendar.
  889. If you want to change the search range, select Search all or edit the dates
  890. in the Search from fields.
  891. </Para>
  892. </ListItem>
  893. <ListItem Id="HCAL.TSKS.item.126">
  894. <Para>Click Find.
  895. </Para>
  896. <Para>The appointments with matching text are displayed in the Find window.
  897. </Para>
  898. </ListItem>
  899. <ListItem Id="HCAL.TSKS.item.127">
  900. <Para>Select the desired appointment in the list.
  901. </Para>
  902. </ListItem>
  903. <ListItem Id="HCAL.TSKS.item.128">
  904. <Para>Click Show Appointment to display the entire appointment.
  905. </Para>
  906. </ListItem>
  907. <ListItem Id="HCAL.TSKS.item.129">
  908. <Para>Click Cancel to close the Find dialog box.
  909. </Para>
  910. </ListItem>
  911. </OrderedList>
  912. </Sect1>
  913. <Sect1 Id="ToAddUsersCalendarTA">
  914. <Title>To Add or Delete Calendars in the Browse List</Title>
  915. <IndexTerm>
  916. <Primary>calendars, browsing</Primary>
  917. </IndexTerm>
  918. <IndexTerm>
  919. <Primary>browsing calendars</Primary>
  920. </IndexTerm>
  921. <IndexTerm>
  922. <Primary SortAs="browse menu editor, using">Browse Menu Editor, using</Primary>
  923. </IndexTerm>
  924. <IndexTerm>
  925. <Primary SortAs="browse list, adding calendars to">Browse List, adding calendars to</Primary>
  926. </IndexTerm>
  927. <Procedure>
  928. <Title>To add a calendar to the Browse list:</Title>
  929. <IndexTerm>
  930. <Primary SortAs="browse list, adding calendars to">Browse List, adding calendars to</Primary>
  931. </IndexTerm>
  932. <IndexTerm>
  933. <Primary SortAs="adding calendars to browse list">adding calendars to Browse list</Primary>
  934. </IndexTerm>
  935. <IndexTerm>
  936. <Primary SortAs="calendars, adding to browse list">calendars, adding to Browse list</Primary>
  937. </IndexTerm>
  938. <Step>
  939. <OrderedList>
  940. <ListItem Id="HCAL.TSKS.item.130">
  941. <Para>Choose Menu Editor from the Browse menu.
  942. </Para>
  943. </ListItem>
  944. <ListItem Id="HCAL.TSKS.item.131">
  945. <Para>Type the <Emphasis>calendar-name@hostname</Emphasis> in the User Name field.
  946. </Para>
  947. </ListItem>
  948. <ListItem Id="HCAL.TSKS.item.132">
  949. <Para>Click Add Name.
  950. </Para>
  951. </ListItem>
  952. <ListItem Id="HCAL.TSKS.item.133">
  953. <Para>To erase your changes and leave the dialog box displayed, click Reset.
  954. </Para>
  955. </ListItem>
  956. <ListItem Id="HCAL.TSKS.item.134">
  957. <Para>To save your changes and close the dialog box, click OK.
  958. </Para>
  959. </ListItem>
  960. <ListItem Id="HCAL.TSKS.item.135">
  961. <Para>To save your changes and leave the dialog box displayed, click Apply.
  962. </Para>
  963. </ListItem>
  964. <ListItem Id="HCAL.TSKS.item.136">
  965. <Para>To erase your changes and close the dialog box, click Cancel.
  966. </Para>
  967. <Para>Saving changes adds the calendar to the Browse menu in the menu bar.
  968. </Para>
  969. </ListItem>
  970. </OrderedList>
  971. </Step>
  972. </Procedure>
  973. <Procedure>
  974. <Title>To delete a calendar from the Browse list:</Title>
  975. <IndexTerm>
  976. <Primary SortAs="browse list, deleting names from">Browse List, deleting names from</Primary>
  977. </IndexTerm>
  978. <IndexTerm>
  979. <Primary SortAs="deleting calendars from the browse list">deleting calendars from the Browse list</Primary>
  980. </IndexTerm>
  981. <IndexTerm>
  982. <Primary SortAs="calendars, deleting from the browse list">calendars, deleting from the Browse list</Primary>
  983. </IndexTerm>
  984. <IndexTerm>
  985. <Primary SortAs="reset, using">Reset, using</Primary>
  986. </IndexTerm>
  987. <Step>
  988. <OrderedList>
  989. <ListItem Id="HCAL.TSKS.item.137">
  990. <Para>Select a calendar name in the Browse list.
  991. </Para>
  992. </ListItem>
  993. <ListItem Id="HCAL.TSKS.item.138">
  994. <Para>Click Remove Name.
  995. </Para>
  996. </ListItem>
  997. <ListItem Id="HCAL.TSKS.item.139">
  998. <Para>To erase your changes and leave the dialog box displayed, click Reset.
  999. </Para>
  1000. </ListItem>
  1001. <ListItem Id="HCAL.TSKS.item.140">
  1002. <Para>To save your changes and close the dialog box, click OK.
  1003. </Para>
  1004. </ListItem>
  1005. <ListItem Id="HCAL.TSKS.item.141">
  1006. <Para>To save your changes and leave the dialog box displayed, click Apply.
  1007. </Para>
  1008. </ListItem>
  1009. <ListItem Id="HCAL.TSKS.item.142">
  1010. <Para>To erase your changes and close the dialog box, click Cancel.
  1011. </Para>
  1012. <Para>Saving changes deletes the calendar from the Browse menu in the menu bar.
  1013. </Para>
  1014. </ListItem>
  1015. </OrderedList>
  1016. </Step>
  1017. </Procedure>
  1018. <Procedure>
  1019. <Title>See Also</Title>
  1020. <Step>
  1021. <ItemizedList Mark="&bull;" Role="tight">
  1022. <ListItem Id="HCAL.TSKS.item.143">
  1023. <Para><XRef Linkend="ToDisplayAnotherUsersCalendarTA"></Para>
  1024. </ListItem>
  1025. <ListItem Id="HCAL.TSKS.item.144">
  1026. <Para><XRef Linkend="ToCompareMultipleUsersCalendarsTA"></Para>
  1027. </ListItem>
  1028. <ListItem Id="HCAL.TSKS.item.145">
  1029. <Para><XRef Linkend="ToSetUpGroupApptTA"></Para>
  1030. </ListItem>
  1031. <ListItem Id="HCAL.TSKS.item.146">
  1032. <Para><XRef Linkend="CalendarMenuEditorDialog"></Para>
  1033. </ListItem>
  1034. <ListItem Id="HCAL.TSKS.item.147">
  1035. <Para><XRef Linkend="CalendarGroupApptEditorDialog"></Para>
  1036. </ListItem>
  1037. </ItemizedList>
  1038. </Step>
  1039. </Procedure>
  1040. </Sect1>
  1041. <Sect1 Id="ToDisplayAnotherUsersCalendarTA">
  1042. <Title>To Display Another User's Calendar</Title>
  1043. <IndexTerm>
  1044. <Primary>calendars, displaying other</Primary>
  1045. </IndexTerm>
  1046. <IndexTerm>
  1047. <Primary>displaying other calendars</Primary>
  1048. </IndexTerm>
  1049. <OrderedList>
  1050. <ListItem Id="HCAL.TSKS.item.148">
  1051. <Para>Choose Show Other Calendar from the Browse menu.
  1052. </Para>
  1053. </ListItem>
  1054. <ListItem Id="HCAL.TSKS.item.149">
  1055. <Para>In the User Name field, type <Emphasis>calendar-name@hostname</Emphasis>
  1056. for the calendar you want to view.
  1057. </Para>
  1058. </ListItem>
  1059. <ListItem Id="HCAL.TSKS.item.150">
  1060. <Para>Click Show.
  1061. </Para>
  1062. <Para>The calendar you are viewing changes to display the new calendar.
  1063. <!-- <idx>error messages, from Show Other Calendar dialog box<\idx> -->
  1064. </Para>
  1065. <Para>The Show Other Calendar dialog box displays a message with the name
  1066. of the calendar displayed. If you typed the calendar name incorrectly,
  1067. an error message is displayed.
  1068. <!--<p indent>"Unable to access <emph>calendar-name.domainname<\emph> ..." or -->
  1069. <!--<p indent>"Unable to display <emph>calendar-name@hostname<\emph> ..." or -->
  1070. <!--<p indent>"Calendar <emph>calendar-name@hostname<\emph> does not exist ..." -->
  1071. </Para>
  1072. </ListItem>
  1073. </OrderedList>
  1074. <Procedure>
  1075. <Title>See Also</Title>
  1076. <Step>
  1077. <ItemizedList Mark="&bull;" Role="tight">
  1078. <ListItem Id="HCAL.TSKS.item.151">
  1079. <Para><XRef Linkend="ToAddUsersCalendarTA"></Para>
  1080. </ListItem>
  1081. <ListItem Id="HCAL.TSKS.item.152">
  1082. <Para><XRef Linkend="ToCompareMultipleUsersCalendarsTA"></Para>
  1083. </ListItem>
  1084. </ItemizedList>
  1085. </Step>
  1086. </Procedure>
  1087. </Sect1>
  1088. <Sect1 Id="ToCompareMultipleUsersCalendarsTA">
  1089. <Title>To Compare Multiple Calendars</Title>
  1090. <IndexTerm>
  1091. <Primary>calendars, comparing</Primary>
  1092. </IndexTerm>
  1093. <IndexTerm>
  1094. <Primary>comparing calendars</Primary>
  1095. </IndexTerm>
  1096. <OrderedList>
  1097. <ListItem Id="HCAL.TSKS.item.153">
  1098. <Para>Choose Compare Calendars from the Browse menu.
  1099. </Para>
  1100. <Para>The Compare Calendars dialog box is displayed.
  1101. The first time you open this dialog box, only your calendar
  1102. is displayed in the grid.
  1103. </Para>
  1104. <Para>To add other calendars to the Browse list, see
  1105. <XRef Linkend="ToAddUsersCalendarTA">.
  1106. </Para>
  1107. </ListItem>
  1108. <ListItem Id="HCAL.TSKS.item.154">
  1109. <Para>Select entries in the Browse list.
  1110. <IndexTerm>
  1111. <Primary>compare calendars grid, using</Primary>
  1112. </IndexTerm>
  1113. <IndexTerm>
  1114. <Primary SortAs="grid, compare calendars">grid, Compare Calendars</Primary>
  1115. </IndexTerm>
  1116. </Para>
  1117. <Para>The Compare Calendars grid changes to add the new calendar, overlaying
  1118. all displayed calendars.
  1119. The lightest areas on the grid indicate free times; the darkest
  1120. areas are busy times.
  1121. </Para>
  1122. <Para>Use this grid to identify times available for a group
  1123. appointment.
  1124. </Para>
  1125. </ListItem>
  1126. </OrderedList>
  1127. <Procedure>
  1128. <Title>To change the time interval displayed in the grid:</Title>
  1129. <Step>
  1130. <ItemizedList Mark="&bull;">
  1131. <ListItem Id="HCAL.TSKS.item.155">
  1132. <Para>Choose an option from the Compare Calendars Go To menu
  1133. </Para>
  1134. <Para><Emphasis>Or</Emphasis>
  1135. </Para>
  1136. </ListItem>
  1137. <ListItem Id="HCAL.TSKS.item.156">
  1138. <Para>Type the date you want to view in the Go To field
  1139. </Para>
  1140. </ListItem>
  1141. </ItemizedList>
  1142. </Step>
  1143. </Procedure>
  1144. <Procedure>
  1145. <Title>See Also</Title>
  1146. <Step>
  1147. <ItemizedList Mark="&bull;" Role="tight">
  1148. <ListItem Id="HCAL.TSKS.item.157">
  1149. <Para><XRef Linkend="ToAddUsersCalendarTA"></Para>
  1150. </ListItem>
  1151. <ListItem Id="HCAL.TSKS.item.158">
  1152. <Para><XRef Linkend="ToDisplayAnotherUsersCalendarTA"></Para>
  1153. </ListItem>
  1154. </ItemizedList>
  1155. </Step>
  1156. </Procedure>
  1157. </Sect1>
  1158. <Sect1 Id="ToSetUpGroupApptTA">
  1159. <Title>To Schedule a Group Appointment</Title>
  1160. <IndexTerm>
  1161. <Primary>group appointment, selecting day and time</Primary>
  1162. </IndexTerm>
  1163. <IndexTerm>
  1164. <Primary>appointment, group</Primary>
  1165. </IndexTerm>
  1166. <IndexTerm>
  1167. <Primary>compare calendars grid, using</Primary>
  1168. </IndexTerm>
  1169. <IndexTerm>
  1170. <Primary SortAs="grid, compare calendars">grid, Compare Calendars</Primary>
  1171. </IndexTerm>
  1172. <IndexTerm>
  1173. <Primary>group appointment, scheduling</Primary>
  1174. </IndexTerm>
  1175. <IndexTerm>
  1176. <Primary>scheduling, group appointment</Primary>
  1177. </IndexTerm>
  1178. <IndexTerm>
  1179. <Primary SortAs="group appointment editor, opening">Group Appointment Editor, opening</Primary>
  1180. </IndexTerm>
  1181. <Para>If you want to set up a regular appointment, see
  1182. <XRef Linkend="ToScheduleApptTA">.</Para>
  1183. <!--Use the Group Appointment Editor to insert, change, or delete group -->
  1184. <!--appointments on your and other calendars. Even if you don't -->
  1185. <!--have insert access to other calendars, you can use the Group Appointment -->
  1186. <!--Editor to mail notices of group appointments to other users. -->
  1187. <OrderedList>
  1188. <ListItem Id="HCAL.TSKS.item.159">
  1189. <Para>Choose Compare Calendars from the Browse menu.
  1190. </Para>
  1191. </ListItem>
  1192. <ListItem Id="HCAL.TSKS.item.160">
  1193. <Para>Select one or more entries in the Browse list.
  1194. </Para>
  1195. </ListItem>
  1196. <ListItem Id="HCAL.TSKS.item.161">
  1197. <Para>Click in the grid on a time block for which you want to set up a
  1198. group appointment. Unshaded blocks represent potentially available times.
  1199. </Para>
  1200. <Para>The time block is highlighted.
  1201. </Para>
  1202. <Para>A busy character (asterisk) is displayed next to a calendar names in the
  1203. Browse list if the proposed appointment would conflict.
  1204. </Para>
  1205. </ListItem>
  1206. <ListItem Id="HCAL.TSKS.item.162">
  1207. <Para>Click Schedule to open the Group Appointment Editor.
  1208. </Para>
  1209. <Para>The Group Appointment Editor is displayed with the fields for
  1210. date, time, and mail automatically filled out.
  1211. </Para>
  1212. </ListItem>
  1213. <ListItem Id="HCAL.TSKS.item.163">
  1214. <Para>Type (or edit) the group appointment start time in the Start field.
  1215. </Para>
  1216. </ListItem>
  1217. <ListItem Id="HCAL.TSKS.item.164">
  1218. <Para>Type (or edit) the group appointment end time in the End field.
  1219. </Para>
  1220. </ListItem>
  1221. <ListItem Id="HCAL.TSKS.item.165">
  1222. <Para>Type the appointment description, such as its location or purpose,
  1223. in the What field.
  1224. </Para>
  1225. </ListItem>
  1226. <ListItem Id="HCAL.TSKS.item.166">
  1227. <Para>Optional: Click More to choose the repeat interval and duration
  1228. for the group appointment.
  1229. </Para>
  1230. </ListItem>
  1231. <ListItem Id="HCAL.TSKS.item.167">
  1232. <Para>Click Insert to add the group appointment to the selected
  1233. calendars.
  1234. </Para>
  1235. <Para>If you don't have insert access on all the calendars, you may want to
  1236. send mail to notify others in the group about the group appointment. See
  1237. <XRef Linkend="ToMailRemindersToGroupTA">.
  1238. </Para>
  1239. </ListItem>
  1240. <ListItem Id="HCAL.TSKS.item.168">
  1241. <Para>Click Cancel to close the Group Appointment Editor.
  1242. </Para>
  1243. </ListItem>
  1244. </OrderedList>
  1245. <Procedure>
  1246. <Title>See Also</Title>
  1247. <Step>
  1248. <ItemizedList Mark="&bull;" Role="tight">
  1249. <ListItem Id="HCAL.TSKS.item.169">
  1250. <Para><XRef Linkend="ToScheduleApptTA"></Para>
  1251. </ListItem>
  1252. <ListItem Id="HCAL.TSKS.item.170">
  1253. <Para><XRef Linkend="ToMailRemindersToGroupTA"></Para>
  1254. </ListItem>
  1255. <ListItem Id="HCAL.TSKS.item.171">
  1256. <Para><XRef Linkend="ToGrantAccessToOtherUsersTA"></Para>
  1257. </ListItem>
  1258. <ListItem Id="HCAL.TSKS.item.172">
  1259. <Para><XRef Linkend="CalendarCompareCalsDialog"></Para>
  1260. </ListItem>
  1261. <ListItem Id="HCAL.TSKS.item.173">
  1262. <Para><XRef Linkend="CalendarGroupApptEditorDialog"></Para>
  1263. </ListItem>
  1264. </ItemizedList>
  1265. </Step>
  1266. </Procedure>
  1267. </Sect1>
  1268. <Sect1 Id="ToMailRemindersToGroupTA">
  1269. <Title>To Mail Reminders to the Group</Title>
  1270. <IndexTerm>
  1271. <Primary>group appointment, mail reminders</Primary>
  1272. </IndexTerm>
  1273. <IndexTerm>
  1274. <Primary SortAs="group appointment editor, mailing reminders">Group Appointment Editor, mailing reminders</Primary>
  1275. </IndexTerm>
  1276. <IndexTerm>
  1277. <Primary>mail reminders, of group appointment</Primary>
  1278. </IndexTerm>
  1279. <IndexTerm>
  1280. <Primary>reminders (mail), of group appointment</Primary>
  1281. </IndexTerm>
  1282. <Para>Once you've set up a group appointment (date, start and end times,
  1283. description, repeat interval), you may want to mail
  1284. the group a reminder. To send mail:
  1285. </Para>
  1286. <OrderedList>
  1287. <ListItem Id="HCAL.TSKS.item.174">
  1288. <Para>Click Mail in the Group Appointment Editor.
  1289. </Para>
  1290. <Para>Calendar displays a Compose window containing an appointment
  1291. attachment. The appointment attachment is pre-addressed to the
  1292. selected users and automatically filled out with the date and
  1293. appointment start and end times.
  1294. </Para>
  1295. </ListItem>
  1296. <ListItem Id="HCAL.TSKS.item.175">
  1297. <Para>Click Deliver in the Compose window.
  1298. </Para>
  1299. <Para>Calendar mails the reminder to the selected users.
  1300. </Para>
  1301. <Para>Recipients of a mail message with a calendar-formatted
  1302. reminder can drag the message from the Mailer header window
  1303. and drop it on their calendars to automatically schedule the
  1304. pre-formatted appointment.
  1305. </Para>
  1306. </ListItem>
  1307. </OrderedList>
  1308. <Procedure>
  1309. <Title>See Also</Title>
  1310. <Step>
  1311. <ItemizedList Mark="&bull;" Role="tight">
  1312. <ListItem Id="HCAL.TSKS.item.176">
  1313. <Para><XRef Linkend="ToSetUpGroupApptTA"></Para>
  1314. </ListItem>
  1315. <ListItem Id="HCAL.TSKS.item.177">
  1316. <Para><XRef Linkend="ToDetermineAccessToOtherCalendarsTA"></Para>
  1317. </ListItem>
  1318. <ListItem Id="HCAL.TSKS.item.178">
  1319. <Para><XRef Linkend="CalendarGroupApptEditorDialog"></Para>
  1320. </ListItem>
  1321. <ListItem Id="HCAL.TSKS.item.179">
  1322. <Para><XRef Linkend="CalendarCompareCalsDialog"></Para>
  1323. </ListItem>
  1324. </ItemizedList>
  1325. </Step>
  1326. </Procedure>
  1327. </Sect1>
  1328. <Sect1 Id="ToDetermineAccessToOtherCalendarsTA">
  1329. <Title>To Determine Whether You Have Access to Other Calendars</Title>
  1330. <IndexTerm>
  1331. <Primary>access to other calendars, determining</Primary>
  1332. </IndexTerm>
  1333. <IndexTerm>
  1334. <Primary>user access to other calendars, determining</Primary>
  1335. </IndexTerm>
  1336. <IndexTerm>
  1337. <Primary>calendars, access to other</Primary>
  1338. </IndexTerm>
  1339. <IndexTerm>
  1340. <Primary SortAs="access list, using">Access List (Group Appointment Editor), using</Primary>
  1341. </IndexTerm>
  1342. <IndexTerm>
  1343. <Primary>insert access, determining if you have</Primary>
  1344. </IndexTerm>
  1345. <OrderedList>
  1346. <ListItem Id="HCAL.TSKS.item.180">
  1347. <Para>Choose Compare Calendars from the Browse menu.
  1348. </Para>
  1349. </ListItem>
  1350. <ListItem Id="HCAL.TSKS.item.181">
  1351. <Para>Select the entries in the Browse list that you want to check for access.
  1352. </Para>
  1353. </ListItem>
  1354. <ListItem Id="HCAL.TSKS.item.182">
  1355. <Para>Click Schedule to open the Group Appointment Editor.
  1356. </Para>
  1357. </ListItem>
  1358. <ListItem Id="HCAL.TSKS.item.183">
  1359. <Para>Look at the Calendar Access list.
  1360. </Para>
  1361. <Para>The Calendar Access list displays the calendars
  1362. that you selected in the Compare Calendars dialog box.
  1363. </Para>
  1364. <Para>A "Y" in the Access column means you have insert access to the selected
  1365. calendar. An "N" means you don't.
  1366. </Para>
  1367. </ListItem>
  1368. </OrderedList>
  1369. <Para>To add appointments or To Do items to other calendars,
  1370. ask the owners to grant you <GlossTerm>insert access</GlossTerm>.</Para>
  1371. <Procedure>
  1372. <Title>See Also</Title>
  1373. <Step>
  1374. <ItemizedList Mark="&bull;" Role="tight">
  1375. <ListItem Id="HCAL.TSKS.item.184">
  1376. <Para><XRef Linkend="ToGrantAccessToOtherUsersTA"></Para>
  1377. </ListItem>
  1378. <ListItem Id="HCAL.TSKS.item.185">
  1379. <Para><XRef Linkend="ToDenyAccessToOtherUsersTA">
  1380. <!-- <item> <xref ToSetUpGroupApptTA> -->
  1381. </Para>
  1382. </ListItem>
  1383. <ListItem Id="HCAL.TSKS.item.186">
  1384. <Para><XRef Linkend="CalendarGroupApptEditorDialog"></Para>
  1385. </ListItem>
  1386. <ListItem Id="HCAL.TSKS.item.187">
  1387. <Para><XRef Linkend="CalendarCompareCalsDialog">
  1388. <!-- <item> <xref CalendarOptionsCategoryDialog> -->
  1389. </Para>
  1390. </ListItem>
  1391. <ListItem Id="HCAL.TSKS.item.188">
  1392. <Para><XRef Linkend="CalendarOptionsAccessDialog"></Para>
  1393. </ListItem>
  1394. </ItemizedList>
  1395. </Step>
  1396. </Procedure>
  1397. </Sect1>
  1398. <Sect1 Id="ToGrantAccessToOtherUsersTA">
  1399. <Title>To Grant Access to Your Calendar</Title>
  1400. <IndexTerm>
  1401. <Primary>access, granting to your calendar by others</Primary>
  1402. </IndexTerm>
  1403. <IndexTerm>
  1404. <Primary>user access, granting to your calendar by others</Primary>
  1405. </IndexTerm>
  1406. <IndexTerm>
  1407. <Primary>access, insert</Primary>
  1408. </IndexTerm>
  1409. <IndexTerm>
  1410. <Primary>user access, insert</Primary>
  1411. </IndexTerm>
  1412. <IndexTerm>
  1413. <Primary>access, delete</Primary>
  1414. </IndexTerm>
  1415. <IndexTerm>
  1416. <Primary>user access, delete</Primary>
  1417. </IndexTerm>
  1418. <IndexTerm>
  1419. <Primary>access, browse</Primary>
  1420. </IndexTerm>
  1421. <IndexTerm>
  1422. <Primary>user access, browse</Primary>
  1423. </IndexTerm>
  1424. <IndexTerm>
  1425. <Primary>access, default</Primary>
  1426. </IndexTerm>
  1427. <IndexTerm>
  1428. <Primary>user access, default</Primary>
  1429. </IndexTerm>
  1430. <IndexTerm>
  1431. <Primary>calendar, granting access by others to your</Primary>
  1432. </IndexTerm>
  1433. <IndexTerm>
  1434. <Primary>adding access to your calendar by others</Primary>
  1435. </IndexTerm>
  1436. <IndexTerm>
  1437. <Primary>granting access to your calendar by others</Primary>
  1438. </IndexTerm>
  1439. <IndexTerm>
  1440. <Primary>browse access</Primary>
  1441. </IndexTerm>
  1442. <IndexTerm>
  1443. <Primary>insert access, granting to your calendar by others</Primary>
  1444. </IndexTerm>
  1445. <IndexTerm>
  1446. <Primary>delete access, granting to your calendar by others</Primary>
  1447. </IndexTerm>
  1448. <IndexTerm>
  1449. <Primary>defaults, user access</Primary>
  1450. </IndexTerm>
  1451. <IndexTerm>
  1452. <Primary SortAs="access list and permissions dialog box, using">Access List and Permissions dialog box, using</Primary>
  1453. </IndexTerm>
  1454. <IndexTerm>
  1455. <Primary SortAs="reset, using">Reset, using</Primary>
  1456. </IndexTerm>
  1457. <OrderedList>
  1458. <ListItem Id="HCAL.TSKS.item.189">
  1459. <Para>Choose Options from the File menu.
  1460. </Para>
  1461. </ListItem>
  1462. <ListItem Id="HCAL.TSKS.item.190">
  1463. <Para>Choose Access List and Permissions from the Category menu.
  1464. </Para>
  1465. <Para>The Access List and Permissions dialog box is displayed.</Para>
  1466. <Para>&newline;&empty;</Para>
  1467. <Note>
  1468. <Para>Depending on the version of Calendar you have, you'll see one
  1469. of the following Access List and Permissions dialog boxes. Use the procedure
  1470. that matches the version you have.
  1471. </Para>
  1472. </Note>
  1473. <Para>&newline;&empty;</Para>
  1474. <Graphic Entityref="Calendar-Access" Id="HCAL.TSKS.fig.6"></Graphic>
  1475. <Para>&newline;&empty;</Para>
  1476. </ListItem>
  1477. <ListItem Id="HCAL.TSKS.item.191">
  1478. <Para>In the User Name field, type <Emphasis>calendar-name@hostname</Emphasis>
  1479. for the calendar to which you want to grant access.
  1480. </Para>
  1481. <Para>The default permission is for <GlossTerm>browse access</GlossTerm> only.
  1482. </Para>
  1483. </ListItem>
  1484. <ListItem Id="HCAL.TSKS.item.192">
  1485. <Para>Select Browse, Insert, or Delete permissions.
  1486. </Para>
  1487. </ListItem>
  1488. <ListItem Id="HCAL.TSKS.item.193">
  1489. <Para>Click Add Name to add the calendar to the Access list with the
  1490. permissions you've chosen.
  1491. </Para>
  1492. </ListItem>
  1493. <ListItem Id="HCAL.TSKS.item.194">
  1494. <Para>To erase your changes and leave the dialog box displayed, click Reset.
  1495. </Para>
  1496. </ListItem>
  1497. <ListItem Id="HCAL.TSKS.item.195">
  1498. <Para>To save your changes and close the dialog box, click OK.
  1499. </Para>
  1500. </ListItem>
  1501. <ListItem Id="HCAL.TSKS.item.196">
  1502. <Para>To save your changes and leave the dialog box displayed, click Apply.
  1503. </Para>
  1504. </ListItem>
  1505. <ListItem Id="HCAL.TSKS.item.197">
  1506. <Para>To erase your changes and close the dialog box, click Cancel.
  1507. </Para>
  1508. <Para>Saving changes grants the selected access to the specified calendar.
  1509. </Para>
  1510. </ListItem>
  1511. </OrderedList>
  1512. <Para><Emphasis>Or:</Emphasis>
  1513. </Para>
  1514. <OrderedList>
  1515. <ListItem Id="HCAL.TSKS.item.198">
  1516. <Para>Choose Options from the File menu.
  1517. </Para>
  1518. </ListItem>
  1519. <ListItem Id="HCAL.TSKS.item.199">
  1520. <Para>Choose Access List and Permissions from the Category menu.
  1521. </Para>
  1522. <Para>The Access List and Permissions dialog box is displayed.</Para>
  1523. <Para>&newline;&empty;&newline;</Para>
  1524. <Graphic Entityref="Calendar-Access-Alternate" Id="HCAL.TSKS.fig.7"></Graphic>
  1525. <Para>&newline;&empty;</Para>
  1526. </ListItem>
  1527. <ListItem Id="HCAL.TSKS.item.200">
  1528. <Para>In the User Name field, type <Emphasis>calendar-name@hostname</Emphasis>
  1529. for the calendar to which you want to grant access.
  1530. </Para>
  1531. <Para>The default permission is for view access to public appointments only.
  1532. </Para>
  1533. </ListItem>
  1534. <ListItem Id="HCAL.TSKS.item.201">
  1535. <Para>Select View, Insert, or Change permissions.
  1536. </Para>
  1537. <Para>Permissions control whether others can perform specific
  1538. operations on your calendar. You can choose more than one permission.
  1539. </Para>
  1540. </ListItem>
  1541. <ListItem Id="HCAL.TSKS.item.202">
  1542. <Para>Select Public, Semiprivate, or Private <GlossTerm>access rights</GlossTerm>.
  1543. </Para>
  1544. <Para>Access rights control the specific types of appointments others can see.
  1545. </Para>
  1546. </ListItem>
  1547. <ListItem Id="HCAL.TSKS.item.203">
  1548. <Para>Click Add to add the calendar to the Access list with the
  1549. permissions and access rights you've chosen.
  1550. </Para>
  1551. </ListItem>
  1552. <ListItem Id="HCAL.TSKS.item.204">
  1553. <Para>To erase your changes and leave the dialog box displayed, click Reset.
  1554. </Para>
  1555. </ListItem>
  1556. <ListItem Id="HCAL.TSKS.item.205">
  1557. <Para>To save your changes and close the dialog box, click OK.
  1558. </Para>
  1559. </ListItem>
  1560. <ListItem Id="HCAL.TSKS.item.206">
  1561. <Para>To save your changes and leave the dialog box displayed, click Apply.
  1562. </Para>
  1563. </ListItem>
  1564. <ListItem Id="HCAL.TSKS.item.207">
  1565. <Para>To erase your changes and close the dialog box, click Cancel.
  1566. </Para>
  1567. <Para>Saving changes grants the selected access and permissions to the
  1568. specified calendar.
  1569. </Para>
  1570. </ListItem>
  1571. </OrderedList>
  1572. <Procedure>
  1573. <Title>See Also</Title>
  1574. <Step>
  1575. <ItemizedList Mark="&bull;" Role="tight">
  1576. <ListItem Id="HCAL.TSKS.item.208">
  1577. <Para><XRef Linkend="ToDetermineAccessToOtherCalendarsTA"></Para>
  1578. </ListItem>
  1579. <ListItem Id="HCAL.TSKS.item.209">
  1580. <Para><XRef Linkend="ToDenyAccessToOtherUsersTA"></Para>
  1581. </ListItem>
  1582. <ListItem Id="HCAL.TSKS.item.210">
  1583. <Para><XRef Linkend="CalendarOptionsCategoryDialog"></Para>
  1584. </ListItem>
  1585. <ListItem Id="HCAL.TSKS.item.211">
  1586. <Para><XRef Linkend="CalendarOptionsAccessDialog"></Para>
  1587. </ListItem>
  1588. </ItemizedList>
  1589. </Step>
  1590. </Procedure>
  1591. </Sect1>
  1592. <Sect1 Id="ToDenyAccessToOtherUsersTA">
  1593. <Title>To Deny Access to Your Calendar</Title>
  1594. <IndexTerm>
  1595. <Primary>access, denying to your calendar by others</Primary>
  1596. </IndexTerm>
  1597. <IndexTerm>
  1598. <Primary>user access, denying to your calendar by others</Primary>
  1599. </IndexTerm>
  1600. <IndexTerm>
  1601. <Primary>access, removing</Primary>
  1602. </IndexTerm>
  1603. <IndexTerm>
  1604. <Primary>user access, removing</Primary>
  1605. </IndexTerm>
  1606. <IndexTerm>
  1607. <Primary>removing access to your calendar by others</Primary>
  1608. </IndexTerm>
  1609. <IndexTerm>
  1610. <Primary>calendar, denying access by others to your</Primary>
  1611. </IndexTerm>
  1612. <IndexTerm>
  1613. <Primary>calendar, removing access by others to your</Primary>
  1614. </IndexTerm>
  1615. <IndexTerm>
  1616. <Primary>denying access to your calendar by others</Primary>
  1617. </IndexTerm>
  1618. <OrderedList>
  1619. <ListItem Id="HCAL.TSKS.item.212">
  1620. <Para>Choose Options from the File menu.
  1621. </Para>
  1622. </ListItem>
  1623. <ListItem Id="HCAL.TSKS.item.213">
  1624. <Para>Choose Access List and Permissions from the Category menu.
  1625. </Para>
  1626. </ListItem>
  1627. <ListItem Id="HCAL.TSKS.item.214">
  1628. <Para>Select the entry for which
  1629. you want to deny access in the Access list.
  1630. </Para>
  1631. </ListItem>
  1632. <ListItem Id="HCAL.TSKS.item.215">
  1633. <Para>Click Remove Name (or Delete) to remove the user from the Access list.
  1634. </Para>
  1635. </ListItem>
  1636. <ListItem Id="HCAL.TSKS.item.216">
  1637. <Para>To erase your changes and leave the dialog box displayed, click Reset.
  1638. </Para>
  1639. </ListItem>
  1640. <ListItem Id="HCAL.TSKS.item.217">
  1641. <Para>To save your changes and close the dialog box, click OK.
  1642. </Para>
  1643. </ListItem>
  1644. <ListItem Id="HCAL.TSKS.item.218">
  1645. <Para>To save your changes and leave the dialog box displayed, click Apply.
  1646. </Para>
  1647. </ListItem>
  1648. <ListItem Id="HCAL.TSKS.item.219">
  1649. <Para>To erase your changes and close the dialog box, click Cancel.
  1650. </Para>
  1651. <Para>Saving changes removes access for the specified calendar.
  1652. </Para>
  1653. </ListItem>
  1654. </OrderedList>
  1655. <Procedure>
  1656. <Title>See Also</Title>
  1657. <Step>
  1658. <ItemizedList Mark="&bull;" Role="tight">
  1659. <ListItem Id="HCAL.TSKS.item.220">
  1660. <Para><XRef Linkend="ToDetermineAccessToOtherCalendarsTA"></Para>
  1661. </ListItem>
  1662. <ListItem Id="HCAL.TSKS.item.221">
  1663. <Para><XRef Linkend="ToGrantAccessToOtherUsersTA"></Para>
  1664. </ListItem>
  1665. <ListItem Id="HCAL.TSKS.item.222">
  1666. <Para><XRef Linkend="CalendarOptionsCategoryDialog"></Para>
  1667. </ListItem>
  1668. <ListItem Id="HCAL.TSKS.item.223">
  1669. <Para><XRef Linkend="CalendarOptionsAccessDialog"></Para>
  1670. </ListItem>
  1671. </ItemizedList>
  1672. </Step>
  1673. </Procedure>
  1674. </Sect1>
  1675. <Sect1 Id="ToPrintCurrentViewTA">
  1676. <Title>To Print Current Day, Week, Month, or Year Views</title>
  1677. <IndexTerm>
  1678. <Primary SortAs="printing, calendar views">printing, Calendar views</Primary>
  1679. </IndexTerm>
  1680. <IndexTerm>
  1681. <Primary>calendar view, printing</Primary>
  1682. </IndexTerm>
  1683. <IndexTerm>
  1684. <Primary>day view, printing</Primary>
  1685. </IndexTerm>
  1686. <IndexTerm>
  1687. <Primary>week view, printing</Primary>
  1688. </IndexTerm>
  1689. <IndexTerm>
  1690. <Primary>month view, printing</Primary>
  1691. </IndexTerm>
  1692. <IndexTerm>
  1693. <Primary>year view, printing</Primary>
  1694. </IndexTerm>
  1695. <orderedlist>
  1696. <listitem>
  1697. <para>
  1698. Display the Calendar view you want to print.
  1699. </para>
  1700. </listitem>
  1701. <listitem>
  1702. <para>
  1703. Choose Print Current View from the File menu.
  1704. </para>
  1705. </listitem>
  1706. </orderedlist>
  1707. <para>
  1708. Calendar prints the view using the default print options.
  1709. To change the print options, see
  1710. <XRef Linkend="ToCustomizePrinterSettingsTA">.
  1711. </Para>
  1712. <Procedure>
  1713. <Title>See Also</Title>
  1714. <Step>
  1715. <ItemizedList Mark="&bull;" Role="tight">
  1716. <ListItem Id="HCAL.TSKS.item.226">
  1717. <Para><XRef Linkend="ToPrintApptListTA"></Para>
  1718. </ListItem>
  1719. <ListItem Id="HCAL.TSKS.item.228">
  1720. <Para><XRef Linkend="ToCustomizePrinterSettingsTA"></Para>
  1721. </ListItem>
  1722. </ItemizedList>
  1723. </Step>
  1724. </Procedure>
  1725. </Sect1>
  1726. <Sect1 Id="ToPrintApptListTA">
  1727. <Title>To Print an Appointment or To Do List</title>
  1728. <indexterm><primary>printing</primary><secondary>appointment list</secondary></indexterm>
  1729. <indexterm><primary>appointment list</primary><secondary>printing</secondary></indexterm>
  1730. <indexterm><primary>To Do list</primary><secondary>printing</secondary></indexterm>
  1731. <indexterm><primary>printing</primary><secondary>To Do list</secondary></indexterm>
  1732. <orderedlist>
  1733. <listitem>
  1734. <para>
  1735. Display the Calendar view containing the day
  1736. for which you want to print an appointment or To Do list.
  1737. </para>
  1738. </listitem>
  1739. <listitem>
  1740. <para>
  1741. Select that day.
  1742. </para>
  1743. </listitem>
  1744. <listitem>
  1745. <para>
  1746. Choose Print... from the File menu.
  1747. </para>
  1748. <para>
  1749. The Print dialog box is displayed.
  1750. </para>
  1751. </listitem>
  1752. <listitem>
  1753. <para>
  1754. Choose Appointment List or To Do List from the
  1755. Report Type menu.
  1756. </para>
  1757. </listitem>
  1758. <listitem>
  1759. <para>
  1760. Click Print.
  1761. </para>
  1762. </listitem>
  1763. </orderedlist>
  1764. <para>
  1765. Calendar prints the appointment or To Do list using the default print options.
  1766. To change the print options, see
  1767. <XRef Linkend="ToCustomizePrinterSettingsTA">.
  1768. </para>
  1769. <Procedure>
  1770. <Title>See Also</Title>
  1771. <Step>
  1772. <ItemizedList Mark="&bull;" Role="tight">
  1773. <ListItem Id="HCAL.TSKS.item.226a">
  1774. <Para><XRef Linkend="ToPrintCurrentViewTA"></para>
  1775. </ListItem>
  1776. <ListItem Id="HCAL.TSKS.item.228a">
  1777. <Para><XRef Linkend="ToCustomizePrinterSettingsTA"></Para>
  1778. </ListItem>
  1779. </ItemizedList>
  1780. </Step>
  1781. </Procedure>
  1782. </sect1>
  1783. <Sect1 Id="ToCustomizePrinterSettingsTA">
  1784. <Title>To Print with Specific Options</title>
  1785. <indexterm><primary>customizing</primary><secondary>Calendar print options</secondary></indexterm>
  1786. <orderedlist>
  1787. <listitem>
  1788. <para>
  1789. Choose Print... from the File menu.
  1790. </para>
  1791. <para>
  1792. The Print dialog box appears.
  1793. </para>
  1794. <Graphic Entityref="Calendar-Print-Dialog" Id="HCAL.TSKS.fig.7a"></Graphic>
  1795. <itemizedlist>
  1796. <listitem>
  1797. <para>
  1798. To select a different printer,
  1799. type the new printer name in the Printer Name field.
  1800. </para>
  1801. </listitem>
  1802. <listitem>
  1803. <para>
  1804. To output multiple copies, type
  1805. the number of copies in the Copies field.
  1806. </para>
  1807. </listitem>
  1808. <listitem>
  1809. <para>
  1810. To print to a file, click the Print to File checkbox
  1811. and type the path and filename for the file.
  1812. </para>
  1813. </listitem>
  1814. </itemizedlist>
  1815. </listitem>
  1816. <listitem>
  1817. <para>
  1818. Choose the view or list you want to print from
  1819. the Report Type menu. You can choose from <literal>Day View</literal>,
  1820. <literal>Week View</literal>, <literal>Month View</literal>,
  1821. <literal>Year View</literal>, <literal>Appointment List</literal>, or
  1822. <literal>To Do List</literal>.
  1823. </para>
  1824. <para>
  1825. If necessary, set the correct time range by changing the From and To fields.
  1826. </para>
  1827. </listitem>
  1828. <listitem>
  1829. <para>
  1830. To set additional options, click the More... button.
  1831. The Calendar Options dialog box appears so
  1832. you can set additional print options for headers and footers, margins,
  1833. and the privacy level for printed appointments.
  1834. See <XRef Linkend="CalendarOptionsPrinterDialog">.
  1835. </para>
  1836. <para>
  1837. When finished with the Printer Settings, click OK to establish your
  1838. choices as the new defaults and return to the Print dialog box. When you
  1839. print with default options, your new settings will be used.
  1840. Apply sets the new defaults, but remains in this dialog box.
  1841. Reset restores the options to their previous settings. Cancel cancels
  1842. any changes since the last Apply and returns you to the Print dialog box.
  1843. </para>
  1844. </listitem>
  1845. <listitem>
  1846. <para>
  1847. To set printer-specific options, click the Setup... button on the Print dialog box.
  1848. The Print Setup window appears. From this window, you can
  1849. examine printer information and define both Printer and Job options.
  1850. See
  1851. <olink type="Jump" LocalInfo="PrnSetup PrintSetupRef">Print Setup
  1852. Window</OLink> for more information.
  1853. </para>
  1854. <para>
  1855. When finished with the Print Setup window, click OK to set your changes
  1856. and return to the Print dialog box.
  1857. </para>
  1858. </listitem>
  1859. <listitem>
  1860. <para>To send the selected view or list to the printer from the
  1861. Print dialog box, click Print.</para>
  1862. </listitem>
  1863. <listitem><para>Click Close to close the Print dialog box.</para>
  1864. </listitem>
  1865. </orderedlist>
  1866. <Procedure>
  1867. <Title>See Also</Title>
  1868. <Step>
  1869. <ItemizedList Mark="&bull;" Role="tight">
  1870. <ListItem Id="HCAL.TSKS.item.226b">
  1871. <Para><XRef Linkend="ToPrintCurrentViewTA"></para>
  1872. </ListItem>
  1873. <ListItem Id="HCAL.TSKS.item.228b">
  1874. <Para><XRef Linkend="ToPrintApptListTA"></Para>
  1875. </ListItem>
  1876. </ItemizedList>
  1877. </Step>
  1878. </Procedure>
  1879. </sect1>
  1880. <Sect1 Id="ToSetApptEditorDefaultsTA">
  1881. <Title>To Set the Appointment Editor Defaults</Title>
  1882. <IndexTerm>
  1883. <Primary>appointment, editor defaults</Primary>
  1884. </IndexTerm>
  1885. <IndexTerm>
  1886. <Primary SortAs="defaults, appointment editor">defaults, Appointment Editor</Primary>
  1887. </IndexTerm>
  1888. <IndexTerm>
  1889. <Primary SortAs="appointment editor, using reminders">Appointment Editor, using reminders</Primary>
  1890. </IndexTerm>
  1891. <IndexTerm>
  1892. <Primary>reminders, setting default</Primary>
  1893. </IndexTerm>
  1894. <IndexTerm>
  1895. <Primary>privacy, setting default</Primary>
  1896. </IndexTerm>
  1897. <IndexTerm>
  1898. <Primary>duration, setting default appointment</Primary>
  1899. </IndexTerm>
  1900. <IndexTerm>
  1901. <Primary>start time, setting default appointment</Primary>
  1902. </IndexTerm>
  1903. <IndexTerm>
  1904. <Primary>defaults, reminder</Primary>
  1905. </IndexTerm>
  1906. <IndexTerm>
  1907. <Primary>defaults, privacy</Primary>
  1908. </IndexTerm>
  1909. <IndexTerm>
  1910. <Primary>defaults, appointment duration</Primary>
  1911. </IndexTerm>
  1912. <IndexTerm>
  1913. <Primary>defaults, appointment start time</Primary>
  1914. </IndexTerm>
  1915. <IndexTerm>
  1916. <Primary>appointment, setting defaults</Primary>
  1917. </IndexTerm>
  1918. <OrderedList>
  1919. <ListItem Id="HCAL.TSKS.item.245">
  1920. <Para>Choose Options from the File menu.
  1921. </Para>
  1922. <Para>The Calendar Options dialog box is displayed.
  1923. </Para>
  1924. </ListItem>
  1925. <ListItem Id="HCAL.TSKS.item.246">
  1926. <Para>Choose Editor Defaults from the Category menu.
  1927. </Para>
  1928. </ListItem>
  1929. <ListItem Id="HCAL.TSKS.item.247">
  1930. <Para>Optional: Change the default appointment duration in the
  1931. Duration field.
  1932. </Para>
  1933. </ListItem>
  1934. <ListItem Id="HCAL.TSKS.item.248">
  1935. <Para>Optional: Change the default appointment start time by choosing
  1936. from the Start menu.
  1937. </Para>
  1938. </ListItem>
  1939. <ListItem Id="HCAL.TSKS.item.249">
  1940. <Para>Select Beep, Flash, Popup, or Mail reminders.
  1941. &newline;&empty;
  1942. <!-- <lablist><head>Reminders -->
  1943. </Para>
  1944. <VariableList>
  1945. <VarListEntry>
  1946. <Term>Beep</Term>
  1947. <ListItem>
  1948. <Para>Causes your system to emit an electronic beep
  1949. </Para>
  1950. </ListItem>
  1951. </VarListEntry>
  1952. <VarListEntry>
  1953. <Term>Flash</Term>
  1954. <ListItem>
  1955. <Para>Causes your calendar to flash
  1956. </Para>
  1957. </ListItem>
  1958. </VarListEntry>
  1959. <VarListEntry>
  1960. <Term>Popup</Term>
  1961. <ListItem>
  1962. <Para>Displays a reminder dialog box
  1963. </Para>
  1964. </ListItem>
  1965. </VarListEntry>
  1966. <VarListEntry>
  1967. <Term>Mail</Term>
  1968. <ListItem>
  1969. <Para>Sends electronic mail
  1970. </Para>
  1971. </ListItem>
  1972. </VarListEntry>
  1973. </VariableList>
  1974. </ListItem>
  1975. <ListItem Id="HCAL.TSKS.item.250">
  1976. <Para>Edit the default time intervals if necessary.
  1977. </Para>
  1978. <Para>The time interval fields are active for each reminder you select.
  1979. They specify the time <Symbol Role="Variable">before</Symbol> an appointment that the
  1980. reminder will be activated.
  1981. </Para>
  1982. </ListItem>
  1983. <ListItem Id="HCAL.TSKS.item.251">
  1984. <Para>Choose a <GlossTerm>privacy</GlossTerm> option from the Privacy menu.
  1985. &newline;&empty;
  1986. <!--<lablist><head>Privacy -->
  1987. </Para>
  1988. <VariableList>
  1989. <VarListEntry>
  1990. <Term>Others See Time Only</Term>
  1991. <ListItem>
  1992. <Para>The default. Displays only the time of an
  1993. appointment so others can see you're busy.
  1994. </Para>
  1995. </ListItem>
  1996. </VarListEntry>
  1997. <VarListEntry>
  1998. <Term>Others See Time and Text</Term>
  1999. <ListItem>
  2000. <Para>Displays the time and text of an
  2001. appointment in your calendar.
  2002. </Para>
  2003. </ListItem>
  2004. </VarListEntry>
  2005. <VarListEntry>
  2006. <Term>Show Nothing</Term>
  2007. <ListItem>
  2008. <Para>Displays nothing about an appointment in your
  2009. calendar for maximum privacy.
  2010. </Para>
  2011. </ListItem>
  2012. </VarListEntry>
  2013. </VariableList>
  2014. </ListItem>
  2015. <ListItem Id="HCAL.TSKS.item.252">
  2016. <Para>Click Apply to apply the new defaults to all future appointments.
  2017. </Para>
  2018. </ListItem>
  2019. <ListItem Id="HCAL.TSKS.item.253">
  2020. <Para>Click Cancel to close the Calendar Options dialog box.
  2021. </Para>
  2022. </ListItem>
  2023. </OrderedList>
  2024. <Procedure>
  2025. <Title>See Also</Title>
  2026. <Step>
  2027. <ItemizedList Mark="&bull;" Role="tight">
  2028. <ListItem Id="HCAL.TSKS.item.254">
  2029. <Para><XRef Linkend="CalendarOptionsCategoryDialog"></Para>
  2030. </ListItem>
  2031. <ListItem Id="HCAL.TSKS.item.255">
  2032. <Para><XRef Linkend="ToScheduleApptTA"></Para>
  2033. </ListItem>
  2034. </ItemizedList>
  2035. </Step>
  2036. </Procedure>
  2037. </Sect1>
  2038. <Sect1 Id="ToSetInitialCalendarTA">
  2039. <Title>To Set the Initial Calendar Displayed</Title>
  2040. <IndexTerm>
  2041. <Primary>calendar view, setting initial display</Primary>
  2042. </IndexTerm>
  2043. <IndexTerm>
  2044. <Primary>initial calendar view, setting</Primary>
  2045. </IndexTerm>
  2046. <Para>You can set Calendar to display a calendar other than your
  2047. own when you first start it.
  2048. </Para>
  2049. <OrderedList>
  2050. <ListItem Id="HCAL.TSKS.item.256">
  2051. <Para>Choose Options from the File menu.
  2052. </Para>
  2053. <Para>The Calendar Options dialog box is displayed.
  2054. </Para>
  2055. </ListItem>
  2056. <ListItem Id="HCAL.TSKS.item.257">
  2057. <Para>Choose Display Settings from the Category menu.
  2058. </Para>
  2059. </ListItem>
  2060. <ListItem Id="HCAL.TSKS.item.258">
  2061. <Para>Double-click in the Initial Calendar View field to select the contents
  2062. and type <Emphasis>calendar-name@hostname</Emphasis> for the calendar you
  2063. want to view each time you start Calendar.
  2064. </Para>
  2065. </ListItem>
  2066. <ListItem Id="HCAL.TSKS.item.259">
  2067. <Para>Click Apply.
  2068. </Para>
  2069. </ListItem>
  2070. <ListItem Id="HCAL.TSKS.item.260">
  2071. <Para>Click Cancel.
  2072. </Para>
  2073. </ListItem>
  2074. </OrderedList>
  2075. <Procedure>
  2076. <Title>See Also</Title>
  2077. <Step>
  2078. <ItemizedList Mark="&bull;" Role="tight">
  2079. <ListItem Id="HCAL.TSKS.item.261">
  2080. <Para><XRef Linkend="ToScheduleApptTA"></Para>
  2081. </ListItem>
  2082. <ListItem Id="HCAL.TSKS.item.262">
  2083. <Para><XRef Linkend="ToSetDefaultCalendarViewTA"></Para>
  2084. </ListItem>
  2085. <ListItem Id="HCAL.TSKS.item.263">
  2086. <Para><XRef Linkend="CalendarOptionsCategoryDialog"></Para>
  2087. </ListItem>
  2088. </ItemizedList>
  2089. </Step>
  2090. </Procedure>
  2091. </Sect1>
  2092. <Sect1 Id="ToSetTimesDayWeekViewsTA">
  2093. <Title>To Set the Time Boundaries on Day and Week Views</Title>
  2094. <IndexTerm>
  2095. <Primary>time boundaries, on day and week views</Primary>
  2096. </IndexTerm>
  2097. <IndexTerm>
  2098. <Primary>boundaries, setting time on day and week views</Primary>
  2099. </IndexTerm>
  2100. <IndexTerm>
  2101. <Primary>day view, setting time boundaries</Primary>
  2102. </IndexTerm>
  2103. <IndexTerm>
  2104. <Primary>week view, setting time boundaries</Primary>
  2105. </IndexTerm>
  2106. <Para>In day and week views, you can set the earliest and latest hours you want
  2107. displayed in your calendar.
  2108. </Para>
  2109. <OrderedList>
  2110. <ListItem Id="HCAL.TSKS.item.264">
  2111. <Para>Choose Options from the File menu.
  2112. </Para>
  2113. <Para>The Options dialog box is displayed.
  2114. </Para>
  2115. </ListItem>
  2116. <ListItem Id="HCAL.TSKS.item.265">
  2117. <Para>Choose Display Settings from the Category menu.
  2118. </Para>
  2119. </ListItem>
  2120. <ListItem Id="HCAL.TSKS.item.266">
  2121. <Para>Move the slider in the Begin and End controls to
  2122. adjust the earliest and latest hours you want displayed on your calendar.
  2123. </Para>
  2124. </ListItem>
  2125. <ListItem Id="HCAL.TSKS.item.267">
  2126. <Para>Select 12 Hour or 24 Hour time display.
  2127. </Para>
  2128. </ListItem>
  2129. <ListItem Id="HCAL.TSKS.item.268">
  2130. <Para>Click Apply.
  2131. </Para>
  2132. </ListItem>
  2133. <ListItem Id="HCAL.TSKS.item.269">
  2134. <Para>Click Cancel.
  2135. </Para>
  2136. </ListItem>
  2137. </OrderedList>
  2138. <Procedure>
  2139. <Title>See Also</Title>
  2140. <Step>
  2141. <ItemizedList Mark="&bull;" Role="tight">
  2142. <ListItem Id="HCAL.TSKS.item.270">
  2143. <Para><XRef Linkend="ToSetInitialCalendarTA"></Para>
  2144. </ListItem>
  2145. <ListItem Id="HCAL.TSKS.item.271">
  2146. <Para><XRef Linkend="ToSetDefaultCalendarViewTA"></Para>
  2147. </ListItem>
  2148. <ListItem Id="HCAL.TSKS.item.272">
  2149. <Para><XRef Linkend="CalendarOptionsCategoryDialog"></Para>
  2150. </ListItem>
  2151. </ItemizedList>
  2152. </Step>
  2153. </Procedure>
  2154. </Sect1>
  2155. <Sect1 Id="ToSetDefaultCalendarViewTA">
  2156. <Title>To Set the Default Calendar View</Title>
  2157. <IndexTerm>
  2158. <Primary>calendar views</Primary>
  2159. </IndexTerm>
  2160. <IndexTerm>
  2161. <Primary>default calendar view</Primary>
  2162. </IndexTerm>
  2163. <IndexTerm>
  2164. <Primary>calendar view, default</Primary>
  2165. </IndexTerm>
  2166. <IndexTerm>
  2167. <Primary>defaults, calendar view</Primary>
  2168. </IndexTerm>
  2169. <IndexTerm>
  2170. <Primary>defaults, setting calendar view</Primary>
  2171. </IndexTerm>
  2172. <IndexTerm>
  2173. <Primary>calendar view, setting default</Primary>
  2174. </IndexTerm>
  2175. <Para>The <GlossTerm>calendar view</GlossTerm> is the day, week, month, or year displayed in
  2176. the main Calendar window.</Para>
  2177. <Para>Calendar displays the default Calendar view each time you
  2178. start it. The initial default view is by month.
  2179. To set the default to the view you use most often:
  2180. </Para>
  2181. <OrderedList>
  2182. <ListItem Id="HCAL.TSKS.item.273">
  2183. <Para>Choose Options from the File menu.
  2184. </Para>
  2185. <Para>The Options dialog box is displayed.
  2186. </Para>
  2187. </ListItem>
  2188. <ListItem Id="HCAL.TSKS.item.274">
  2189. <Para>Choose Display Settings from the Category menu.
  2190. </Para>
  2191. </ListItem>
  2192. <ListItem Id="HCAL.TSKS.item.275">
  2193. <Para>Select Day, Week, Month, or Year as the Default View.
  2194. </Para>
  2195. </ListItem>
  2196. <ListItem Id="HCAL.TSKS.item.276">
  2197. <Para>Click Apply.
  2198. </Para>
  2199. </ListItem>
  2200. <ListItem Id="HCAL.TSKS.item.277">
  2201. <Para>Click Cancel.
  2202. </Para>
  2203. </ListItem>
  2204. </OrderedList>
  2205. <Procedure>
  2206. <Title>See Also</Title>
  2207. <Step>
  2208. <ItemizedList Mark="&bull;" Role="tight">
  2209. <ListItem Id="HCAL.TSKS.item.278">
  2210. <Para><XRef Linkend="ToSetInitialCalendarTA"></Para>
  2211. </ListItem>
  2212. <ListItem Id="HCAL.TSKS.item.279">
  2213. <Para><XRef Linkend="ToSetTimesDayWeekViewsTA"></Para>
  2214. </ListItem>
  2215. <ListItem Id="HCAL.TSKS.item.280">
  2216. <Para><XRef Linkend="ToDisplaySpecificDateTA">
  2217. </Para>
  2218. </ListItem>
  2219. <ListItem Id="HCAL.TSKS.item.281">
  2220. <Para><XRef Linkend="ToScheduleApptTA"></Para>
  2221. </ListItem>
  2222. <ListItem Id="HCAL.TSKS.item.282">
  2223. <Para><XRef Linkend="CalendarOptionsCategoryDialog"></Para>
  2224. </ListItem>
  2225. </ItemizedList>
  2226. </Step>
  2227. </Procedure>
  2228. </Sect1>
  2229. <Sect1 Id="ToCustomizeDateFormatTA">
  2230. <Title>To Customize the Date Format</Title>
  2231. <IndexTerm>
  2232. <Primary>defaults, date format</Primary>
  2233. </IndexTerm>
  2234. <IndexTerm>
  2235. <Primary>date format, changing</Primary>
  2236. </IndexTerm>
  2237. <IndexTerm>
  2238. <Primary>date format, default</Primary>
  2239. </IndexTerm>
  2240. <Para>The default date format in Calendar is MM/DD/YY. Use the Date Format
  2241. dialog box to change the order of date components or the separator.
  2242. </Para>
  2243. <OrderedList>
  2244. <ListItem Id="HCAL.TSKS.item.307">
  2245. <Para>Choose Options from the File menu.
  2246. </Para>
  2247. </ListItem>
  2248. <ListItem Id="HCAL.TSKS.item.308">
  2249. <Para>Choose Date Format from the Category menu.
  2250. </Para>
  2251. </ListItem>
  2252. <ListItem Id="HCAL.TSKS.item.309">
  2253. <Para>Select the desired date order option.
  2254. </Para>
  2255. </ListItem>
  2256. <ListItem Id="HCAL.TSKS.item.310">
  2257. <Para>Select the desired date separator.
  2258. </Para>
  2259. </ListItem>
  2260. <ListItem Id="HCAL.TSKS.item.311">
  2261. <Para>To erase your changes and leave the dialog box displayed, click Reset.
  2262. </Para>
  2263. </ListItem>
  2264. <ListItem Id="HCAL.TSKS.item.312">
  2265. <Para>To save your changes and close the dialog box, click OK.
  2266. </Para>
  2267. </ListItem>
  2268. <ListItem Id="HCAL.TSKS.item.313">
  2269. <Para>To save your changes and leave the dialog box displayed, click Apply.
  2270. </Para>
  2271. </ListItem>
  2272. <ListItem Id="HCAL.TSKS.item.314">
  2273. <Para>To erase your changes and close the dialog box, click Cancel.
  2274. </Para>
  2275. </ListItem>
  2276. </OrderedList>
  2277. <Procedure>
  2278. <Title>See Also</Title>
  2279. <Step>
  2280. <ItemizedList Mark="&bull;" Role="tight">
  2281. <ListItem Id="HCAL.TSKS.item.315">
  2282. <Para><XRef Linkend="ToScheduleApptTA"></Para>
  2283. </ListItem>
  2284. <ListItem Id="HCAL.TSKS.item.316">
  2285. <Para><XRef Linkend="ToDisplaySpecificDateTA"></Para>
  2286. </ListItem>
  2287. <ListItem Id="HCAL.TSKS.item.317">
  2288. <Para><XRef Linkend="CalendarOptionsCategoryDialog"></Para>
  2289. </ListItem>
  2290. <ListItem Id="HCAL.TSKS.item.318">
  2291. <Para><XRef Linkend="CalendarOptionsDateDialog"></Para>
  2292. </ListItem>
  2293. <ListItem Id="HCAL.TSKS.item.319">
  2294. <Para><XRef Linkend="CalendarGotoDateDialog"></Para>
  2295. </ListItem>
  2296. </ItemizedList>
  2297. </Step>
  2298. </Procedure>
  2299. </Sect1>
  2300. <Sect1 Id="ToChangeDefaultTimeZoneTA">
  2301. <Title>To Change the Default Time Zone</Title>
  2302. <IndexTerm>
  2303. <Primary>defaults, time zone</Primary>
  2304. </IndexTerm>
  2305. <IndexTerm>
  2306. <Primary>time zone, default</Primary>
  2307. </IndexTerm>
  2308. <IndexTerm>
  2309. <Primary>time zone, changing</Primary>
  2310. </IndexTerm>
  2311. <IndexTerm>
  2312. <Primary>custom time, setting</Primary>
  2313. </IndexTerm>
  2314. <OrderedList>
  2315. <ListItem Id="HCAL.TSKS.item.320">
  2316. <Para>Choose Time Zone from the View menu.
  2317. </Para>
  2318. <Para>The Time Zone dialog box is displayed.
  2319. </Para>
  2320. </ListItem>
  2321. <ListItem Id="HCAL.TSKS.item.321">
  2322. <Para>Select the Custom Time setting.
  2323. </Para>
  2324. </ListItem>
  2325. <ListItem Id="HCAL.TSKS.item.322">
  2326. <Para>In the Hours field, edit the number of hours before or
  2327. after Greenwich Mean Time that you want your calendar set to.
  2328. </Para>
  2329. <Para>For example, to synchronize your calendar for Pacific Standard Time,
  2330. choose GMT+8 hours. For Finland, choose
  2331. GMT-2 hours. For Japan, choose GMT-9 hours. You may have to adjust
  2332. by one hour for daylight, or summer time.
  2333. </Para>
  2334. </ListItem>
  2335. <ListItem Id="HCAL.TSKS.item.323">
  2336. <Para>To revert to your own time zone, select My Time.
  2337. </Para>
  2338. </ListItem>
  2339. <ListItem Id="HCAL.TSKS.item.324">
  2340. <Para>Click OK to apply changes and close the dialog box.
  2341. </Para>
  2342. </ListItem>
  2343. </OrderedList>
  2344. <Procedure>
  2345. <Title>See Also</Title>
  2346. <Step>
  2347. <ItemizedList Mark="&bull;" Role="tight">
  2348. <ListItem Id="HCAL.TSKS.item.325">
  2349. <Para><XRef Linkend="CalendarOptionsCategoryDialog"></Para>
  2350. </ListItem>
  2351. <ListItem Id="HCAL.TSKS.item.326">
  2352. <Para><XRef Linkend="CalendarOptionsDateDialog"></Para>
  2353. </ListItem>
  2354. <ListItem Id="HCAL.TSKS.item.327">
  2355. <Para><XRef Linkend="CalendarTimeZoneDialog"></Para>
  2356. </ListItem>
  2357. <ListItem Id="HCAL.TSKS.item.328">
  2358. <Para><XRef Linkend="ToChangeDefaultTimeZoneTA"></Para>
  2359. </ListItem>
  2360. </ItemizedList>
  2361. </Step>
  2362. </Procedure>
  2363. </Sect1>
  2364. <Sect1 Id="ToDragDropApptTA">
  2365. <Title>To Drag and Drop an Appointment on Your Calendar</Title>
  2366. <IndexTerm>
  2367. <Primary SortAs="appointment, dragging from mailer">appointment, dragging from Mailer</Primary>
  2368. </IndexTerm>
  2369. <IndexTerm>
  2370. <Primary SortAs="dragging appointment from mailer to calendar">dragging appointment from Mailer to Calendar</Primary>
  2371. </IndexTerm>
  2372. <IndexTerm>
  2373. <Primary SortAs="drag and drop, mailer to calendar">drag and drop, Mailer to Calendar</Primary>
  2374. </IndexTerm>
  2375. <OrderedList>
  2376. <ListItem Id="HCAL.TSKS.item.329">
  2377. <Para>Create an appointment using the standalone Appointment Editor.
  2378. </Para>
  2379. <OrderedList>
  2380. <ListItem Id="HCAL.TSKS.item.330">
  2381. <Para>At a command line, type <ComputerOutput>dtcm_editor </ComputerOutput><Symbol Role="Variable">filename</Symbol>
  2382. </Para>
  2383. <Para>The standalone Appointment Editor is displayed.
  2384. </Para>
  2385. </ListItem>
  2386. <ListItem Id="HCAL.TSKS.item.331">
  2387. <Para>Type a date in the Date field.
  2388. </Para>
  2389. <Para>Remember to use the date format set in the Date Format dialog box.
  2390. </Para>
  2391. </ListItem>
  2392. <ListItem Id="HCAL.TSKS.item.332">
  2393. <Para>Choose the Start and End times for the appointment.
  2394. </Para>
  2395. </ListItem>
  2396. <ListItem Id="HCAL.TSKS.item.333">
  2397. <Para>Type a description of the appointment in the What field.
  2398. </Para>
  2399. </ListItem>
  2400. <ListItem Id="HCAL.TSKS.item.334">
  2401. <Para>Choose a frequency for the appointment from the Occurs menu.
  2402. </Para>
  2403. </ListItem>
  2404. <ListItem Id="HCAL.TSKS.item.335">
  2405. <Para>Click Save to write the appointment contents to the file you
  2406. specified at the command line.
  2407. </Para>
  2408. </ListItem>
  2409. </OrderedList>
  2410. </ListItem>
  2411. <ListItem Id="HCAL.TSKS.item.336">
  2412. <Para>Open File Manager and navigate to the folder where the appointment
  2413. file is stored.
  2414. </Para>
  2415. </ListItem>
  2416. <ListItem Id="HCAL.TSKS.item.337">
  2417. <Para>Drag the file icon and drop it on Calendar.
  2418. </Para>
  2419. <Para>Calendar automatically schedules the appointment on your calendar.
  2420. </Para>
  2421. <Para>You could also drag the file icon to Mailer and mail the formatted
  2422. appointment to others.
  2423. </Para>
  2424. </ListItem>
  2425. </OrderedList>
  2426. <Procedure>
  2427. <Title>See Also</Title>
  2428. <Step>
  2429. <ItemizedList Mark="&bull;" Role="tight">
  2430. <ListItem Id="HCAL.TSKS.item.338">
  2431. <Para><XRef Linkend="CalendarStandaloneApptEditorWindow"></Para>
  2432. </ListItem>
  2433. </ItemizedList>
  2434. <!-- EOF: Tasks -->
  2435. </Step>
  2436. </Procedure>
  2437. </Sect1>
  2438. </Chapter>
  2439. <!--fickle 1.15 help-to-docbook 1.4 01/17/96 16:27:20-->