search for: tctl

Displaying 4 results from an estimated 4 matches for "tctl".

Did you mean: tcl
2007 May 19
3
table with no row headers
Is this the right way to turn off row headers? table.rowHeaderMode = LAYOUT_FIX_WIDTH table.rowHeaderWidth = 0 -- vjoel : Joel VanderWerf : path berkeley edu : 510 665 3407
2002 Jul 25
0
Réf. : Backing up both AIX and NT using Samba
...ar cvf /dev/rmt{x}.4 myfiles_from_AIX smbclient ... -Tcga /dev/rmt{x} #after the NT backup, the tape must be rewinded so rmt{x}.4 must not be used When you restore the AIX files, since they are in the first part of tape, use /dev/rmt{x} When you restore the NT files: 1 - tctl /dev/rmt{x}.4 fsf 1 # to skip to the second part of the backup. No rewind after closing the device 2 - tar xvf /dev/rmt{x} # need to rewind after read WARNING: You must verify that .4 is the correct suffix to not rewind the tape. My last experience on AIX was in '9...
2008 Jun 12
0
[Foxgui-users] Segmentation fault on exit
...lication > return application.run(); > > Viewer is a gl window with a menubar across the top; one of the entries > in the pull-down menu is an exit button, implemented thus; > > > filemenuQuit_ = new FXMenuCommand > ( > filemenu_, > "&Quit\tCtl-Q", > NULL, > getApp(), > FXApp::ID_QUIT > ); > > which I believe is the standard way of exiting a Fox application window. > viewer also contains a destructor function ~viewer which cleans up all > the memory allocated to the viewer object. It end...
2008 Apr 14
3
Copy-paste between FXTable and FXTextfield
...350) # Menu bar stretched along the top of the main window menubar = FXMenuBar.new(self, LAYOUT_SIDE_TOP|LAYOUT_FILL_X) # File menu filemenu = FXMenuPane.new(self) FXMenuTitle.new(menubar, "&File", nil, filemenu) FXMenuCommand.new(filemenu, "&Quit\tCtl-Q\tQuit the application", nil, app, FXApp::ID_QUIT) # Field field = FXTextField.new(self, 15) # Table f = FXHorizontalFrame.new(self, LAYOUT_FILL_X|LAYOUT_FILL_Y) table = FXTable.new(f, nil, 0, TABLE_COL_SIZABLE|LAYOUT_FILL_X|LAYOUT_FILL_Y) table....