⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fstart.class

📁 Gambas is a graphical development environment based on a Basic interpreter, like Visual Basic. It us
💻 CLASS
字号:
' Gambas class filePUBLIC myThing AS CThingSTATIC PUBLIC SUB Main()  DIM myForm AS Form  myForm = NEW FStart  myForm.ShowENDPUBLIC SUB btnCreateThing_Click()  myThing = NEW CThing  myThing.Name = "Dummy-Thing"  mything.X = 11  mything.Y = 22  mything.ID = 33   txtCheckResult.Visible=TRUEENDPUBLIC SUB btnCheckThing_Click()  txtCheckResult.Text = myThing.Name & ", X= " & myThing.X & ", Y= " & myThing.Y & ", ID= " & myThing.IDCATCH  Message(Error.Text)ENDPUBLIC SUB btnDestroy_Click()  myThing = NULL  txtCheckResult.Visible=FALSEEND

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -