FNewModule.form
上传用户:hz1717
上传日期:2014-12-23
资源大小:7560k
文件大小:1k
- # Gambas Form File 1.0
- { FNewModule Form
- Move(304,161,512,465)
- Text = ("Add module")
- Icon = Picture["img/16/module.png"]
- Border = Window.Fixed
- { tabAdd TabStrip
- Move(8,8,496,416)
- Count = 2
- Index = 0
- Text = ("New")
- { txtFile TextBox
- Move(16,40,408,24)
- Font = Font["12"]
- Text = ("")
- }
- { chkStartup CheckBox
- Move(16,112,240,16)
- Text = ("&Startup module")
- }
- { chkInit CheckBox
- Move(16,136,240,16)
- Text = ("Static &constructor")
- }
- { chkExit CheckBox
- Move(16,160,240,16)
- Text = ("Static &destructor")
- }
- { Image1 PictureBox
- Move(440,16,48,48)
- Picture = Picture["img/32/module.png"]
- Stretch = True
- Alignment = Align.Center
- }
- { Label1 Label
- Move(8,8,176,24)
- Font = Font["Bold"]
- Text = ("Name")
- }
- { Label2 Label
- Move(8,80,176,24)
- Font = Font["Bold"]
- Text = ("Options")
- }
- Index = 1
- Text = ("Existing")
- Index = 0
- }
- { btnOK Button
- Move(320,432,88,24)
- Text = ("OK")
- Default = True
- }
- { btnCancel Button
- Move(416,432,88,24)
- Text = ("Cancel")
- Cancel = True
- }
- }