📄 fgotoline.class
字号:
' Gambas class fileSTATIC PRIVATE $iLine AS IntegerSTATIC PUBLIC FUNCTION Run(iLine AS Integer) AS Integer DIM hForm AS FGotoLine $iLine = iLine hForm = NEW FGotoLine IF hForm.ShowModal() THEN RETURN $iLine ENDPUBLIC SUB _new() txtLine.Text = CStr($iLine) txtLine.Selection txtLine.SetFocus ENDPUBLIC SUB btnOK_Click() TRY $iLine = Val(txtLine.Text) IF Error THEN RETURN ME.Close(TRUE)ENDPUBLIC SUB btnCancel_Click() ME.CloseEND
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -