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 (72 lines) | stat: -rw-r--r-- 1,582 bytes parent folder | download | duplicates (4)
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
65
66
67
68
69
70
71
72
# Gambas Form File 3.0

{ Form Form
  MoveScaled(0,0,66,32)
  Text = ("Report example")
  Resizable = False
  Arrangement = Arrange.Vertical
  Spacing = True
  Margin = True
  { HBox1 HBox
    MoveScaled(1,1,52,4)
    Spacing = True
    { Label1 Label
      MoveScaled(0,0,26,4)
      AutoResize = True
      Text = ("Choose database server")
    }
    { cmbServer ComboBox
      MoveScaled(26,0,24,4)
      Expand = True
      ReadOnly = True
      List = [("MySQL"), ("PostgreSQL"), ("SQLite")]
    }
  }
  { Separator1 Separator
    MoveScaled(15,6,7,1)
  }
  { HBox2 HBox
    MoveScaled(1,8,63,15)
    Expand = True
    Spacing = True
    { VBox1 VBox
      MoveScaled(1,1,32,14)
      AutoResize = True
      { btnReport Button
        MoveScaled(0,0,31,7)
        Expand = True
        AutoResize = True
        Text = ("See Report Example 1") & "..."
        Picture = Picture["icon:/32/print"]
      }
      { btnReport2 Button
        MoveScaled(0,6,31,7)
        Visible = False
        Expand = True
        AutoResize = True
        Text = ("See Report Example 2") & "..."
        Picture = Picture["icon:/32/print"]
      }
    }
  }
  { HBox3 HBox
    MoveScaled(1,25,64,6)
    Spacing = True
    { Panel1 Panel
      MoveScaled(4,1,20,3)
      Expand = True
    }
    { btnAbout Button
      MoveScaled(31,0,15,6)
      AutoResize = True
      Text = ("About") & "..."
      Picture = Picture["icon:/32/info"]
    }
    { btnClose Button
      MoveScaled(47,0,15,6)
      AutoResize = True
      Text = ("Close")
      Picture = Picture["icon:/32/close"]
    }
  }
}