📄 label_data.dlg
字号:
/*
label data
*! VERSION 1.1.0 28mar2005
which label = built-in command: label
*/
VERSION 9.0
INCLUDE _std_medium
INCLUDE _ht150
INCLUDE header
HELP hlp1, view("help label")
RESET res1
DIALOG main, label("label data - Attach a label to data") tabtitle("Main")
BEGIN
RADIO rb_attach _lft _top _iwd ., /*
*/ label("Attach label to data: (up to 80 characters)") /*
*/ first /*
*/ clickon("gaction main.ed_lab.enable")
EDIT ed_lab _indent2 _ss _inwd ., /*
*/ label("Attach label to data")
RADIO rb_remove _lft _ls _iwd ., /*
*/ label("Remove label from data") /*
*/ last /*
*/ clickon("gaction main.ed_lab.disable")
END
PROGRAM command
BEGIN
put "label data "
if main.rb_attach {
require main.ed_lab
put `"""' main.ed_lab `"""'
}
END
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -