File: FMain.form

package info (click to toggle)
gambas3 3.20.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 77,208 kB
  • sloc: ansic: 197,232; cpp: 124,273; sh: 18,999; javascript: 7,761; sql: 5,399; makefile: 2,358; perl: 1,397; xml: 490; python: 335
file content (64 lines) | stat: -rw-r--r-- 1,345 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Gambas Form File 3.0

{ Form Form
  MoveScaled(0,0,78,76)
  Text = ("NeHe Tutorials")
  Icon = Picture["icon.png"]
  Arrangement = Arrange.Vertical
  Spacing = True
  Margin = True
  { HBox1 HBox
    MoveScaled(1,1,64,20)
    { Panel1 Panel
      MoveScaled(3,4,1,7)
      Expand = True
    }
    { Panel3 Panel
      MoveScaled(12,1,42,18)
      { PictureBox1 PictureBox
        MoveScaled(6,0,37,18)
        Picture = Picture["nehe.png"]
      }
      { PictureBox2 PictureBox
        MoveScaled(0,2,17,20)
        Picture = Picture["icon:/128/gambas"]
      }
    }
    { Panel2 Panel
      MoveScaled(62,6,1,7)
      Expand = True
    }
  }
  { Label1 TextLabel
    MoveScaled(1,21,76,4)
    Text = ("Choose a tutorial and click on the <b>Run</b> button!")
    Alignment = Align.Center
  }
  { cmbTutorial ComboBox
    MoveScaled(1,25,76,4)
    ReadOnly = True
  }
  { txtCode TextArea
    MoveScaled(1,29,76,22)
    Font = Font["Monospace,-1"]
    Expand = True
    ReadOnly = True
  }
  { HBox2 HBox
    MoveScaled(1,67,75,7)
    { btnRun Button
      MoveScaled(0,0,19,7)
      Text = ("Run")
      Picture = Picture["icon:/32/play"]
    }
    { Panel4 Panel
      MoveScaled(31,2,5,4)
      Expand = True
    }
    { btnQuit Button
      MoveScaled(57,0,19,7)
      Text = ("Exit")
      Picture = Picture["icon:/32/quit"]
    }
  }
}