[Tcladdressbook-commits] Help TclAB_QuickStart.aida,1.9,1.10
Status: Alpha
Brought to you by:
bdesgraupes
|
From: Bernard D. <bde...@us...> - 2004-08-01 06:31:36
|
Update of /cvsroot/tcladdressbook/Help In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29192/Help Modified Files: TclAB_QuickStart.aida Log Message: [add] and [remove] take multiple args Index: TclAB_QuickStart.aida =================================================================== RCS file: /cvsroot/tcladdressbook/Help/TclAB_QuickStart.aida,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- TclAB_QuickStart.aida 30 Jul 2004 21:30:01 -0000 1.9 +++ TclAB_QuickStart.aida 1 Aug 2004 06:31:28 -0000 1.10 @@ -6,7 +6,7 @@ :Author: Bernard Desgraupes <bde...@ea...> :Homepage: <http://webperso.easyconnect.fr/bdesgraupes/> :Created: 2003-12-14 18:26:47 -:Modified: 2004-07-30 23:25:47 +:Modified: 2004-08-01 08:09:16 :Keywords: Address book, data base @@ -153,7 +153,11 @@ ((| set groupid [lindex [addressbook groups -ids] 0] set theid [lindex [addressbook persons -ids] 0] - addressbook add $theid $groupid + addressbook add $groupid $theid +|)) +One can add several items at a time with this command: +((| + addressbook add $groupid $theid1 $theid2 $theid3 |)) @@ -163,7 +167,11 @@ ((| set groupid [lindex [addressbook groups -ids] 0] set theid [lindex [addressbook persons -ids] 0] - addressbook remove $theid $groupid + addressbook remove $groupid $theid +|)) +One can remove several items at a time with this command: +((| + addressbook remove $groupid $theid1 $theid2 $theid3 |)) |