📄 fbrowser.class
字号:
' Gambas class filePUBLIC SUB Form_Resize() txtLink.Move(0, 0, ME.ClientW) webTest.Move(0, txtLink.H, ME.ClientW, ME.ClientH - txtLink.H - lblLink.H) lblLink.Move(0, webTest.Y + webTest.H, ME.CLientW)ENDPUBLIC SUB webTest_Change() txtLink.Text = LAST.Path 'DEC Application.BusyENDPUBLIC SUB webTest_Click() txtLink.Text = " " & LAST.Link 'INC Application.BusyENDPUBLIC SUB webTest_Link() lblLink.Text = LAST.LinkENDPUBLIC SUB txtLink_Activate() DIM sPath AS String sPath = txtLink.Text IF NOT (sPath LIKE "http://*") THEN sPath = "http://" & sPath webTest.Path = Trim(sPath)ENDPUBLIC SUB Form_Open() txtLink.Text = "http://gambas.sourceforge.net" txtLink_ActivateEND
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -