- 积分
- 11502
- 明经币
- 个
- 注册时间
- 2002-10-2
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
发表于 2004-10-18 05:17:00
|
显示全部楼层
你要下载DOSLIB
dos_editlist
Displays a sizeable Windows dialog box with an editable list box. Items can be added or removed from the list, and the order of the list can be changed.
Syntax
(dos_editlist title prompt list)
Parameters
title
|
A string containing the dialog box title.
|
path
|
A string containing the dialog box prompt.
|
list
|
A list of string values.
|
Returns A list of string items selected from the list if successful.
nil on cancel or on error.
Examples Command: (dos_editlist "Edit Items" "Add, remove, or edit items" '("Item1" "Item2" "Item3"))
MSITStore:C:\Documents%20and%20Settings\Ivy\桌面\doslib61.chm::/images/dos_editlist.jpg" width=347 border=0>
("Item1" "Item2" "Item3" "NewItem4")
Also See MSITStore:C:\Documents%20and%20Settings\Ivy\桌面\doslib61.chm::/Graphical_User_Interface_Functions/dos_checklist.htm" target="_blank" >dos_checklist, MSITStore:C:\Documents%20and%20Settings\Ivy\桌面\doslib61.chm::/Graphical_User_Interface_Functions/dos_proplist.htm" target="_blank" >dos_proplist |
|