[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference bulova::decw_jan-89_to_nov-90

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

3320.0. "Resize Button, enable/disable." by MLNOIS::DIDEO () Fri Sep 07 1990 15:11

    Hello,
    do anybody knows how to temporary disable and then enable again the 
    menu bar RESIZE BUTTON ?
    
    Any help will be very appretiated.
    Bye, Paolo.
T.RTitleUserPersonal
Name
DateLines
3320.1ESTASI::DIDEOMon Sep 10 1990 15:4413
    From Stars:
    .
    .
    Arg a[3];
    .
    .
    XtSetArg(a[0],DwtNnoIconify,TRUE);	/* Remove the iconify button */
    XtSetArg(a[1],DwtNnoLower,TRUE);    /* Remove the sticky button */
    XtSetArg(a[2],DwtNnoResize,TRUE);   /* Remove the resize button */
    XtSetValues(top_level,a,3);
    .
    .
    Bye Paolo.