Title: | DECWINDOWS 26-JAN-89 to 29-NOV-90 |
Notice: | See 1639.0 for VMS V5.3 kit; 2043.0 for 5.4 IFT kit |
Moderator: | STAR::VATNE |
Created: | Mon Oct 30 1989 |
Last Modified: | Mon Dec 31 1990 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 3726 |
Total number of notes: | 19516 |
Hi; I have a VAXstation 3100 on a LAVc with VMS 5.3 and DECwindows 2. I would like to know if it is possible to save my screen layout after logging out. In particular, after customizing all my windows and saving that, the only windows that "remember" where they were before logging out are the Session Manager, FileView, and Mail. All others, terminals, clock, calendar, calculator, etc. loose their customization and I need to reposition them where I want all over again. This is very frustrating and time consuming. Any help is appreciated. Thanks. Robi. Robert Y. Al-Jaar Systems Engineering Technology Group
T.R | Title | User | Personal Name | Date | Lines |
---|---|---|---|---|---|
2148.1 | Clock and calendar is OK | OSLACT::OLAV | Do it in parallel! | Fri Jan 26 1990 09:35 | 4 |
Both the clock and the calendar also saves the position when you save the settings. Olav | |||||
2148.2 | And some of the others | DECWIN::KLEIN | Fri Jan 26 1990 10:45 | 7 | |
>>Both the clock and the calendar also saves the position when you save the >>settings. And so do FileView, the window manager icon box (V2 only) and the session manager. And the first DECterm. -steve- | |||||
2148.3 | LESLIE::LESLIE | Andy Leslie, VMS/CSSE Systems | Fri Jan 26 1990 14:01 | 27 | |
My DECW$LOGIN contains the following loops to create decterms in known positions. Usues escape sequences that became valid with VMS 5.3. $Define DECW$user_defaults "''login_'.decw$user_defaults]" $ $ loop_counter=1 $ x=0 $ y=0 $Creterm_Loop: $ x=50*(loop_counter-1) $ y=75*(loop_counter-1) $ call creterm $ $ loop_counter=loop_counter+1 $ if .not. (loop_counter .gt. 8) then goto creterm_loop $ $ $Exeunt: $ exit $ $creterm: SUBROUTINE $ $ create /terminal /detach /process="DW_''loop_counter'" - /window_attributes=(rows=32,initial_state=icon,- title="Initial_state",x='x',y='y',icon_name="Initial_state_DW''loop_counter'") $ $ENDSUBROUTINE |